File: MySQLXMLIndexGen.dpr

package info (click to toggle)
mysql-query-browser 1.1.6-1sarge0
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 36,320 kB
  • ctags: 24,680
  • sloc: pascal: 203,479; xml: 136,561; ansic: 47,502; cpp: 28,926; sh: 12,433; objc: 4,823; java: 1,849; php: 1,485; python: 1,225; sql: 1,128; makefile: 872
file content (300 lines) | stat: -rw-r--r-- 8,607 bytes parent folder | download
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
program MySQLXMLIndexGen;

{$APPTYPE CONSOLE}

uses
  SysUtils, Classes,
  RegExpr in '..\LibInterfaceMapper\RegExpr.pas',
  StrUtils;

function LoadTextFromFile(filename: string): string;
var Stream: TStream;
  Size: Integer;
  S: string;
begin
  if(FileExists(filename))then
  begin
    Stream := TFileStream.Create(FileName, fmOpenRead or fmShareDenyWrite);
    try
      Size := Stream.Size - Stream.Position;
      SetString(S, nil, Size);
      Stream.Read(Pointer(S)^, Size);
    finally
      Stream.Free;
    end;
  end
  else
  begin
    S:='';
    WriteLn('ERROR: ['+filename+'] not found.');
  end;

  LoadTextFromFile:=S;
end;

procedure CreateFunctionXMLIndex(filename: string; DestFilename: string;
  IndexFilename: string);
var Funcs, SubFuncs: TRegExpr;
  XmlIndex, FunctionGroups: TStringList;
  SourceText, SubStr, LastID, s: string;
  CurrentFunctionGroup: integer;
  LastPos: integer;
begin
  SourceText:=LoadTextFromFile(filename);

  DeleteFile(DestFilename);

  XmlIndex:=TStringList.Create;
  FunctionGroups:=TStringList.Create;
  Funcs:=TRegExpr.Create;
  SubFuncs:=TRegExpr.Create;
  try
    //Correct <a>s in HTML
    Funcs.Expression:='<DT><code>([^<]*?)</code>\s*<DD>\s*<A NAME="([\w\d]+)"></A>';
    SourceText:=Funcs.Replace(SourceText, '<A NAME="$2"><DT><code>$1</code><DD></A>', True);

    Funcs.Expression:='<A NAME="([\w\d]+)"></A>\s*<DT><code>([^<]*?)</code>\s*<DD>';
    SourceText:=Funcs.Replace(SourceText, '<A NAME="$1"><DT><code>$2</code><DD></A>', True);

    //Find Function Groups (H2 titles)
    Funcs.Expression:='<H2><.*?>[\d\.]*\s+(.*?)</A></H2>';
    if(Funcs.Exec(SourceText))then
    begin
      repeat
      begin
        //Matches
        // 0..complete match string
        // 1..H2 title (without number)

        s:=AnsiReplaceText(
          AnsiReplaceText(Funcs.Match[1], '<code>', ''),
            '</code>', '');

        FunctionGroups.Add(s+'='+
          IntToStr(Funcs.MatchPos[0]));
      end
      until not Funcs.ExecNext;
    end;

    if(FunctionGroups.Count=0)then
      Exit;

      
    //Find functions
    Funcs.Expression:='<A NAME="([\w\d]+)"><DT><code>([^<]*?)</code>\s*<DD></A>';
    SubFuncs.Expression:='<DT><code>([^<]*?)</code>\s*<DD>';

    XmlIndex.Add('<?xml version="1.0" ?>');
    XmlIndex.Add('<functionindex>');

    CurrentFunctionGroup:=0;
    XmlIndex.Add('  <functiongroup name="'+FunctionGroups.Names[CurrentFunctionGroup]+'">');

    LastPos:=0;

    if(Funcs.Exec(SourceText))then
    begin
      repeat
      begin
        //Matches
        // 0..complete match string
        // 1..id
        // 2..function+params
        // 3..function parameter

        //Search for Funcs with same ID
        if(LastPos>0)then
        begin
          SubStr:=Copy(SourceText, LastPos,
            Funcs.MatchPos[0]-LastPos);

          if(SubFuncs.Exec(SubStr))then
          repeat
          begin
            //Matches
            // 0..complete match string
            // 2..function+params
            // 3..function parameter

            //Check if still in FunctionGroups
            if(CurrentFunctionGroup+1<FunctionGroups.Count)then
            begin
              if(LastPos+SubFuncs.MatchPos[0]>StrToInt(FunctionGroups.ValueFromIndex[CurrentFunctionGroup+1]))then
              begin
                if(CurrentFunctionGroup+1<FunctionGroups.Count)then
                  inc(CurrentFunctionGroup);

                if(CurrentFunctionGroup<FunctionGroups.Count)then
                begin
                  XmlIndex.Add('  </functiongroup>');
                  XmlIndex.Add('  <functiongroup name="'+FunctionGroups.Names[CurrentFunctionGroup]+
                    '">');
                end;
              end;
            end;

            s:=AnsiReplaceText(
              AnsiReplaceText(
                AnsiReplaceText(SubFuncs.Match[1], '<code>', ''),
                  '"', '&#34;'),
                '</code>', '');

            XmlIndex.Add('    <function caption="'+s+'" '+
              'id="'+LastID+'" />');
          end
          until not SubFuncs.ExecNext;
        end;

        //Check if still in FunctionGroups
        if(CurrentFunctionGroup+1<FunctionGroups.Count)then
        begin
          if(Funcs.MatchPos[0]>StrToInt(FunctionGroups.ValueFromIndex[CurrentFunctionGroup+1]))then
          begin
            if(CurrentFunctionGroup+1<FunctionGroups.Count)then
              inc(CurrentFunctionGroup);

            if(CurrentFunctionGroup<FunctionGroups.Count)then
            begin
              XmlIndex.Add('  </functiongroup>');
              XmlIndex.Add('  <functiongroup name="'+FunctionGroups.Names[CurrentFunctionGroup]+
                '">');
            end;
          end;
        end;

        s:=AnsiReplaceText(
          AnsiReplaceText(
            AnsiReplaceText(Funcs.Match[2], '<code>', ''),
              '"', '&#34;'),
            '</code>', '');

        XmlIndex.Add('    <function caption="'+s+'" '+
          'id="'+Funcs.Match[1]+'" />');

        LastPos:=Funcs.MatchPos[0]+Funcs.MatchLen[0];
        LastID:=Funcs.Match[1];
      end
      until not Funcs.ExecNext;
    end;

    XmlIndex.Add('  </functiongroup>');
    XmlIndex.Add('</functionindex>');

    XmlIndex.SaveToFile(IndexFilename);

    //Reformat HTML
    Funcs.Expression:='<A NAME="([\w\d]+)"><DT><code>([^<]*?)</code><DD></A>';
    SourceText:=Funcs.Replace(SourceText, '<br><br><br><A NAME="$1">'+
      '<font style="font-size: 4px"><br></font>'+#13#10+
      '<DT>'+#13#10+
      '<table border="0" cellspacing="0" cellpadding="3" width="100%" bgcolor="#99CCFF" bordercolor="#999999" style="border-color:#999999; border-style:solid; border-width:1;">'+#13#10+
      ' <tr>'+#13#10+
      '   <td><i>MySQL Inline-Help Reference - SQL Functions</i></td>'+
      ' </tr>'+#13#10+
      ' <tr>'+#13#10+
      '   <td><b><code>$2</code></b></td>'+#13#10+
      ' </tr>'+#13#10+
      '</table>'+#13#10+
      '<br>'+#13#10+
      '<code><b>$2</b></code><DD></A>', True);

    Funcs.Expression:='<DT><code>([^<]*?)</code>\s*<DD>';
    SourceText:=Funcs.Replace(SourceText, '<DT><code><b>$1</b></code><DD>', True);

    //Remove links
    Funcs.Expression:='(?img)<a href="([^"]*?)">([^<]*?)</a>';
    SourceText:=Funcs.Replace(SourceText, '$2', True);

    XmlIndex.Text:=SourceText;
    XmlIndex.SaveToFile(DestFilename);

  finally
    Funcs.Free;
    SubFuncs.Free;
    FunctionGroups.Free;
    XmlIndex.Free;
  end;
