-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy patheolconv.dpr
168 lines (150 loc) · 5.93 KB
/
eolconv.dpr
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
{ }
{ File: eolconv.dpr }
{ Function: Command line tool that converts all line endings of a text }
{ file to a specified style or to the default. }
{ Language: Delphi }
{ Author: Rudy Velthuis }
{ Copyright: (c) 2018 Rudy Velthuis }
{ }
{ License and disclaimer: }
{ }
{ Redistribution and use in source and binary forms, with or without }
{ modification, are permitted provided that the following conditions are }
{ met: }
{ }
{ * Redistributions of source code must retain the above copyright }
{ notice, this list of conditions and the following disclaimer. }
{ * Redistributions in binary form must reproduce the above copyright }
{ notice, this list of conditions and the following disclaimer in the }
{ documentation and/or other materials provided with the distribution. }
{ * Neither the name of Rudy Velthuis nor the names of any contributors }
{ of this software may be used to endorse or promote products derived }
{ from this software without specific prior written permission. }
{ }
{ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS }
{ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT }
{ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR }
{ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT }
{ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, }
{ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED }
{ TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR }
{ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF }
{ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING }
{ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF }
{ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. }
{ }
program eolconv;
{$APPTYPE CONSOLE}
{$R *.res}
uses
{$IFDEF DEBUG}
// Can be removed, see http://rvelthuis.de/programs/autoconsole.html
Velthuis.AutoConsole,
{$ENDIF }
Winapi.Windows,
System.SysUtils,
System.Classes,
EOLConv.Converters in 'EOLConv.Converters.pas';
const
{$IFDEF MSWINDOWS}
NL = #13#10;
{$ELSE}
NL = #10;
{$ENDIF}
resourcestring
SCouldNotOpenFile = 'Could not open file ''%s''';
SCouldNotWriteBackup = 'Could not write backup file for ''%s''';
SHelpDescription = 'EOLCONV: Convert line ends of text file.' + NL;
SHelp =
'Syntax: EOLCONV [options ...] Names[s]' + NL + NL +
'Options start with %s' + NL +
' -W Convert all to Windows line ends (CR+LF)%s' + NL +
' -U Convert all to Unix line ends (LF)%s' + NL +
' -H or -? Show this help' + NL;
procedure Message(const FormatStr: string; Arguments: array of const);
begin
Writeln(Format(FormatStr, Arguments));
end;
function ProcessFile(const FileName: string; LineEndType: TTextLineBreakStyle): Boolean;
var
I: Integer;
BackupName: string;
begin
Result := True;
// Check if file exists.
if not FileExists(FileName) then
begin
Message(SCouldNotOpenFile, [FileName]);
Exit(False);
end;
// Write backup file: fn+'.~1', fn+'.~2' etc. up to fn+'.~200'.
I := 1;
while FileExists(FileName + '.~' + IntToStr(I)) and (I < 200) do
Inc(I);
if I >= 200 then
begin
Message(SCouldNotWriteBackup, [FileName]);
Exit(False);
end
else
BackupName := FileName + '.~' + IntToStr(I);
if ConvertFile(FileName, FileName + '.out', LineEndType) then
begin
RenameFile(FileName, BackupName);
RenameFile(FileName + '.out', FileName);
end;
end;
procedure Help(Description: Boolean);
begin
if Description then
Writeln(SHelpDescription);
{$IFDEF MSWINDOWS}
Message(SHelp, ['- or /', ' (default)', '']);
{$ELSE}
Error(SHelp, ['-', '', ' (default)']);
{$ENDIF}
end;
procedure ProcessParams(const FileNames: TStringList; var LineEndType: TTextLineBreakStyle);
var
I: Integer;
begin
// No parameters: Help -- syntax only
if ParamCount = 0 then
begin
Help(False);
Halt(1);
end;
// -H or -?: help with description
if FindCmdLineSwitch('H', True) or FindCmdLineSwitch('?') then
begin
Help(True);
Halt(0);
end;
// -U: Unix line ends
if FindCmdLineSwitch('U', True) then
LineEndType := tlbsLF
// -W: Windows line ends
else if FindCmdLineSwitch('W', True) then
LineEndType := tlbsCRLF;
// No - (or /): file name.
for I := 1 to ParamCount do
if (ParamStr(I)[1] <> '-') {$IFDEF MSWINDOWS} and (ParamStr(I)[1] <> '/') {$ENDIF} then
FileNames.Add(ParamStr(I));
end;
var
FileNameList: TStringList;
LineEndType: TTextLineBreakStyle = {$IFDEF MSWINDOWS}tlbsCRLF{$ELSE}tlbsLF{$ENDIF};
FileName: string;
Success: Boolean = True;
begin
FileNameList := TStringList.Create;
try
ProcessParams(FileNameList, LineEndType);
for FileName in FileNameList do
Success := Success and ProcessFile(FileName, LineEndType);
finally
FileNameList.Free;
end;
if not Success then
Halt(1);
end.