lazarus/components/jcf2/ReadWrite/Converter.pas

621 lines
19 KiB
ObjectPascal

{(*}
(*------------------------------------------------------------------------------
Delphi Code formatter source code
The Original Code is Converter.pas, released April 2000.
The Initial Developer of the Original Code is Anthony Steele.
Portions created by Anthony Steele are Copyright (C) 1999-2008 Anthony Steele.
All Rights Reserved.
Contributor(s): Anthony Steele.
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/NPL/
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.
Alternatively, the contents of this file may be used under the terms of
the GNU General Public License Version 2 or later (the "GPL")
See http://www.gnu.org/licenses/gpl.html
------------------------------------------------------------------------------*)
{*)}
unit Converter;
{
5 July 2004
Rewrote as a simpler sting->string converter.
For file or ide, there will be wrapper classes not subclasses.
Wrappers will also support the interface IConvert
}
{$mode delphi}
interface
uses
SysUtils, strutils, LazFileUtils,
// local
ConvertTypes, ParseTreeNode, BuildTokenList, BuildParseTree, BaseVisitor;
type
TOnIncludeFile=procedure(Sender:TObject;AIncludeFileName:string;var AFileContentOrErrorMessage:string;var AFileReaded:boolean) of object;
TConverter = class(TObject)
private
{ the strings for the in and out code }
fsInputCode, fsOutputCode: String;
fsFileName: String;
fiFirstLineNumber: integer; //used by ConvertUsingFakeUnit
fiFirstSelectionLineNumber: integer;
{ classes to lex and parse the source }
fcTokeniser: TBuildTokenList;
fcBuildParseTree: TBuildParseTree;
{ used for testing - just run 1 process }
fcSingleProcess: TTreeNodeVisitorType;
{ state }
fiTokenCount: Integer;
fbConvertError: Boolean;
fOnStatusMessage: TStatusMessageProc;
{ false for commandline UI - don't put up a parse fail dialog
This could be in batch file on a server }
fbGuiMessages: Boolean;
fbShowParseTree: Boolean;
fOnIncludeFile:TOnIncludeFile;
function GetOnStatusMessage: TStatusMessageProc;
procedure SetOnStatusMessage(const Value: TStatusMessageProc);
procedure SendExceptionMessage(const pe: Exception);
procedure ShowParseTree;
function GetRoot: TParseTreeNode;
{ this does the reformatting. Virtual method so can be overriden for testing }
procedure ApplyProcesses;
procedure ApplySingleProcess;
public
constructor Create;
destructor Destroy; override;
procedure Clear;
procedure Convert;
procedure ConvertPart(const piStartIndex, piEndIndex: Integer;
aOnlyOutputSelection: boolean=false);
procedure ConvertRange(piStartLineNumber, piEndLineNumber: Integer;
aOnlyOutputSelection: Boolean = false);
procedure ConvertUsingFakeUnit(AFirstLineNumber:integer = 1);
procedure CollectOutput(const pcRoot: TParseTreeNode);
{ call this to report the current state of the proceedings }
procedure SendStatusMessage(const psUnit, psMessage: String; const peMessageType: TStatusMessageType; const piY, piX: Integer);
property InputCode: String Read fsInputCode Write fsInputCode;
property OutputCode: String Read fsOutputCode Write fsOutputCode;
property FileName: String Read fsFileName Write fsFileName;
property TokenCount: Integer Read fiTokenCount;
property ConvertError: Boolean Read fbConvertError;
property GuiMessages: Boolean Read fbGuiMessages Write fbGuiMessages;
property Root: TParseTreeNode Read GetRoot;
property OnStatusMessage: TStatusMessageProc Read GetOnStatusMessage Write SetOnStatusMessage;
property SingleProcess: TTreeNodeVisitorType Read fcSingleProcess Write fcSingleProcess;
property ShowTree: boolean Read fbShowParseTree Write fbShowParseTree;
property OnIncludeFile: TOnIncludeFile Read fOnIncludeFile Write fOnIncludeFile;
end;
const
FORMAT_START = '{<JCF_!*$>}';
FORMAT_END = '{</JCF_!*$>}';
implementation
uses
AllProcesses,
JcfRegistrySettings,
JcfSettings, JcfStringUtils, ParseError, PreProcessorParseTree,
SourceToken, SourceTokenList, TreeWalker, VisitSetNesting, VisitSetXY, JcfUiTools, jcfbaseConsts;
function StrInsert(const psSub, psMain: String; const piPos: Integer): String;
begin
Result := StrLeft(psMain, piPos - 1) + psSub + StrRestOf(psMain, piPos);
end;
constructor TConverter.Create;
begin
inherited;
{ owned objects }
fcTokeniser := TBuildTokenList.Create;
fcTokeniser.FileName := FileName;
fcBuildParseTree := TBuildParseTree.Create;
fcSingleProcess := nil;
fbGuiMessages := True; // use Ui to show parse errors by default
fiFirstLineNumber := 1;
fiFirstSelectionLineNumber:= MaxInt;
end;
destructor TConverter.Destroy;
begin
FreeAndNil(fcTokeniser);
FreeAndNil(fcBuildParseTree);
inherited;
end;
procedure TConverter.Clear;
begin
fsInputCode := '';
fsOutputCode := '';
fcSingleProcess := nil;
end;
procedure TConverter.Convert;
var
lcTokenList: TSourceTokenList;
begin
fbConvertError := False;
try { finally normal cursor }
// this can take a long time for large files
GetUI.SetWaitCursorUI;
// turn text into tokens
fcTokeniser.SourceCode := InputCode;
fcTokeniser.FileName := FileName;
lcTokenList := TSourceTokenList.Create;
try
fcTokeniser.BuildTokenList(lcTokenList);
except
on ETW: EBuildTokenListWarning do
begin
SendStatusMessage('', Format(lisMsgWarningClassMsg, ['', ETW.Message]), mtCodeWarning, -1, -1);
end;
on EPR:TEParseError do
begin
fbConvertError := True;
SendStatusMessage('', Format(lisMsgExceptionClassMsg, ['', EPR.Message]), mtException, EPR.YPosition, EPR.XPosition);
Exit;
end;
on E: Exception do
begin
fbConvertError := True;
SendStatusMessage('', Format(lisMsgExceptionClassMsg, ['', E.Message]), mtException, -1, -1);
Exit;
end;
end;
try { finally free the list }
try { show exceptions }
fiTokenCount := lcTokenList.Count;
lcTokenList.SetXYPositions;
// remove conditional compilation stuph
if FormattingSettings.PreProcessor.Enabled then
RemoveConditionalCompilation(Self,lcTokenList, fOnIncludeFile);
// make a parse tree from it
fcBuildParseTree.TokenList := lcTokenList;
fcBuildParseTree.IsIncFile := FilenameExtIs(FileName, 'inc');
fcBuildParseTree.BuildParseTree;
if fbShowParseTree then
ShowParseTree;
except
on E: Exception do
begin
fbConvertError := True;
SendExceptionMessage(E);
if GuiMessages and (GetRegSettings.ShowParseTreeOption = eShowOnError) then
ShowParseTree;
end;
end;
if fbConvertError then
begin
{ if there was a parse error, the rest of the unit was not parsed
there may still be tokens in the list
Free them or face a small but annoying memory leak. }
lcTokenList.OwnsObjects := True;
lcTokenList.Clear;
end;
// should not be any tokens left
Assert(lcTokenList.Count = 0, 'Surplus tokens');
finally
FreeAndNil(lcTokenList);
end;
try
if not fbConvertError then
begin
if (GetRegSettings.ShowParseTreeOption = eShowAlways) then
ShowParseTree;
// do the processes
if Assigned(fcSingleProcess) then
ApplySingleProcess
else
ApplyProcesses;
// assemble the output string
fsOutputCode := '';
CollectOutput(fcBuildParseTree.Root);
end;
fcBuildParseTree.Clear;
except
on E: Exception do
begin
fbConvertError := True;
SendExceptionMessage(E);
end;
end;
finally
fiFirstLineNumber := 1;
fiFirstSelectionLineNumber:= MaxInt;
if lcTokenList<>nil then
begin
lcTokenList.OwnsObjects := True;
lcTokenList.Clear;
FreeAndNil(lcTokenList);
end;
GetUI.RestoreCursorUI;
end;
end;
{ this is what alters the code (in parse tree form) from source to output }
procedure TConverter.ApplyProcesses;
var
lcProcess: TAllProcesses;
begin
lcProcess := TAllProcesses.Create;
try
lcProcess.OnMessage := SendStatusMessage;
lcProcess.Execute(fcBuildParseTree.Root);
finally
lcProcess.Free;
end;
end;
procedure TConverter.ApplySingleProcess;
var
lcProcess: TBaseTreeNodeVisitor;
lcTreeWalker: TTreeWalker;
begin
lcTreeWalker := TTreeWalker.Create;
try
// apply a visit setXY first
lcProcess := TVisitSetXY.Create;
try
lcTreeWalker.Visit(GetRoot, lcProcess);
finally
lcProcess.Free;
end;
// and set up nesting levels
lcProcess := TVisitSetNestings.Create;
try
lcTreeWalker.Visit(GetRoot, lcProcess);
finally
lcProcess.Free;
end;
// then apply the process
lcProcess := SingleProcess.Create;
try
lcTreeWalker.Visit(GetRoot, lcProcess);
finally
lcProcess.Free;
end;
finally
lcTreeWalker.Free;
end;
end;
function TConverter.GetRoot: TParseTreeNode;
begin
Result := fcBuildParseTree.Root;
end;
procedure TConverter.CollectOutput(const pcRoot: TParseTreeNode);
var
liLoop: Integer;
begin
Assert(pcRoot <> nil);
// is it a leaf with source?
if (pcRoot is TSourceToken) then
fsOutputCode := fsOutputCode + TSourceToken(pcRoot).SourceCode
else // recurse, write out all child nodes
for liLoop := 0 to pcRoot.ChildNodeCount - 1 do
CollectOutput(pcRoot.ChildNodes[liLoop]);
end;
function TConverter.GetOnStatusMessage: TStatusMessageProc;
begin
Result := fOnStatusMessage;
end;
procedure TConverter.SetOnStatusMessage(const Value: TStatusMessageProc);
begin
fOnStatusMessage := Value;
end;
procedure TConverter.SendExceptionMessage(const pe: Exception);
var
lsMessage: String;
liX, liY: Integer;
leParseError: TEParseError;
leMessageType: TStatusMessageType;
begin
lsMessage := Format(lisMsgExceptionClassMsg, [pe.ClassName, pe.Message]);
if pe is TEParseError then
begin
leParseError := TEParseError(pe);
lsMessage := lsMessage + NativeLineBreak + Format(lisMsgNear2,[leParseError.TokenMessage]);
liX := leParseError.XPosition;
liY := leParseError.YPosition;
leMessageType := mtParseError;
end
else
begin
liX := -1;
liY := -1;
leMessageType := mtException;
end;
SendStatusMessage('', lsMessage, leMessageType, liY, liX);
end;
procedure TConverter.SendStatusMessage(const psUnit, psMessage: String; const peMessageType: TStatusMessageType; const piY, piX: Integer);
var
lsUnit: string;
liY:integer;
begin
if Assigned(fOnStatusMessage) then
begin
lsUnit := psUnit;
if lsUnit = '' then
lsUnit := fsFileName;
// adjust error line number in selection formating.
// error due jcf special added comments
liY := piY + fiFirstLineNumber - 1;
if piY > fiFirstSelectionLineNumber then
Dec(liY);
fOnStatusMessage(lsUnit, psMessage, peMessageType, liY, piX);
end;
end;
procedure TConverter.ShowParseTree;
begin
// This is always called from a Cursor:=crHourGlass block. Restore old cursor.
GetUI.RestoreCursorUI;
if fcBuildParseTree.Root <> nil then
GetUI.ShowParseTreeUI(fcBuildParseTree.Root);
end;
procedure TConverter.ConvertPart(const piStartIndex, piEndIndex: Integer;
aOnlyOutputSelection: boolean);
var
liRealInputStart, liRealInputEnd: Integer;
liOutputStart, liOutputEnd: Integer;
lsNewOutput: String;
begin
Assert(piStartIndex >= 0);
Assert(piEndIndex >= piStartIndex);
Assert(piEndIndex <= Length(InputCode));
{ round to nearest end of line }
liRealInputStart := piStartIndex;
liRealInputEnd := piEndIndex;
{ get to the start of the line }
while (liRealInputStart > 1) and (not CharIsReturn(InputCode[liRealInputStart - 1])) do
Dec(liRealInputStart);
{ get to the start of the next line }
while (liRealInputEnd < Length(InputCode)) and (not CharIsReturn(InputCode[liRealInputEnd])) do
Inc(liRealInputEnd);
while (liRealInputEnd < Length(InputCode)) and (CharIsReturn(InputCode[liRealInputEnd])) do
Inc(liRealInputEnd);
{ put markers into the input }
fsInputCode := StrInsert(FORMAT_END, fsInputCode, liRealInputEnd);
{ add a new line after FORMAT_START, prevents bad formating of first selected line. }
fsInputCode := StrInsert(FORMAT_START+#10, fsInputCode, liRealInputStart);
Convert;
{ locate the markers in the output, and replace before and after }
liOutputStart := Pos(FORMAT_START, fsOutputCode) + Length(FORMAT_START);
{remode new line added after FORMAT_START }
if (liOutputStart<length(fsOutputCode)) and (fsOutputCode[liOutputStart]=#13) then
inc(liOutputStart);
if (liOutputStart<length(fsOutputCode)) and (fsOutputCode[liOutputStart]=#10) then
inc(liOutputStart);
liOutputEnd := PosEx(FORMAT_END, fsOutputCode,liOutputStart);
{ splice }
if aOnlyOutputSelection then
lsNewOutput := Copy(fsOutputCode, liOutputStart, (liOutputEnd - liOutputStart))
else begin
lsNewOutput := StrLeft(fsInputCode, liRealInputStart - 1);
lsNewOutput := lsNewOutput + Copy(fsOutputCode, liOutputStart, (liOutputEnd - liOutputStart));
lsNewOutput := lsNewOutput + StrRestOf(fsInputCode, liRealInputEnd + Length(FORMAT_START) + Length(FORMAT_END));
end;
fsOutputCode := lsNewOutput;
end;
procedure TConverter.ConvertRange(piStartLineNumber, piEndLineNumber: Integer;
aOnlyOutputSelection: Boolean);
var
lineStartOffset,lineEndOffset: Integer;
liAux: Integer;
begin
if piStartLineNumber > piEndLineNumber then
begin
liAux := piEndLineNumber;
piEndLineNumber := piStartLineNumber;
piStartLineNumber := liAux;
end;
FindLineOffsets(fsInputCode,piStartLineNumber, piEndLineNumber,lineStartOffset,lineEndOffset);
fiFirstSelectionLineNumber:= piStartLineNumber;
ConvertPart(lineStartOffset, lineEndOffset, aOnlyOutputSelection);
end;
{ position on we insert selected CODE depending if the CODE contains interface
and/or implementation
hasIterface F F T T
hasImplemen. F T F T
-----------------------------------------
+unit +unit +unit +unit
+intf +intf CODE CODE
+impl CODE +impl +end.
CODE +end. +end.
+end.
}
// convert only formats complete units
// so we wrap the selected code in a fake unit.
// Only works if the inputCode include the full procedure,function,class or record declaration.
// Needed for formating include files or part of a file with tokens not supported by
// the jedi code format parser.
// {$I %DATE%} for example.
procedure TConverter.ConvertUsingFakeUnit(AFirstLineNumber:integer);
const
END_MARK_INTERFACE = 'tfaketjcf_intfc_end_mark;'; //<lower case required
END_MARK_IMPLEMENTATION = 'tfaketjcf_implm_end_mark;'; //<lower case required
FAKE_UNIT_NAME = 'fakeunitjcf;'; //<lower case required
var
sourceCode: string;
sourceCodeLowerCase: string;
lcStartIndex, lcEndIndex: integer;
hasInterface, hasImplementation: boolean;
liInterfacePos,liImplementationPos:integer;
procedure AddFakeUnit;
begin
sourceCode := sourceCode + 'unit ' + FAKE_UNIT_NAME + #10;
Dec(fiFirstLineNumber);
end;
procedure AddFakeInterface;
var
liUsesPos:integer;
begin
sourceCode := sourceCode + 'interface{:*_*:}' + #10;
Dec(fiFirstLineNumber);
liUsesPos:=PosEx('uses',sourceCodeLowerCase,1);
if (liUsesPos>0) and (liImplementationPos>0) and (liUsesPos<liImplementationPos)
and (length(sourceCodeLowerCase)>=liUsesPos+4) and CharIsWhiteSpace(sourceCodeLowerCase[liUsesPos+4]) then
begin
sourceCode := sourceCode + '// ' + END_MARK_INTERFACE + #10;
Dec(fiFirstLineNumber);
end
else
begin
sourceCode := sourceCode + 'type' + #10; // if there is only a class selected this is required
sourceCode := sourceCode + 'faketjcfifc=' + END_MARK_INTERFACE + #10;
Dec(fiFirstLineNumber, 2);
end;
end;
procedure AddFakeImplementation(AAdjustFirstLineNumber: boolean);
var
liUsesPos:integer;
begin
sourceCode := sourceCode + 'implementation{:*_*:}' + #10;
if AAdjustFirstLineNumber then
Dec(fiFirstLineNumber);
liUsesPos:=PosEx('uses',sourceCodeLowerCase,1);
if ((not hasInterface) and (not hasImplementation)) and (liUsesPos>0)
and (length(sourceCodeLowerCase)>=liUsesPos+4) and CharIsWhiteSpace(sourceCodeLowerCase[liUsesPos+4]) then
begin
sourceCode := sourceCode + '// ' + END_MARK_IMPLEMENTATION + #10;
if AAdjustFirstLineNumber then
Dec(fiFirstLineNumber);
end
else
begin
sourceCode := sourceCode + 'type' + #10;
sourceCode := sourceCode + 'faketjcfimpl=' + END_MARK_IMPLEMENTATION + #10;
if AAdjustFirstLineNumber then
Dec(fiFirstLineNumber, 2);
end;
end;
procedure AddFakeEnd;
begin
sourceCode := sourceCode + #10 + 'end{:*_*:}.' + #10;
end;
begin
//WRAPPING the inputCode in a fake unit
fiFirstLineNumber := AFirstLineNumber;
sourceCodeLowerCase := LowerCase(fsInputCode);
{$push}{$warn 5057 off}
hasInterface := HasStringAtLineStart(sourceCodeLowerCase, 'interface', liInterfacePos);
hasImplementation := HasStringAtLineStart(sourceCodeLowerCase, 'implementation', liImplementationPos);
{$pop}
sourceCode := '';
AddFakeUnit;
if hasInterface = False then
begin
AddFakeInterface;
if hasImplementation = False then
AddFakeImplementation(True);
end;
sourceCode := sourceCode + fsInputCode;
if (hasInterface = True) and (hasImplementation = False) then
AddFakeImplementation(False);
AddFakeEnd;
fsInputCode:=sourceCode;
Convert;
if ConvertError = False then
begin
sourceCodeLowerCase := LowerCase(OutputCode);
//DELETE FAKE lines from output
if hasInterface then
lcStartIndex := Pos(FAKE_UNIT_NAME, sourceCodeLowerCase) + length(FAKE_UNIT_NAME)
else
begin
if hasImplementation then
lcStartIndex := Pos(END_MARK_INTERFACE, sourceCodeLowerCase) + length(END_MARK_INTERFACE)
else
lcStartIndex := Pos(END_MARK_IMPLEMENTATION, sourceCodeLowerCase) + length(END_MARK_IMPLEMENTATION);
end;
//lcStartIndex := SkipToNextLine(sourceCodeLowerCase, lcStartIndex-1);
//formated code: tfaketjcf_implm_end_mark;#10#13#10 on windows
if sourceCodeLowerCase[lcStartIndex]=#10 then
begin
Inc(lcStartIndex);
if sourceCodeLowerCase[lcStartIndex]=#13 then
begin
Inc(lcStartIndex);
if sourceCodeLowerCase[lcStartIndex]=#10 then
Inc(lcStartIndex);
end
else if sourceCodeLowerCase[lcStartIndex]=#10 then
Inc(lcStartIndex);
end;
if hasInterface and not hasImplementation then
lcEndIndex := RPos('implementation{:*_*:}', sourceCodeLowerCase)
else
lcEndIndex := RPos('end{:*_*:}', sourceCodeLowerCase);
lcEndIndex := SkipLeftSpaces(sourceCodeLowerCase, lcEndIndex);
fsOutputCode:=Copy(OutputCode, lcStartIndex, lcEndIndex - lcStartIndex);
end;
end;
end.