mirror of
https://github.com/processone/ejabberd.git
synced 2024-10-31 15:21:38 +01:00
97 lines
3.2 KiB
Erlang
97 lines
3.2 KiB
Erlang
%%%----------------------------------------------------------------------
|
|
%%% File : ejabberd_regexp.erl
|
|
%%% Author : Badlop
|
|
%%% Purpose : Frontend to Re and Regexp OTP modules
|
|
%%% Created : 8 Dec 2011 by Badlop
|
|
%%%
|
|
%%%
|
|
%%% ejabberd, Copyright (C) 2002-2013 ProcessOne
|
|
%%%
|
|
%%% This program is free software; you can redistribute it and/or
|
|
%%% modify it under the terms of the GNU General Public License as
|
|
%%% published by the Free Software Foundation; either version 2 of the
|
|
%%% License, or (at your option) any later version.
|
|
%%%
|
|
%%% This program is distributed in the hope that it will be useful,
|
|
%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
%%% General Public License for more details.
|
|
%%%
|
|
%%% You should have received a copy of the GNU General Public License
|
|
%%% along with this program; if not, write to the Free Software
|
|
%%% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
%%% 02111-1307 USA
|
|
%%%
|
|
%%%----------------------------------------------------------------------
|
|
|
|
-module(ejabberd_regexp).
|
|
|
|
-compile([export_all]).
|
|
|
|
exec({ReM, ReF, ReA}, {RgM, RgF, RgA}) ->
|
|
try apply(ReM, ReF, ReA) catch
|
|
error:undef -> apply(RgM, RgF, RgA);
|
|
A:B -> {error, {A, B}}
|
|
end.
|
|
|
|
-spec run(binary(), binary()) -> match | nomatch | {error, any()}.
|
|
|
|
run(String, Regexp) ->
|
|
case exec({re, run, [String, Regexp, [{capture, none}]]},
|
|
{regexp, first_match, [binary_to_list(String),
|
|
binary_to_list(Regexp)]})
|
|
of
|
|
{match, _, _} -> match;
|
|
{match, _} -> match;
|
|
match -> match;
|
|
nomatch -> nomatch;
|
|
{error, Error} -> {error, Error}
|
|
end.
|
|
|
|
-spec split(binary(), binary()) -> [binary()].
|
|
|
|
split(String, Regexp) ->
|
|
case exec({re, split, [String, Regexp, [{return, binary}]]},
|
|
{regexp, split, [binary_to_list(String),
|
|
binary_to_list(Regexp)]})
|
|
of
|
|
{ok, FieldList} -> [iolist_to_binary(F) || F <- FieldList];
|
|
{error, Error} -> throw(Error);
|
|
A -> A
|
|
end.
|
|
|
|
-spec replace(binary(), binary(), binary()) -> binary().
|
|
|
|
replace(String, Regexp, New) ->
|
|
case exec({re, replace, [String, Regexp, New, [{return, binary}]]},
|
|
{regexp, sub, [binary_to_list(String),
|
|
binary_to_list(Regexp),
|
|
binary_to_list(New)]})
|
|
of
|
|
{ok, NewString, _RepCount} -> iolist_to_binary(NewString);
|
|
{error, Error} -> throw(Error);
|
|
A -> A
|
|
end.
|
|
|
|
-spec greplace(binary(), binary(), binary()) -> binary().
|
|
|
|
greplace(String, Regexp, New) ->
|
|
case exec({re, replace, [String, Regexp, New, [global, {return, binary}]]},
|
|
{regexp, sub, [binary_to_list(String),
|
|
binary_to_list(Regexp),
|
|
binary_to_list(New)]})
|
|
of
|
|
{ok, NewString, _RepCount} -> iolist_to_binary(NewString);
|
|
{error, Error} -> throw(Error);
|
|
A -> A
|
|
end.
|
|
|
|
-spec sh_to_awk(binary()) -> binary().
|
|
|
|
sh_to_awk(ShRegExp) ->
|
|
case exec({xmerl_regexp, sh_to_awk, [binary_to_list(ShRegExp)]},
|
|
{regexp, sh_to_awk, [binary_to_list(ShRegExp)]})
|
|
of
|
|
A -> iolist_to_binary(A)
|
|
end.
|