OSDN Git Service

71fbd9c3d68db4cc904d751784b658fa1379a406
[gikonavigoeson/gikonavi.git] / MojuUtils.pas
1 unit MojuUtils;
2 //******************************************************************************
3 //      \95\8e\9a\97ñ\92u\8a·\8aÖ\90\94 CustomStringReplace
4 //  \8eg\82¢\95û\82Í\81A
5 //\81@CustomStringReplace(
6 //\81@    \8c³\82Ì\95\8e\9a\97ñ\81iString\82à\82µ\82­\82ÍTStringList),
7 //\81@    \8c\9f\8dõ\95\8e\9a\97ñ\81iString),
8 //              \92u\8a·\95\8e\9a\97ñ\81iString),
9 //      \91å\95\8e\9a\8f¬\95\8e\9a\81iBoolean)True:\8bæ\95Ê\82µ\82È\82¢\81@false or \8fÈ\97ª:\8bæ\95Ê\82·\82é
10 //
11 // Delphi-ML\82Ì\8bL\8e\9669334\82É\8dÚ\82Á\82Ä\82¢\82½\83R\81[\83h\82ð\8aÛ\83p\83N\83\8a\82µ\82Ü\82µ\82½\81B
12 //******************************************************************************
13
14 interface
15
16 uses
17         Windows, Classes, SysUtils;
18
19         function StrPosEx(StrStart, StrEnd, SubstrStart, SubstrEnd: PChar): PChar;
20         function AnsiStrPosEx(StrStart, StrEnd, SubstrStart, SubstrEnd: PChar): PChar;
21         function ReplaceString(const S: String; const OldPattern: String; const NewPattern: string): String;
22         function IgnoCaseReplaceString(const S: String; const OldPattern:String; const NewPattern: string): String;
23
24         function CustomStringReplace(const S: String; const OldPattern: String; const  NewPattern: string; IgnoreCase : Boolean = False): String; overload;
25         procedure CustomStringReplace(var S : TStringList;const OldPattern: String;const  NewPattern: string; IgnoreCase : Boolean = False); overload;
26
27         function ZenToHan(const s: string): string;
28         function VaguePos(const Substr: String; const S: string): Integer;
29
30         function ReplaseNoValidateChar( inVal : String): String;
31         function IsNoValidID( inID :String): Boolean;
32         //<font>\83^\83O\82ð\91S\82Ä\8dí\8f\9c\82·\82é
33         function DeleteFontTag( inSource : string) : string;
34         function RemoveToken(var s: string;const delimiter: string): string;
35         // \96³\8aQ\89»(& -> &amp; " -> &auot; \82É\95Ï\8a·\82·\82é)
36         function Sanitize(const s: String): String;
37         // \96³\8aQ\89»\89ð\8f\9c(&amp; -> & &auot; -> " \82É\95Ï\8a·\82·\82é)
38         function UnSanitize(const s: String): String;
39
40 implementation
41 // \83|\83C\83\93\83^\81[\81\95\83A\83Z\83\93\83u\83\89\82É\82æ\82é\8d\82\91¬\83|\83X
42 function StrPosEx(StrStart, StrEnd, SubstrStart, SubstrEnd: PChar): PChar;
43 asm
44                 PUSH    EBX
45                 PUSH    ESI
46                 PUSH    EDI
47
48                 MOV    ESI,ECX        { Point ESI to substr                  }
49                 MOV    EDI,EAX        { Point EDI to s                        }
50
51                 MOV    ECX,EDX        { ECX = search length                  }
52         SUB    ECX,EAX
53
54         MOV    EDX,SubstrEnd
55         SUB    EDX,ESI
56
57         DEC    EDX            { EDX = Length(substr) - 1              }
58         JS      @@fail        { < 0 ? return 0                        }
59         MOV    AL,[ESI]      { AL = first char of substr            }
60         INC    ESI            { Point ESI to 2'nd char of substr      }
61
62         SUB    ECX,EDX        { #positions in s to look at            }
63                               { = Length(s) - Length(substr) + 1      }
64         JLE    @@fail
65 @@loop:
66         REPNE  SCASB
67         JNE    @@fail
68         MOV    EBX,ECX        { save outer loop counter              }
69         PUSH    ESI            { save outer loop substr pointer        }
70         PUSH    EDI            { save outer loop s pointer            }
71
72         MOV    ECX,EDX
73         REPE    CMPSB
74         POP    EDI            { restore outer loop s pointer          }
75         POP    ESI            { restore outer loop substr pointer    }
76         JE      @@found
77         MOV    ECX,EBX        { restore outer loop counter            }
78         JMP    @@loop
79
80 @@fail:
81         XOR    EAX,EAX
82         JMP    @@exit
83
84 @@found:
85         MOV    EAX,EDI        { EDI points of char after match        }
86         DEC    EAX
87 @@exit:
88         POP    EDI
89         POP    ESI
90         POP    EBX
91 end;
92 //\81@AnsiPos\82Ì\8d\82\91¬\94Å
93 function AnsiStrPosEx(StrStart, StrEnd, SubstrStart, SubstrEnd: PChar): PChar;
94 var
95     L2: Cardinal;
96     ByteType : TMbcsByteType;
97 begin
98     Result := nil;
99     if (StrStart = nil) or (StrStart^ = #0) or
100         (SubstrStart = nil) or (SubstrStart^ = #0) then Exit;
101
102     L2 := SubstrEnd - SubstrStart;
103     Result := StrPosEx(StrStart, StrEnd, SubstrStart, SubstrEnd);
104
105     while (Result <> nil) and (StrEnd - Result >= L2) do begin
106         ByteType := StrByteType(StrStart, Integer(Result-StrStart));
107         if (ByteType <> mbTrailByte) and
108                 (CompareString(LOCALE_USER_DEFAULT, SORT_STRINGSORT, Result, L2, SubstrStart, L2) = 2)
109         then Exit;
110         if (ByteType = mbLeadByte) then Inc(Result);
111         Inc(Result);
112         Result := StrPosEx(Result, StrEnd, SubStrStart, SubStrEnd);
113     end;
114     Result := nil;
115 end;
116
117 //\8d\82\91¬\95\8e\9a\97ñ\92u\8a·\8aÖ\90\94\81i\91å\95\8e\9a\8f¬\95\8e\9a\82Ì\88á\82¢\82ð\96³\8e\8b\82µ\82È\82¢\81j
118 function ReplaceString(const S: String; const OldPattern: String; const NewPattern: string): String;
119 var
120         ReplaceCount: Integer;
121         DestIndex: Integer;
122         i, l: Integer;
123         p, e, ps, pe: PChar;
124         Count: Integer;
125         olen: Integer;
126 begin
127         Result := S;
128         olen := Length(OldPattern);
129         if olen = 0 then Exit;
130         p := PChar(S);
131         e := p + Length(S);
132         ps := PChar(OldPattern);
133         pe := ps + olen;
134         ReplaceCount := 0;
135         while p < e do begin
136                 p := AnsiStrPosEx(p, e, ps, pe);
137                 if p = nil then Break;
138                 Inc(ReplaceCount);
139                 Inc(p, olen);
140         end;
141         if ReplaceCount = 0 then Exit;
142         SetString(Result, nil, Length(S) +
143         (Length(NewPattern) - olen) * ReplaceCount);
144         p := PChar(S);
145         DestIndex := 1;
146         l := Length( NewPattern );
147         for i := 0 to ReplaceCount - 1 do begin
148                 Count := AnsiStrPosEx(p, e, ps, pe) - p;
149                 Move(p^, Result[DestIndex], Count);
150                 Inc(p, Count);//p := pp;
151                 Inc(DestIndex, Count);
152                 Move(NewPattern[1], Result[DestIndex], l);
153                 Inc(p, olen);
154                 Inc(DestIndex, l);
155         end;
156         Move(p^, Result[DestIndex], e - p);
157 end;
158 //\8d\82\91¬\95\8e\9a\97ñ\92u\8a·\8aÖ\90\94\81i\91å\95\8e\9a\8f¬\95\8e\9a\82Ì\88á\82¢\82ð\96³\8e\8b\82·\82é\81j
159 function IgnoCaseReplaceString(const S: String;const OldPattern:String;const NewPattern: string): String;
160 var
161         ReplaceCount: Integer;
162         DestIndex: Integer;
163         i, l: Integer;
164         p, e{, ps, pe}: PChar;
165         p2, e2, ps2, pe2: PChar;
166         Count: Integer;
167         bufferS : String;
168         bufferOldPattern : String;
169 begin
170         Result := S;
171         bufferS := AnsiLowerCase(S);
172         bufferOldPattern := AnsiLowerCase(OldPattern);
173
174         if OldPattern = '' then Exit;
175         p       := PChar(S);
176         p2      := PChar(bufferS);
177         e       := p + Length(S);
178         e2      := p2 + Length(bufferS);
179         //ps    := PChar(OldPattern);
180         ps2     := PChar(bufferOldPattern);
181         //pe    := ps + Length(OldPattern);
182         pe2     := ps2 + Length(bufferOldPattern);
183
184         ReplaceCount := 0;
185         while p2 < e2 do begin
186                 p2 := AnsiStrPosEx(p2, e2, ps2, pe2);
187                 if p2 = nil then Break;
188                 Inc(ReplaceCount);
189                 Inc(p2, Length(bufferOldPattern));
190         end;
191         if ReplaceCount = 0 then Exit;
192         SetString(Result, nil, Length(bufferS) +
193         (Length(NewPattern) - Length(bufferOldPattern)) * ReplaceCount);
194         p2 := PChar(bufferS);
195         DestIndex := 1;
196         l := Length( NewPattern );
197         for i := 0 to ReplaceCount - 1 do begin
198                 Count := AnsiStrPosEx(p2, e2, ps2, pe2) - p2;
199                 Move(p^, Result[DestIndex], Count);
200                 Inc(p, Count);//p := pp;
201                 Inc(p2, Count);//p := pp;
202                 Inc(DestIndex, Count);
203                 Move(NewPattern[1], Result[DestIndex], l);
204                 Inc(p, Length(OldPattern));
205                 Inc(p2, Length(OldPattern));
206                 Inc(DestIndex, l);
207         end;
208         Move(p^, Result[DestIndex], e - p);
209 end;
210 //\8d\82\91¬\95\8e\9a\97ñ\92u\8a·\8aÖ\90\94\81i\94Ä\97p\94Å\82P\81j
211 function CustomStringReplace(
212         const S :String;
213         const OldPattern: String;
214         const  NewPattern: string;
215         IgnoreCase : Boolean
216 ): String;
217 begin
218         if not IgnoreCase then begin
219                 Result := ReplaceString(S,OldPattern,NewPattern);
220         end else begin
221                 Result := IgnoCaseReplaceString(S,OldPattern,NewPattern);
222         end;
223 end;
224
225 //\8d\82\91¬\95\8e\9a\97ñ\92u\8a·\8aÖ\90\94\81i\94Ä\97p\94Å\82Q\81j
226 procedure CustomStringReplace(
227         var S : TStringList;
228         const OldPattern: String;
229         const  NewPattern: string;
230         IgnoreCase : Boolean
231 );
232 var
233         i : Integer;
234 begin
235         S.BeginUpdate;
236         if not IgnoreCase then begin
237                 for i := 0 to S.Count - 1 do begin
238                         S.Strings[i] := ReplaceString(S.Strings[i], OldPattern,NewPattern);
239                 end;
240         end else begin
241                 for i := 0 to S.Count - 1 do begin
242                         S.Strings[i] := IgnoCaseReplaceString(S.Strings[i], OldPattern,NewPattern);
243                 end;
244         end;
245         S.EndUpdate;
246 end;
247
248 (*************************************************************************
249  * \91S\8ap\81¨\94¼\8ap
250  * from HotZonu
251  *************************************************************************)
252 function ZenToHan(const s: string): string;
253 var
254         ChrLen  : Integer;
255 begin
256         SetLength(Result, Length(s));
257         ChrLen := Windows.LCMapString(
258                  GetUserDefaultLCID(),
259 //               LCMAP_HALFWIDTH,
260                  LCMAP_HALFWIDTH or LCMAP_KATAKANA or LCMAP_LOWERCASE,
261                  PChar(s),
262                  Length(s),
263                  PChar(Result),
264                  Length(Result)
265                  );
266         SetLength(Result, ChrLen);
267 end;
268
269 (*************************************************************************
270  * \91S\8ap\94¼\8ap\82Ð\82ç\82ª\82È\82©\82½\82©\82È\82ð\8bæ\95Ê\82µ\82È\82¢\90¦\82¢Pos
271  *************************************************************************)
272 function VaguePos(const Substr:String; const S: string): Integer;
273 begin
274         Result := AnsiPos(ZenToHan(Substr), ZenToHan(S));
275 end;
276 (*************************************************************************
277  * FAT/NTFS\82Ì\83t\83@\83C\83\8b\96¼\82É\8b\96\82³\82ê\82È\82¢\95\8e\9a\81i\,/,:,.,;,*,>,<,|\81j\82ð\91S\8ap\82É\92u\8a·\82·\82é
278  *************************************************************************)
279 function ReplaseNoValidateChar( inVal : String): String;
280 begin
281         Result := CustomStringReplace(inVal, '\', '\81\8f');
282         Result := CustomStringReplace(Result, '/', '\81^');
283         Result := CustomStringReplace(Result, ':', '\81F');
284         Result := CustomStringReplace(Result, '.', '\81D');
285     Result := CustomStringReplace(Result, ';', '\81G');
286         Result := CustomStringReplace(Result, '*', '\81\96');
287         Result := CustomStringReplace(Result, '>', '\81\84');
288         Result := CustomStringReplace(Result, '<', '\81\83');
289         Result := CustomStringReplace(Result, '|', '\81b');
290 end;
291 (*************************************************************************
292  * \96³\8cø\82ÈID\82©\82Ì\83`\83F\83b\83N\81i\96³\8cø\97á\81FID:??? , ID:???0)
293  *************************************************************************)
294 function IsNoValidID( inID :String): Boolean;
295 begin
296         inID := Trim(inID);
297         if inID = '' then Result := True
298         else begin
299                 inID := Copy(inID, AnsiPos(':', inID) + 1, Length(inID) );
300                 inID := CustomStringReplace(inID, '?', '');
301                 if (inID = '') or (inID = '0') then Result := True
302                 else Result := False;
303         end;
304 end;
305
306 // *************************************************************************
307 // HTML\92\86\82Ì<font>\83^\83O\82ð\8dí\8f\9c\82·\82é
308 // *************************************************************************
309 function        DeleteFontTag(
310          inSource : string    //\83^\83O\82ð\8dí\8f\9c\82·\82é\95\8e\9a\97ñ
311 ) : string;             //\83^\83O\8dí\8f\9c\8cê\82Ì\95\8e\9a\97ñ
312 var
313         pos : Integer;
314 begin
315         Result := '';
316
317         //</font>\82ð\8dí\8f\9c
318         inSource := CustomStringReplace( inSource, '</font>', '', True);
319         //<font \82ð\91S\82Ä\8f¬\95\8e\9a\82É\95Ï\8a·\82·\82é
320         inSource := CustomStringReplace( inSource, '<font', '<font', True);
321         //<font \81\82ð\8dí\8f\9c\82·\82é
322         pos := AnsiPos('<font', inSource);
323         while (pos > 0) do begin
324                 Result := Result + Copy(inSource, 1, pos - 1);
325                 Delete(inSource, 1, pos);
326                 //\83^\83O\82ð\95Â\82\82é'>'\82Ü\82Å\82ð\8dí\8f\9c
327         pos := AnsiPos('>', inSource);
328                 Delete(inSource, 1, pos);
329                 pos := AnsiPos('<font', inSource);
330         end;
331
332         Result := Result + inSource;
333
334
335 end;
336 // *************************************************************************
337
338
339 (*************************************************************************
340  *
341  *\82Ç\82±\82©\82Ì\83T\83C\83g\82©\82ç\82Ì\83p\83N\83\8a
342  *************************************************************************)
343 function RemoveToken(var s: string;const delimiter: string): string;
344 var
345         p: Integer;
346         pos : PChar;
347         pds, pde : PChar;
348         pss, pse : PChar;
349 begin
350         pss := PChar(s);
351         pse := pss + Length(s);
352         pds := PChar(delimiter);
353         pde := pds + Length(delimiter);
354
355         pos := AnsiStrPosEx(pss, pse, pds, pde);
356         if pos <> nil then begin
357                 p := pos - pss;
358                 SetString(Result, pss, p);
359                 Delete(s, 1, p + Length(delimiter));
360         end else begin
361                 Result := s;
362                 s := '';
363         end;
364 end;
365 //! \96³\8aQ\89»(& -> &amp; " -> &auot; \82É\95Ï\8a·\82·\82é)
366 function Sanitize(const s: String): String;
367 begin
368         Result := CustomStringReplace(s, '&', '&amp;');
369         Result := CustomStringReplace(Result, '"', '&quot;');
370 end;
371 //! \96³\8aQ\89»\89ð\8f\9c(&amp; -> & &auot; -> " \82É\95Ï\8a·\82·\82é)
372 function UnSanitize(const s: String): String;
373 begin
374         Result := CustomStringReplace(s, '&quot;', '"');
375         Result := CustomStringReplace(Result, '&amp;', '&');
376 end;
377
378 end.