1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
|
/*
Variables Plugin for Miranda-IM (www.miranda-im.org)
Copyright 2003-2006 P. Boon
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
*/
#include "variables.h"
#include "parse_regexp.h"
#include <pcre.h>
static void (*pcreFree)(void *);
static pcre_extra *(*pcreStudy)(const pcre *, int, const char **);
static pcre *(*pcreCompile)(const char *, int, const char **, int *, const unsigned char *);
static int (*pcreExec)(const pcre *, const pcre_extra *, const char *, int, int, int, int *, int);
static void *(*pcreMalloc)(size_t);
static void (*pcreFreeSubstring)(const char *);
static int (*pcreGetSubstring)(const char *, int *, int, int, const char **);
/*
pattern, subject
*/
static TCHAR *parseRegExpCheck(ARGUMENTSINFO *ai) {
const char *err;
int erroffset, nmat;
pcre_extra *extra;
pcre *ppat;
char szVal[34], *arg1, *arg2;
int offsets[99];
TCHAR *res;
if (ai->argc != 3) {
return NULL;
}
ai->flags = AIF_FALSE;
arg1 = u2a(ai->targv[1]);
arg2 = u2a(ai->targv[2]);
ppat = pcreCompile(arg1, 0, &err, &erroffset, NULL);
if (ppat == NULL) {
free(arg1);
free(arg2);
return NULL;
}
extra = pcreStudy(ppat, 0, &err);
nmat = pcreExec(ppat, extra, arg2, strlen(arg2), 0, 0, offsets, 99);
free(arg1);
free(arg2);
if (nmat > 0) {
ai->flags &= ~AIF_FALSE;
_ltoa(nmat, szVal, 10);
res = a2u(szVal);
return res;
}
return _tcsdup(_T("0"));
}
/*
pattern, subject, substring no (== PCRE string no (starting at 0))
*/
static TCHAR *parseRegExpSubstr(ARGUMENTSINFO *ai) {
const char *err, *substring;
char *res, *arg1, *arg2, *arg3;
int erroffset, nmat, number;
pcre_extra *extra;
pcre *ppat;
int offsets[99];
TCHAR *tres;
if (ai->argc != 4) {
return NULL;
}
arg1 = u2a(ai->targv[1]);
arg2 = u2a(ai->targv[2]);
arg3 = u2a(ai->targv[3]);
number = atoi(arg3);
if (number < 0) {
free(arg1);
free(arg2);
free(arg3);
return NULL;
}
ai->flags = AIF_FALSE;
ppat = pcreCompile(arg1, 0, &err, &erroffset, NULL);
if (ppat == NULL) {
free(arg1);
free(arg2);
free(arg3);
return NULL;
}
extra = pcreStudy(ppat, 0, &err);
nmat = pcreExec(ppat, extra, arg2, strlen(arg2), 0, 0, offsets, 99);
if (nmat >= 0) {
ai->flags &= ~AIF_FALSE;
}
if (pcreGetSubstring(arg2, offsets, nmat, number, &substring) < 0) {
ai->flags |= AIF_FALSE;
}
else {
res = _strdup(substring);
pcreFreeSubstring(substring);
tres = a2u(res);
free(res);
free(arg1);
free(arg2);
free(arg3);
return tres;
}
free(arg1);
free(arg2);
free(arg3);
return _tcsdup(_T(""));
}
int initPcre() {
HMODULE hModule;
hModule = LoadLibraryA("pcre.dll");
if (hModule == NULL) {
char path[MAX_PATH];
char *cur;
GetModuleFileNameA(NULL, path, sizeof(path));
cur = strrchr(path, '\\');
if (cur != NULL)
strcpy(cur+1, "pcre.dll");
else
strcpy(path, "pcre.dll");
hModule = LoadLibraryA(path);
if (hModule == NULL) {
if (cur != NULL)
strcpy(cur+1, "pcre3.dll");
else
strcpy(path, "pcre3.dll");
hModule = LoadLibraryA(path);
}
}
if (hModule == NULL) {
return -1;
}
pcreMalloc = (void *(__cdecl *)(size_t))GetProcAddress(hModule, "pcre_malloc");
pcreFree = (void (__cdecl *)(void *))GetProcAddress(hModule, "pcre_free");
pcreStudy = (struct pcre_extra *(__cdecl *)(const struct real_pcre *,int ,const char ** ))GetProcAddress(hModule, "pcre_study");
pcreCompile = (struct real_pcre *(__cdecl *)(const char *,int ,const char ** ,int *,const unsigned char *))GetProcAddress(hModule, "pcre_compile");
pcreExec = (int (__cdecl *)(const struct real_pcre *,const struct pcre_extra *,const char *,int ,int ,int ,int *,int ))GetProcAddress(hModule, "pcre_exec");
pcreFreeSubstring = (void (__cdecl *)(const char *))GetProcAddress(hModule, "pcre_free_substring");
pcreGetSubstring = (int (__cdecl *)(const char *,int *,int ,int ,const char ** ))GetProcAddress(hModule, "pcre_get_substring");
return 0;
}
int registerRegExpTokens() {
if (initPcre() != 0) {
log_infoA("Variables: pcre.dll for PCRE not found");
return -1;
}
registerIntToken(_T(REGEXPCHECK), parseRegExpCheck, TRF_FUNCTION, "Regular Expressions\t(x,y)\t(ANSI input only) the number of substring matches found in y with pattern x");
registerIntToken(_T(REGEXPSUBSTR), parseRegExpSubstr, TRF_FUNCTION, "Regular Expressions\t(x,y,z)\t(ANSI input only) substring match number z found in subject y with pattern x");
return 0;
}
|