unit FileConverter; {(*} (*------------------------------------------------------------------------------ Delphi Code formatter source code The Original Code is Converter.pas, released January 2001. 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 ------------------------------------------------------------------------------*) {*)} {$mode delphi} interface uses Classes, SysUtils, // local Converter, ConvertTypes; { AFS 7 July 04 rewrote this as a wrapper for the string->string converter So basically it deals with file issues and delegates the convertion to the wrapped TConverter } type TFileConverter = class(TObject) private { the string-> string converter } fcConverter: TConverter; { state } fOnStatusMessage: TStatusMessageProc; peBackupMode: TBackupMode; peSourceMode: TSourceMode; { properties } fsInput: string; fsOriginalFileName: string; fsOutFileName: string; fbYesAll: boolean; fbGuiMessages: Boolean; fbAbort: boolean; fiConvertCount: integer; fOnIncludeFile: TOnIncludeFile; procedure SendStatusMessage(const psUnit, psMessage: string; const peMessageType: TStatusMessageType; const piY, piX: integer); procedure GetFileNames(const psDir: string; psFiles: TStrings); procedure GetDirNames(const psDir: string; psFiles: TStrings); function GetOnStatusMessage: TStatusMessageProc; procedure SetOnStatusMessage(const Value: TStatusMessageProc); procedure FinalSummary; function PreProcessChecks(const psInputFileName: string): boolean; protected function OriginalFileName: string; procedure ProcessDirectory(const psDir: string); public constructor Create; destructor Destroy; override; procedure ProcessFile(const psInputFileName: string); procedure Convert; procedure Clear; function ConvertError: Boolean; function TokenCount: integer; property BackupMode: TBackupMode Read peBackupMode Write peBackupMode; property SourceMode: TSourceMode Read peSourceMode Write peSourceMode; property Input: string Read fsInput Write fsInput; property YesAll: boolean read fbYesAll write fbYesAll; property GuiMessages: Boolean read fbGuiMessages write fbGuiMessages; property Abort: boolean read fbAbort write fbAbort; // details of the last file converted property OutFileName: string Read fsOutFileName; property OnStatusMessage: TStatusMessageProc read GetOnStatusMessage write SetOnStatusMessage; property OnIncludeFile: TOnIncludeFile Read fOnIncludeFile Write fOnIncludeFile; end; implementation uses { local } JcfStringUtils, FileUtil, JcfMiscFunctions, JcfLog, JcfRegistrySettings, JcfSettings, JcfUnicodeFiles, JcfUiTools, System.UITypes, jcfbaseConsts; constructor TFileConverter.Create; begin inherited; fcConverter := TConverter.Create; fcConverter.OnStatusMessage := SendStatusMessage; end; destructor TFileConverter.Destroy; begin FreeAndNil(fcConverter); inherited; end; function TFileConverter.PreProcessChecks(const psInputFileName: string): boolean; var lsTemp: string; begin Result := False; if psInputFileName = '' then begin SendStatusMessage('', lisMsgSelectAFile, mtInputError, -1, -1); exit; end; if not FileExists(psInputFileName) then begin SendStatusMessage(psInputFileName, Format(lisMsgTheFileDoesNotExist, [psInputFileName]), mtInputError, -1, -1); exit; end; if FileSize(psInputFileName) < 1 then begin SendStatusMessage(psInputFileName, Format(lisMsgTheFileIsEmpty, [psInputFileName]), mtInputError, -1, -1); exit; end; if (SourceMode <> fmSingleFile) then begin lsTemp := PathExtractFileNameNoExt(psInputFileName); if GetRegSettings.FileIsExcluded(lsTemp) then begin Log.Write('Excluded file: ' + psInputFileName); exit; end; end; { all kinds of chaos ensues if you work with readonly files, for e.g. you can rename them to .bak, but on the next run you will be unable to delete the old .bak files. They are only safe when the source is read not written, ie "output to separate file" backup mode } if (BackupMode <> cmSeparateOutput) and (FileIsReadOnly(psInputFileName)) then begin Log.WriteError('File: ' + psInputFileName + ' cannot be processed as it is read only'); exit; end; result := True; end; procedure TFileConverter.ProcessFile(const psInputFileName: string); var lsMessage, lsOut: string; wRes: word; lbFileIsChanged: boolean; lsOutType: string; lsSourceCode: String; leContentType: TFileContentType; begin // do checks if not PreProcessChecks(psInputFileName) then exit; // notify owner lsMessage := Format(lisMsgFormattingFile, [psInputFileName]);; if GetRegSettings.LogLevel in [eLogFiles, eLogTokens] then Log.Write(lsMessage); SendStatusMessage(psInputFileName, lsMessage, mtProgress, -1, -1); // convert in memory fsOriginalFileName := psInputFileName; ReadTextFile(psInputFileName, lsSourceCode, leContentType); fcConverter.FileName := psInputFileName; fcConverter.InputCode := lsSourceCode; fcConverter.GuiMessages := GuiMessages; fcConverter.OnIncludeFile := OnIncludeFile; fcConverter.Convert; // was it converted ? if ConvertError then exit; Inc(fiConvertCount); { check if the file has changed. If not, do not write. This is kinder to source control systems (CVS, SVN etc.) that check the file timestamp } lbFileIsChanged := (fcConverter.InputCode <> fcConverter.OutputCode); lsOut := GetRegSettings.GetOutputFileName(psInputFileName, peBackupMode); // check if an output/backup file must be removed if BackupMode <> cmInplace then begin if lsOut = '' then begin SendStatusMessage(psInputFileName, lisMsgNoOutputBackupFileSpecified, mtInputError, -1, -1); exit; end; if lbFileIsChanged and FileExists(lsOut) then begin if YesAll then wRes := mrYes else begin if BackupMode = cmInPlaceWithBackup then lsOutType := lisMsgBackup else lsOutType := lisMsgOutput; wRes := GetUI.MessageDlgUI(Format(lisMsgExistsAlreadyRemoveIt, [lsOutType, lisMsgFile, lsOut])); end; if wRes = mrAll then begin YesAll := True; wRes := mrYes; end; if wRes = mrYes then begin if not DeleteFile(lsOut) then raise Exception.Create(Format(lisMsgFailedToDelete,[lsOutType, lisMsgFile, lsOut])); end else if wRes = mrNo then begin exit; end else if wRes = mrAbort then begin fbAbort := True; exit; end; end; end; // now, depending on mode, write the output to new/old file case BackupMode of cmInPlace: begin fsOutFileName := psInputFileName; if lbFileIsChanged then begin // delete the old one, write the new one DeleteFile(psInputFileName); WriteTextFile(psInputFileName, fcConverter.OutputCode, leContentType); end; end; cmInPlaceWithBackup: begin fsOutFileName := psInputFileName; if lbFileIsChanged then begin { rename the original file to the backup file name, write processed code back to the original file } if not RenameFile(psInputFileName, lsOut) then begin raise Exception.Create(Format(lisMsgCouldNorRenameSourceFile,[psInputFileName,lsOut])); end; WriteTextFile(psInputFileName, fcConverter.OutputCode, leContentType); end; end; cmSeparateOutput: begin fsOutFileName := lsOut; { simple. Write to a new file doesn't matter if it;s not changed } WriteTextFile(lsOut, fcConverter.OutputCode, leContentType); end; else Assert(False, 'Bad backup mode'); end; end; procedure TFileConverter.ProcessDirectory(const psDir: string); var lsMessage: string; lsNames: TStringList; lsDir: string; liLoop: integer; begin if not DirectoryExists(psDir) then begin SendStatusMessage('', Format(lisMsgDirectoryDoesNotExist,[psDir]), mtInputError, -1, -1); exit; end; if GetRegSettings.DirIsExcluded(GetLastDir(psDir)) then begin Log.Write('Excluded dir: ' + psDir); exit; end; lsDir := IncludeTrailingPathDelimiter(psDir); lsMessage := Format(lisMsgProcessingDirectory,[lsDir]); //if Settings.Log.LogLevel in [eLogFiles, eLogTokens] then Log.Write(lsMessage); SendStatusMessage('', lsMessage, mtProgress, -1, -1); lsNames := TStringList.Create; try { finally free } GetFileNames(lsDir, lsNames); for liLoop := 0 to lsNames.Count - 1 do begin ProcessFile(lsDir + lsNames[liLoop]); if fbAbort then break; GetUI.UpdateGUI; end; { all subdirs } if SourceMode = fmDirectoryRecursive then begin lsNames.Clear; GetDirNames(lsDir, lsNames); for liLoop := 0 to lsNames.Count - 1 do begin ProcessDirectory(lsDir + lsNames[liLoop]); if fbAbort then break; end; end; finally lsNames.Free; end; end; procedure TFileConverter.GetFileNames(const psDir: string; psFiles: TStrings); var rSearch: TSearchRec; lsName, lsExt, lsSearch: string; bDone: boolean; begin Assert(psDir <> ''); Assert(psFiles <> nil); lsSearch := psDir + AllFilesMask; { for all pas files in the dir } FillChar(rSearch{%H-}, Sizeof(TSearchRec), 0); bDone := (FindFirst(lsSearch, 0, rSearch) <> 0); while not bDone do begin lsName := rSearch.Name; Assert(lsName <> ''); if (rSearch.Attr and faDirectory > 0) then continue; lsExt := ExtractFileExt(lsName); if FormattingSettings.Clarify.ExtensionIsFormatted(lsExt) then psFiles.Add(lsName); bDone := (FindNext(rSearch) <> 0); Assert(bDone or (rSearch.Name <> lsName)); end; FindClose(rSearch); end; procedure TFileConverter.GetDirNames(const psDir: string; psFiles: TStrings); var rSearch: TSearchRec; lsSearch: string; bDone: boolean; begin Assert(psDir <> ''); Assert(psFiles <> nil); lsSearch := psDir + AllFilesMask; FillChar(rSearch{%H-}, Sizeof(TSearchRec), 0); bDone := (FindFirst(lsSearch, faDirectory, rSearch) <> 0); while not bDone do begin if (rSearch.Attr and faDirectory > 0) and (rSearch.Name <> '.') and (rSearch.Name <> '..') then psFiles.Add(rSearch.Name); bDone := (FindNext(rSearch) <> 0); end; FindClose(rSearch); end; procedure TFileConverter.Convert; var dwStart: QWord; dwElapsed: DWord; begin if GetRegSettings.LogTime then dwStart := GetTickCount64 else dwStart := 0; fbAbort := False; fiConvertCount := 0; { all processors must check thier inclusion settings as this may have changed from the UI } { process file(s) } case SourceMode of fmSingleFile: ProcessFile(Input); fmDirectory, fmDirectoryRecursive: begin ProcessDirectory(Input); end else raise Exception.Create(lisMsgBadFileRecurseType); end; if GetRegSettings.LogTime then begin dwElapsed := GetTickCount64 - dwStart; Log.Write('Run took ' + FloatToStr(dwElapsed / 1000) + ' seconds') end; FinalSummary; Log.CloseLog; if GetRegSettings.ViewLogAfterRun then GetRegSettings.ViewLog; end; function TFileConverter.OriginalFileName: string; begin Result := fsOriginalFileName; end; procedure TFileConverter.FinalSummary; var lsMessage: string; begin if fiConvertCount = 0 then begin if ConvertError then lsMessage := lisMsgAbortedDueToError else lsMessage := lisMsgNothingDone; end else if fbAbort then lsMessage := Format(lisMsgAbortedAfter, [fiConvertCount]) else if fiConvertCount > 1 then lsMessage := Format(lisMsgFinishedProcessing, [fiConvertCount]) else lsMessage := ''; if lsMessage <> '' then begin SendStatusMessage('', lsMessage, mtProgress, -1, -1); Log.EmptyLine; Log.Write(lsMessage); end; end; procedure TFileConverter.Clear; begin fcConverter.Clear; end; function TFileConverter.ConvertError: Boolean; begin Result := fcConverter.ConvertError; end; function TFileConverter.TokenCount: integer; begin Result := fcConverter.TokenCount; end; function TFileConverter.GetOnStatusMessage: TStatusMessageProc; begin Result := fOnStatusMessage; end; procedure TFileConverter.SetOnStatusMessage(const Value: TStatusMessageProc); begin fOnStatusMessage := Value; end; procedure TFileConverter.SendStatusMessage(const psUnit, psMessage: string; const peMessageType: TStatusMessageType; const piY, piX: integer); var lsUnit: string; begin if Assigned(fOnStatusMessage) then begin lsUnit := psUnit; if lsUnit = '' then lsUnit := OriginalFileName; fOnStatusMessage(lsUnit, psMessage, peMessageType, piY, piX); end; end; end.