00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef _MYPERL_H
00024 #define _MYPERL_H
00025
00026 #include <string>
00027 #include <vector>
00028
00029 using namespace std;
00030
00031
00032 #include <EXTERN.h>
00033 #include <perl.h>
00034
00035 static PerlInterpreter *my_perl = NULL;
00036
00037
00038
00039
00040 bool perl_match(string text, string pattern);
00041 I32 perl_match(SV *string, const char *pattern);
00042 int perl_substitute(string& text, string pattern);
00043 I32 perl_substitute(SV **string, const char *pattern);
00044 I32 perl_matches(SV *string, const char *pattern, AV **match_list);
00045 int perl_split(string text, string pattern, vector< string >& item_list);
00046 I32 perl_split(SV *string, const char *pattern, AV **item_list);
00047
00048
00049 inline void perlInit(int argc, char **argv)
00050 {
00051 char *embedding[] = { "", "-e", "0" };
00052 my_perl = perl_alloc();
00053 perl_construct(my_perl);
00054
00055
00056 perl_parse(my_perl, NULL, 3, embedding, (char **) NULL);
00057 }
00058
00059
00060 inline void perlKill()
00061 {
00062 perl_destruct(my_perl);
00063 perl_free(my_perl);
00064 }
00065
00066
00067
00068 #endif // _MYPERL_H