{------------------------------------------------------------------------------- The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ 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. Code template generated with SynGen. The original code is: SynHighlighterMsg.pas, released 2001-10-03. Description: SynGen Msg file highlighter The initial author of this file is P.L. Polak. Copyright (c) 2001, all rights reserved. Contributors to the SynEdit and mwEdit projects are listed in the Contributors.txt file. Alternatively, the contents of this file may be used under the terms of the GNU General Public License Version 2 or later (the "GPL"), in which case the provisions of the GPL are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of the GPL and not to allow others to use your version of this file under the MPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the GPL. If you do not delete the provisions above, a recipient may use your version of this file under either the MPL or the GPL. $Id: SynHighlighterMsg.pas,v 1.9 2005/01/28 16:53:24 maelh Exp $ You may retrieve the latest version of this file at the SynEdit home page, located at http://SynEdit.SourceForge.net -------------------------------------------------------------------------------} {$IFNDEF QSYNHIGHLIGHTERMSG} unit SynHighlighterMsg; {$ENDIF} {$I SynEdit.inc} interface uses {$IFDEF SYN_CLX} QGraphics, QSynEditTypes, QSynEditHighlighter, {$ELSE} Graphics, SynEditTypes, SynEditHighlighter, {$ENDIF} SysUtils, Classes; const MaxKey = 150; Type TtkTokenKind = ( tkComment, tkIdentifier, tkKey, tkNull, tkSpace, tkString, tkSymbol, tkTerminator, tkUnknown); TRangeState = (rsUnKnown, rsBraceComment, rsString); TProcTableProc = procedure of object; PIdentFuncTableFunc = ^TIdentFuncTableFunc; TIdentFuncTableFunc = function: TtkTokenKind of object; type TSynMsgSyn = class(TSynCustomHighlighter) private fLine: PChar; fLineNumber: Integer; fProcTable: array[#0..#255] of TProcTableProc; fRange: TRangeState; Run: LongInt; fStringLen: Integer; fToIdent: PChar; fTokenPos: Integer; fTokenID: TtkTokenKind; fIdentFuncTable: array[0..MaxKey] of TIdentFuncTableFunc; fCommentAttri: TSynHighlighterAttributes; fIdentifierAttri: TSynHighlighterAttributes; fKeyAttri: TSynHighlighterAttributes; fSpaceAttri: TSynHighlighterAttributes; fStringAttri: TSynHighlighterAttributes; fSymbolAttri: TSynHighlighterAttributes; fTerminatorAttri: TSynHighlighterAttributes; function KeyHash(ToHash: PChar): Integer; function KeyComp(const aKey: string): Boolean; function Func49: TtkTokenKind; function Func60: TtkTokenKind; function Func75: TtkTokenKind; function Func89: TtkTokenKind; function Func104: TtkTokenKind; function Func147: TtkTokenKind; function Func150: TtkTokenKind; procedure IdentProc; procedure SymbolProc; procedure TerminatorProc; procedure UnknownProc; function AltFunc: TtkTokenKind; procedure InitIdent; function IdentKind(MayBe: PChar): TtkTokenKind; procedure MakeMethodTables; procedure NullProc; procedure SpaceProc; procedure CRProc; procedure LFProc; procedure BraceCommentOpenProc; procedure BraceCommentProc; procedure StringOpenProc; procedure StringProc; protected function GetIdentChars: TSynIdentChars; override; function GetSampleSource: string; override; function IsFilterStored: Boolean; override; public constructor Create(AOwner: TComponent); override; class function GetLanguageName: string; override; function GetRange: Pointer; override; procedure ResetRange; override; procedure SetRange(Value: Pointer); override; function GetDefaultAttribute(Index: integer): TSynHighlighterAttributes; override; function GetEol: Boolean; override; function GetTokenID: TtkTokenKind; procedure SetLine(NewValue: String; LineNumber: Integer); override; function GetToken: String; 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 IdentifierAttri: TSynHighlighterAttributes read fIdentifierAttri write fIdentifierAttri; property KeyAttri: TSynHighlighterAttributes read fKeyAttri write fKeyAttri; property SpaceAttri: TSynHighlighterAttributes read fSpaceAttri write fSpaceAttri; property StringAttri: TSynHighlighterAttributes read fStringAttri write fStringAttri; property SymbolAttri: TSynHighlighterAttributes read fSymbolAttri write fSymbolAttri; property TerminatorAttri: TSynHighlighterAttributes read fTerminatorAttri write fTerminatorAttri; end; implementation uses {$IFDEF SYN_CLX} QSynEditStrConst; {$ELSE} SynEditStrConst; {$ENDIF} var Identifiers: array[#0..#255] of ByteBool; mHashTable : array[#0..#255] of Integer; procedure MakeIdentTable; var I, J: Char; begin for I := #0 to #255 do begin case I of '_', 'a'..'z', 'A'..'Z': Identifiers[I] := True; else Identifiers[I] := False; end; J := UpCase(I); case I in ['_', 'A'..'Z', 'a'..'z'] of True: mHashTable[I] := Ord(J) - 64 else mHashTable[I] := 0; end; end; end; procedure TSynMsgSyn.InitIdent; var I: Integer; pF: PIdentFuncTableFunc; begin pF := PIdentFuncTableFunc(@fIdentFuncTable); for I := Low(fIdentFuncTable) to High(fIdentFuncTable) do begin pF^ := AltFunc; Inc(pF); end; fIdentFuncTable[49] := Func49; fIdentFuncTable[60] := Func60; fIdentFuncTable[75] := Func75; fIdentFuncTable[89] := Func89; fIdentFuncTable[104] := Func104; fIdentFuncTable[147] := Func147; fIdentFuncTable[150] := Func150; end; function TSynMsgSyn.KeyHash(ToHash: PChar): Integer; begin Result := 0; while ToHash^ in ['_', 'a'..'z', 'A'..'Z'] do begin inc(Result, mHashTable[ToHash^]); inc(ToHash); end; fStringLen := ToHash - fToIdent; end; function TSynMsgSyn.KeyComp(const aKey: String): Boolean; var I: Integer; Temp: PChar; begin Temp := fToIdent; if Length(aKey) = fStringLen then begin Result := True; for i := 1 to fStringLen do begin if mHashTable[Temp^] <> mHashTable[aKey[i]] then begin Result := False; break; end; inc(Temp); end; end else Result := False; end; function TSynMsgSyn.Func49: TtkTokenKind; begin if KeyComp('CHARS') then Result := tkKey else Result := tkIdentifier; end; function TSynMsgSyn.Func60: TtkTokenKind; begin if KeyComp('KEYS') then Result := tkKey else Result := tkIdentifier; end; function TSynMsgSyn.Func75: TtkTokenKind; begin if KeyComp('EndProc') then Result := tkKey else Result := tkIdentifier; end; function TSynMsgSyn.Func89: TtkTokenKind; begin if KeyComp('BeginProc') then Result := tkKey else Result := tkIdentifier; end; function TSynMsgSyn.Func104: TtkTokenKind; begin if KeyComp('ENCLOSEDBY') then Result := tkKey else Result := tkIdentifier; end; function TSynMsgSyn.Func147: TtkTokenKind; begin if KeyComp('SAMPLESOURCE') then Result := tkKey else Result := tkIdentifier; end; function TSynMsgSyn.Func150: TtkTokenKind; begin if KeyComp('TOKENTYPES') then Result := tkKey else Result := tkIdentifier; end; function TSynMsgSyn.AltFunc: TtkTokenKind; begin Result := tkIdentifier; end; function TSynMsgSyn.IdentKind(MayBe: PChar): TtkTokenKind; var HashKey: Integer; begin fToIdent := MayBe; HashKey := KeyHash(MayBe); if HashKey <= MaxKey then Result := fIdentFuncTable[HashKey] else Result := tkIdentifier; end; procedure TSynMsgSyn.MakeMethodTables; var I: Char; begin for I := #0 to #255 do case I of #0: fProcTable[I] := NullProc; #10: fProcTable[I] := LFProc; #13: fProcTable[I] := CRProc; '{': fProcTable[I] := BraceCommentOpenProc; '''': fProcTable[I] := StringOpenProc; #1..#9, #11, #12, #14..#32 : fProcTable[I] := SpaceProc; 'A'..'Z', 'a'..'z', '_': fProcTable[I] := IdentProc; '-', '+', '*', '/', '\', ',', '"', '[', ']', ':', ';': fProcTable[I] := SymbolProc; '|': fProcTable[I] := TerminatorProc; else fProcTable[I] := UnknownProc; end; end; procedure TSynMsgSyn.SpaceProc; begin fTokenID := tkSpace; repeat inc(Run); until not (fLine[Run] in [#1..#32]); end; procedure TSynMsgSyn.NullProc; begin fTokenID := tkNull; end; procedure TSynMsgSyn.CRProc; begin fTokenID := tkSpace; inc(Run); if fLine[Run] = #10 then inc(Run); end; procedure TSynMsgSyn.LFProc; begin fTokenID := tkSpace; inc(Run); end; procedure TSynMsgSyn.BraceCommentOpenProc; begin Inc(Run); fRange := rsBraceComment; BraceCommentProc; fTokenID := tkComment; end; procedure TSynMsgSyn.BraceCommentProc; begin case fLine[Run] of #0: NullProc; #10: LFProc; #13: CRProc; else begin fTokenID := tkComment; repeat if (fLine[Run] = '}') then begin Inc(Run, 1); fRange := rsUnKnown; Break; end; if not (fLine[Run] in [#0, #10, #13]) then Inc(Run); until fLine[Run] in [#0, #10, #13]; end; end; end; procedure TSynMsgSyn.StringOpenProc; begin Inc(Run); fRange := rsString; StringProc; fTokenID := tkString; end; procedure TSynMsgSyn.StringProc; begin fTokenID := tkString; repeat if (fLine[Run] = '''') then begin Inc(Run, 1); fRange := rsUnKnown; Break; end; if not (fLine[Run] in [#0, #10, #13]) then Inc(Run); until fLine[Run] in [#0, #10, #13]; end; constructor TSynMsgSyn.Create(AOwner: TComponent); begin inherited Create(AOwner); fCommentAttri := TSynHighLighterAttributes.Create(SYNS_AttrComment); fCommentAttri.Style := [fsItalic]; fCommentAttri.Foreground := clNavy; AddAttribute(fCommentAttri); fIdentifierAttri := TSynHighLighterAttributes.Create(SYNS_AttrIdentifier); AddAttribute(fIdentifierAttri); fKeyAttri := TSynHighLighterAttributes.Create(SYNS_AttrReservedWord); fKeyAttri.Style := [fsBold]; AddAttribute(fKeyAttri); fSpaceAttri := TSynHighLighterAttributes.Create(SYNS_AttrSpace); AddAttribute(fSpaceAttri); fStringAttri := TSynHighLighterAttributes.Create(SYNS_AttrString); AddAttribute(fStringAttri); fSymbolAttri := TSynHighLighterAttributes.Create(SYNS_AttrSymbol); AddAttribute(fSymbolAttri); fTerminatorAttri := TSynHighLighterAttributes.Create(SYNS_AttrTerminator); AddAttribute(fTerminatorAttri); SetAttributesOnChange(DefHighlightChange); InitIdent; MakeMethodTables; fDefaultFilter := SYNS_FilterSynGenMsgfiles; fRange := rsUnknown; end; procedure TSynMsgSyn.SetLine(NewValue: String; LineNumber: Integer); begin fLine := PChar(NewValue); Run := 0; fLineNumber := LineNumber; Next; end; procedure TSynMsgSyn.IdentProc; begin fTokenID := IdentKind((fLine + Run)); inc(Run, fStringLen); while Identifiers[fLine[Run]] do Inc(Run); end; procedure TSynMsgSyn.SymbolProc; begin Inc(Run); fTokenID := tkSymbol; end; procedure TSynMsgSyn.TerminatorProc; begin Inc(Run); if (fLine[Run] = '>') and (fLine[Run + 1] = '<') and (fLine[Run + 2] = '|') then begin fTokenID := tkTerminator; Inc(Run, 3); end else fTokenID := tkSymbol; end; procedure TSynMsgSyn.UnknownProc; begin {$IFDEF SYN_MBCSSUPPORT} if FLine[Run] in LeadBytes then Inc(Run, 2) else {$ENDIF} inc(Run); fTokenID := tkUnknown; end; procedure TSynMsgSyn.Next; begin fTokenPos := Run; case fRange of rsBraceComment: BraceCommentProc; else begin fRange := rsUnknown; fProcTable[fLine[Run]]; end; end; end; function TSynMsgSyn.GetDefaultAttribute(Index: integer): TSynHighLighterAttributes; begin case Index of SYN_ATTR_COMMENT : Result := fCommentAttri; SYN_ATTR_IDENTIFIER : Result := fIdentifierAttri; SYN_ATTR_KEYWORD : Result := fKeyAttri; SYN_ATTR_STRING : Result := fStringAttri; SYN_ATTR_WHITESPACE : Result := fSpaceAttri; SYN_ATTR_SYMBOL : Result := fSymbolAttri; else Result := nil; end; end; function TSynMsgSyn.GetEol: Boolean; begin Result := fTokenID = tkNull; end; function TSynMsgSyn.GetToken: String; var Len: LongInt; begin Len := Run - fTokenPos; SetString(Result, (FLine + fTokenPos), Len); end; function TSynMsgSyn.GetTokenID: TtkTokenKind; begin Result := fTokenId; end; function TSynMsgSyn.GetTokenAttribute: TSynHighLighterAttributes; begin case GetTokenID of tkComment: Result := fCommentAttri; tkIdentifier: Result := fIdentifierAttri; tkKey: Result := fKeyAttri; tkSpace: Result := fSpaceAttri; tkString: Result := fStringAttri; tkSymbol: Result := fSymbolAttri; tkTerminator: Result := fTerminatorAttri; tkUnknown: Result := fIdentifierAttri; else Result := nil; end; end; function TSynMsgSyn.GetTokenKind: integer; begin Result := Ord(fTokenId); end; function TSynMsgSyn.GetTokenPos: Integer; begin Result := fTokenPos; end; function TSynMsgSyn.GetIdentChars: TSynIdentChars; begin Result := ['_', 'a'..'z', 'A'..'Z'] + TSynSpecialChars; end; function TSynMsgSyn.GetSampleSource: string; begin Result := 'TSynSampleSyn {first identifier is the class name }'#13#10 + 'tk {second identifier is the prefix }'#13#10 + 'IdentStart ''a''..''z'':: ''a''..''z''::'#13#10 + 'KEYS'#13#10 + 'Sample'#13#10 + 'Source'#13#10 + '|><|'; end; function TSynMsgSyn.IsFilterStored: Boolean; begin Result := fDefaultFilter <> SYNS_FilterSynGenMsgfiles; end; class function TSynMsgSyn.GetLanguageName: string; begin Result := SYNS_LangSynGenMsgfiles; end; procedure TSynMsgSyn.ResetRange; begin fRange := rsUnknown; end; procedure TSynMsgSyn.SetRange(Value: Pointer); begin fRange := TRangeState(Value); end; function TSynMsgSyn.GetRange: Pointer; begin Result := Pointer(fRange); end; initialization MakeIdentTable; {$IFNDEF SYN_CPPB_1} RegisterPlaceableHighlighter(TSynMsgSyn); {$ENDIF} end.