end;

procedure DisplayUsage;
begin
  WriteLn('mysqlxmlindexgen Ver 1.0.0.0, for Win2k/XP, by Michael Zinner');
  WriteLn('This software comes with ABSOLUTELY NO WARRANTY. This is free software,');
  WriteLn('and you are welcome to modify and redistribute it under the GPL license');
  WriteLn('');
  WriteLn('Creating XML index files:');
  WriteLn('Usage: mysqlxmlindexgen -s[source file] -f -d[dest file] -i[Index file]');
  WriteLn('       -f generates a function XML index file, -d specifies the');
  WriteLn('       new formated HTML file and -i the XML index file');
end;

procedure ParseParams;
var somethingToDo,
  DoFunctionXMLIndex: Boolean;
  SourceFilename,
  DestFilename,
  IndexFilename: string;
  i: integer;
begin
  somethingToDo:=False;
  DoFunctionXMLIndex:=False;
  SourceFilename:='';
  DestFilename:='';
  IndexFilename:='';

  //Check all parameters
  for i:=1 to ParamCount do
  begin
    //-s Source file
    if(Copy(ParamStr(i), 1, 2)='-s')then
    begin
      SourceFilename:=Copy(ParamStr(i), 3, Length(ParamStr(i))-1);

      if(Not(FileExists(SourceFilename)))then
      begin
        WriteLn('ERROR: Source file ['+SourceFilename+'] cannot be found.');

        SourceFilename:='';

        break;
      end;
    end;

    //-d Destination file
    if(Copy(ParamStr(i), 1, 2)='-d')then
      DestFilename:=Copy(ParamStr(i), 3, Length(ParamStr(i))-1);

    //-i Index file
    if(Copy(ParamStr(i), 1, 2)='-i')then
      IndexFilename:=Copy(ParamStr(i), 3, Length(ParamStr(i))-1);

    //-f Do function XML Index
    if(Copy(ParamStr(i), 1, 2)='-f')then
    begin
      DoFunctionXMLIndex:=True;
    end;
  end;

  if(DoFunctionXMLIndex)and(SourceFilename<>'')then
  begin
    if(DestFilename='')then
      DestFilename:=ChangeFileExt(SourceFilename, '_gui.html');

    if(IndexFilename='')then
      IndexFilename:=ChangeFileExt(SourceFilename, '.xml');

    CreateFunctionXMLIndex(SourceFilename, DestFilename, IndexFilename);
  end;

  if(Not(somethingToDo))then
    DisplayUsage;
end;

begin
  //If params are specified
  if(ParamCount>0)and(ParamStr(1)<>'--help')then
    ParseParams
  else
    //else write usage
    DisplayUsage;
end.