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 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
|
{-------------------------------------------------------------------------------
The contents of this file may be used under the terms of the
GNU General Public License Version 2 or later (the "GPL")
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
the specific language governing rights and limitations under the License.
The Original Code is: SynHighlighterPo.pp, released 2011-12-17.
Author: Bart Broersma
All Rights Reserved.
Contributors to the SynEdit and mwEdit projects are listed in the
Contributors.txt file.
$Id: SynHighlighterPo.pp,v 0.0.1 bbroersma Exp $
Known Issues:
-------------------------------------------------------------------------------}
{
@abstract(Provides a po-files highlighter for SynEdit)
@author(Bart Broersma)
@created(2011-12-17)
@lastmod(2011-12-18)
The SynHighlighterPo unit provides SynEdit with an po-files highlighter.
}
unit SynHighlighterPo;
{$I SynEdit.inc}
interface
uses
Classes, SysUtils,
Graphics,
SynEditTypes, SynEditHighlighter, SynEditStrConst;
type
TtkTokenKind = (tkComment, tkText, tkKey, tkNull, tkSpace, tkString,
tkIdentifier, tkPrevValue, tkFlags, tkUnknown);
TProcTableProc = procedure of object;
type
{ TSynPoSyn }
TSynPoSyn = class(TSynCustomHighlighter)
private
fLine: PChar;
fLineNumber: Integer;
fProcTable: array[#0..#255] of TProcTableProc;
Run: LongInt;
fTokenPos: Integer;
FTokenID: TtkTokenKind;
fCommentAttri: TSynHighlighterAttributes;
fTextAttri: TSynHighlighterAttributes;
fKeyAttri: TSynHighlighterAttributes;
fSpaceAttri: TSynHighlighterAttributes;
fStringAttri: TSynHighlighterAttributes;
fIdentAttri: TSynHighlighterAttributes;
fPrevAttri: TSynHighlighterAttributes;
fFlagAttri: TSynHighlighterAttributes;
procedure IdentProc;
procedure KeyProc;
procedure CRProc;
procedure TextProc;
procedure LFProc;
procedure NullProc;
procedure HashProc;
procedure SpaceProc;
procedure StringProc;
procedure MakeMethodTables;
protected
{General Stuff}
function GetIdentChars: TSynIdentChars; override;
function GetSampleSource: String; override;
public
class function GetLanguageName: string; override;
function IsKeyword(const AKeyword: string): boolean; override;
public
constructor Create(AOwner: TComponent); override;
function GetDefaultAttribute(Index: integer): TSynHighlighterAttributes;
override;
function GetEol: Boolean; override;
function GetTokenID: TtkTokenKind;
procedure SetLine(const NewValue: String; LineNumber:Integer); override;
function GetToken: String; override;
procedure GetTokenEx(out TokenStart: PChar; out TokenLength: integer); override;
function GetTokenAttribute: TSynHighlighterAttributes; override;
function GetTokenKind: integer; override;
function GetTokenPos: Integer; override;
procedure Next; override;
published
property CommentAttri: TSynHighlighterAttributes read fCommentAttri
write fCommentAttri;
property TextAttri : TSynHighlighterAttributes read fTextAttri
write fTextAttri;
property KeyAttri : TSynHighlighterAttributes read fKeyAttri
write fKeyAttri;
property SpaceAttri : TSynHighlighterAttributes read fSpaceAttri
write fSpaceAttri;
end;
implementation
const
PoKeysCount = 3;
PoKeys: array[1..PoKeysCount] of string = (
'msgid', 'msgstr', 'msgctxt');
procedure TSynPoSyn.MakeMethodTables;
var
i: Char;
begin
for i := #0 to #255 do
case i of
#0 : fProcTable[i] := @NullProc;
#10 {LF}: fProcTable[i] := @LFProc;
#13 {CR}: fProcTable[i] := @CRProc;
#34 {"} : fProcTable[i] := @StringProc;
'A'..'Z', 'a'..'z', '_': fProcTable[I] := @IdentProc;
'#' {#} : fProcTable[i] := @HashProc;
#1..#9, #11, #12, #14..#32: fProcTable[i] := @SpaceProc;
else
fProcTable[i] := @TextProc;
end;
end;
constructor TSynPoSyn.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
fCommentAttri := TSynHighlighterAttributes.Create(@SYNS_AttrComment);
fCommentAttri.Style := [fsItalic];
fCommentAttri.Foreground := clGreen;
AddAttribute(fCommentAttri);
fTextAttri := TSynHighlighterAttributes.Create(@SYNS_AttrText);
AddAttribute(fTextAttri);
fKeyAttri := TSynHighlighterAttributes.Create(@SYNS_AttrKey);
fKeyAttri.Foreground := clBlue;
fKeyAttri.Style := [fsBold];
AddAttribute(fKeyAttri);
fIdentAttri := TSynHighlighterAttributes.Create(@SYNS_AttrIdentifier, SYNS_XML_AttrIdentifier);
fIdentAttri.Foreground := clGreen;
fIdentAttri.Style := [fsBold];
AddAttribute(fIdentAttri);
fPrevAttri := TSynHighlighterAttributes.Create(@SYNS_AttrPrevValue, SYNS_XML_AttrPrevValue);
fPrevAttri.Foreground := clOlive;
fPrevAttri.Style := [fsItalic];
AddAttribute(fPrevAttri);
fFlagAttri := TSynHighlighterAttributes.Create(@SYNS_AttrFlags, SYNS_XML_AttrFlags);
fFlagAttri.Foreground := clTeal;
AddAttribute(fFlagAttri);
fSpaceAttri := TSynHighlighterAttributes.Create(@SYNS_AttrSpace, SYNS_XML_AttrSpace);
AddAttribute(fSpaceAttri);
fStringAttri := TSynHighlighterAttributes.Create(@SYNS_AttrString, SYNS_XML_AttrString);
fStringAttri.Foreground := clFuchsia;
AddAttribute(fStringAttri);
SetAttributesOnChange(@DefHighlightChange);
fDefaultFilter := SYNS_FilterPo;
MakeMethodTables;
end; { Create }
procedure TSynPoSyn.SetLine(const NewValue: String; LineNumber:Integer);
begin
inherited;
fLine := PChar(NewValue);
Run := 0;
fLineNumber := LineNumber;
Next;
end;
procedure TSynPoSyn.IdentProc;
begin
while fLine[Run] in GetIdentChars {['A'..'Z','a'..'z']} do inc(Run);
if IsKeyWord(GetToken) then begin
fTokenId := tkKey;
Exit;
end
else fTokenId := tkUnknown;
end;
procedure TSynPoSyn.CRProc;
begin
fTokenID := tkSpace;
Case FLine[Run + 1] of
#10: inc(Run, 2);
else inc(Run);
end;
end;
procedure TSynPoSyn.KeyProc;
begin
fTokenID := tkKey;
inc(Run);
while FLine[Run] <> #0 do
case FLine[Run] of
#32: break;
#10: break;
#13: break;
else inc(Run);
end;
end;
procedure TSynPoSyn.TextProc;
begin
if Run = 0 then
IdentProc
else begin
inc(Run);
while (fLine[Run] in [#128..#191]) OR // continued utf8 subcode
((fLine[Run]<>#0) and (fProcTable[fLine[Run]] = @TextProc)) do inc(Run);
fTokenID := tkText;
end;
end;
procedure TSynPoSyn.LFProc;
begin
fTokenID := tkSpace;
inc(Run);
end;
procedure TSynPoSyn.NullProc;
begin
fTokenID := tkNull;
end;
procedure TSynPoSyn.SpaceProc;
begin
inc(Run);
fTokenID := tkSpace;
while FLine[Run] in [#1..#9, #11, #12, #14..#32] do inc(Run);
end;
procedure TSynPoSyn.StringProc;
var
FirstQuotePos, LastQuotePos: longint;
begin
FirstQuotePos := Run;
LastQuotePos := FirstQuotePos;
fTokenID := tkString;
while FLine[Run] <> #0 do
begin
case FLine[Run] of
#10, #13: break;
#34: if (Run <= 0) or (FLine[Run - 1] <> '\') then LastQuotePos := Run;
end;
inc(Run);
end;
if FirstQuotePos <> LastQuotePos then
Run := LastQuotePos;
if FLine[Run] <> #0 then
inc(Run);
end;
procedure TSynPoSyn.HashProc;
begin
// if it is not column 0 mark as tkText and get out of here
if Run > 0 then
begin
fTokenID := tkText;
inc(Run);
Exit;
end;
// this is column 0 --> ok
fTokenID := tkComment;
while FLine[Run] <> #0 do
case FLine[Run] of
#10: break;
#13: break;
':': begin if (Run = 1) then fTokenId := tkIdentifier; Inc(Run) end;
',': begin if (Run = 1) then fTokenId := tkFlags; Inc(Run) end;
'|': begin if (Run = 1) then fTokenId := tkPrevValue; Inc(Run) end;
else inc(Run);
end;
end;
procedure TSynPoSyn.Next;
begin
fTokenPos := Run;
fProcTable[fLine[Run]];
end;
function TSynPoSyn.GetDefaultAttribute(Index: integer): TSynHighlighterAttributes;
begin
case Index of
SYN_ATTR_COMMENT: Result := fCommentAttri;
SYN_ATTR_KEYWORD: Result := fKeyAttri;
SYN_ATTR_STRING: Result := fStringAttri;
SYN_ATTR_WHITESPACE: Result := fSpaceAttri;
else
Result := nil;
end;
end;
function TSynPoSyn.GetEol: Boolean;
begin
Result := fTokenId = tkNull;
end;
function TSynPoSyn.GetToken: String;
var
Len: LongInt;
begin
Len := Run - fTokenPos;
SetString(Result, (FLine + fTokenPos), Len);
end;
procedure TSynPoSyn.GetTokenEx(out TokenStart: PChar; out TokenLength: integer);
begin
TokenLength := Run - fTokenPos;
TokenStart := FLine + fTokenPos;
end;
function TSynPoSyn.GetTokenID: TtkTokenKind;
begin
Result := fTokenId;
end;
function TSynPoSyn.GetTokenAttribute: TSynHighlighterAttributes;
begin
case fTokenID of
tkComment: Result := fCommentAttri;
tkText : Result := fTextAttri;
tkKey : Result := fKeyAttri;
tkSpace : Result := fSpaceAttri;
tkString : Result := fStringAttri;
tkIdentifier: Result := fIdentAttri;
tkFlags: Result := fFlagAttri;
tkPrevValue: Result := fPrevAttri;
tkUnknown: Result := fTextAttri;
else Result := nil;
end;
end;
function TSynPoSyn.GetTokenKind: integer;
begin
Result := Ord(fTokenId);
end;
function TSynPoSyn.GetTokenPos: Integer;
begin
Result := fTokenPos;
end;
function TSynPoSyn.GetIdentChars: TSynIdentChars;
begin
Result := [#33..#255];
end;
class function TSynPoSyn.GetLanguageName: string;
begin
Result := SYNS_LangPo;
end;
function TSynPoSyn.GetSampleSource: String;
begin
Result := '"Project-Id-Version: \n"' + LineEnding +
'"POT-Creation-Date: \n"' + LineEnding +
'"MIME-Version: 1.0\n"' + LineEnding +
'"Content-Type: text/plain; charset=UTF-8\n"' + LineEnding +
'"Content-Transfer-Encoding: 8bit\n"' + LineEnding +
LineEnding +
'#: lazarusidestrconsts.dlgcochecks' + LineEnding +
'#, fuzzy' + LineEnding +
'#| msgid "Checks:"' + LineEnding +
'msgid "Checks"' + LineEnding +
'msgstr "Controleert:"' + LineEnding +
LineEnding +
'#: lazarusidestrconsts.listemplateeditparamcellhelp' + LineEnding +
'msgid ""' + LineEnding +
'"Inserts an editable Cell, with a default value\n"' + LineEnding +
'"\"\",Sync=n (,S=n), to Sync with a previous cell (n=1 to highest prev cell\n"' + LineEnding +
'"\"default\",Sync, to Sync with a previous cell of equal default\n"' + LineEnding +
'msgstr ""';
end;
function TSynPoSyn.IsKeyword(const AKeyword: string): boolean;
var
Token: String;
i: Integer;
begin
//There are only 3 keywords, so no need to make a hashtable
Token := LowerCase(AKeyWord);
for i := 1 to PoKeysCount do if (PoKeys[i] = Token) then
begin
Exit(True);
end;
Result := False;
end;
initialization
RegisterPlaceableHighlighter(TSynPoSyn);
end.
|