-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCSV2XML.PAS
221 lines (215 loc) · 5.75 KB
/
CSV2XML.PAS
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
{ @author: Sylvain Maltais ([email protected])
@created: 2023
@website(https://www.gladir.com/csv-tools)
@abstract(Target: Turbo Pascal 7, Free Pascal 3.2)
}
Program CSV2XML(Input,Output);
Uses DOS;
Var
SourceCSV,TargetXML:Text;
CurrLine,CurrWord,CurrField,TableName,FileName,TFileName:String;
I:Integer;
First:Boolean;
Fields:Array[0..100]of String[75];
PosField,NumField:Integer;
NumRecord:LongInt;
Function Path2Name(S:String):String;
Var
D:DirStr;
N:NameStr;
E:ExtStr;
Begin
FSplit(S,D,N,E);
Path2Name:=N;
End;
Function Path2Ext(S:String):String;
Var
D:DirStr;
N:NameStr;
E:ExtStr;
Begin
FSplit(S,D,N,E);
Path2Ext:=E;
End;
BEGIN
If(ParamStr(1)='/?')or(ParamStr(1)='--help')or(ParamStr(1)='-h')or
(ParamStr(1)='/h')or(ParamStr(1)='/H')Then Begin
WriteLn('CSV2XML : Cette commande permet de convertir un fichier CSV en XML.');
WriteLn;
WriteLn('Syntaxe : CSV2XML source.CSV target.XML');
WriteLn;
WriteLn(' source.CSV Nom du fichier a convertir');
WriteLn(' target.XML Nom du fichier du r‚sultat');
WriteLn;
End
Else
Begin
NumRecord:=0;
NumField:=0;
FillChar(Fields,SizeOf(Fields),0);
If ParamCount>0Then Begin
TableName:=Path2Name(ParamStr(1));
FileName:=FExpand(ParamStr(1));
If Path2Ext(FileName)=''Then FileName:=FileName+'.CSV';
Assign(SourceCSV,FileName);
{$I-}Reset(SourceCSV);{$I+}
If IoResult<>0Then Begin
WriteLn('Fichier CSV introuvable !');
Halt;
End;
If ParamStr(2)=''Then Begin
First:=True;
WriteLn('<?xml version="1.0" encoding="UTF-8"?>');
WriteLn('<table>');
While Not EOF(SourceCSV)do Begin
ReadLn(SourceCSV,CurrLine);
If(First)Then Begin
First:=False;
CurrWord:='';
For I:=1 to Length(CurrLine)do Begin
If CurrLine[I]=','Then Begin
If(CurrWord[1]='"')and(CurrWord[Length(CurrWord)]='"')Then Begin
Fields[NumField]:=Copy(CurrWord,2,Length(CurrWord)-2);
Inc(NumField);
End
Else
Begin
Fields[NumField]:=CurrWord;
Inc(NumField);
End;
CurrWord:='';
End
Else
CurrWord:=CurrWord+CurrLine[I];
End;
CurrField:=CurrWord;
Fields[NumField]:=CurrWord;
Inc(NumField);
If NumField>High(Fields)Then Begin
WriteLn('Enregistrement trop grand !');
Halt;
End;
End
Else
Begin
WriteLn(' ':4,'<line>');
PosField:=0;
CurrWord:='';
For I:=1 to Length(CurrLine)do Begin
If CurrLine[I]=','Then Begin
If(CurrWord[1]='"')and(CurrWord[Length(CurrWord)]='"')Then Begin
Write(' ':8,'<',Fields[PosField],'>');
Write(Copy(CurrWord,2,Length(CurrWord)-2));
WriteLn('</',Fields[PosField],'>');
End
Else
Begin
Write(' ':8,'<',Fields[PosField],'>');
Write(CurrWord);
WriteLn('</',Fields[PosField],'>');
End;
CurrWord:='';
Inc(PosField);
End
Else
CurrWord:=CurrWord+CurrLine[I];
End;
Write(' ':8,'<',Fields[PosField],'>');
If(CurrWord[1]='"')and(CurrWord[Length(CurrWord)]='"')Then Begin
Write(Copy(CurrWord,2,Length(CurrWord)-2));
End
Else
Write(CurrWord);
WriteLn('</',Fields[PosField],'>');
WriteLn(' ':4,'</line>');
End;
End;
WriteLn('</table>');
Close(SourceCSV);
End
Else
Begin
TFileName:=FExpand(ParamStr(2));
If Path2Ext(TFileName)=''Then TFileName:=TFileName+'.XML';
Assign(TargetXML,TFileName);
{$I-}Rewrite(TargetXML); {$I+}
If IoResult<>0Then Begin
WriteLn('Impossible de cr‚er le fichier XML ',TFileName,' !');
Close(SourceCSV);
Halt;
End;
First:=True;
WriteLn(TargetXML,'<?xml version="1.0" encoding="UTF-8"?>');
WriteLn(TargetXML,'<table>');
While Not EOF(SourceCSV)do Begin
ReadLn(SourceCSV,CurrLine);
If(First)Then Begin
First:=False;
CurrWord:='';
For I:=1 to Length(CurrLine)do Begin
If CurrLine[I]=','Then Begin
If(CurrWord[1]='"')and(CurrWord[Length(CurrWord)]='"')Then Begin
Fields[NumField]:=Copy(CurrWord,2,Length(CurrWord)-2);
Inc(NumField);
End
Else
Begin
Fields[NumField]:=CurrWord;
Inc(NumField);
End;
CurrWord:='';
End
Else
CurrWord:=CurrWord+CurrLine[I];
End;
CurrField:=CurrWord;
Fields[NumField]:=CurrWord;
Inc(NumField);
If NumField>High(Fields)Then Begin
WriteLn('Enregistrement trop grand !');
Halt;
End;
End
Else
Begin
WriteLn(TargetXML,' ':4,'<line>');
PosField:=0;
CurrWord:='';
For I:=1 to Length(CurrLine)do Begin
If CurrLine[I]=','Then Begin
If(CurrWord[1]='"')and(CurrWord[Length(CurrWord)]='"')Then Begin
Write(TargetXML,' ':8,'<',Fields[PosField],'>');
Write(TargetXML,Copy(CurrWord,2,Length(CurrWord)-2));
WriteLn(TargetXML,'</',Fields[PosField],'>');
End
Else
Begin
Write(TargetXML,' ':8,'<',Fields[PosField],'>');
Write(TargetXML,CurrWord);
WriteLn(TargetXML,'</',Fields[PosField],'>');
End;
CurrWord:='';
Inc(PosField);
End
Else
CurrWord:=CurrWord+CurrLine[I];
End;
Write(TargetXML,' ':8,'<',Fields[PosField],'>');
If(CurrWord[1]='"')and(CurrWord[Length(CurrWord)]='"')Then Begin
Write(TargetXML,Copy(CurrWord,2,Length(CurrWord)-2));
End
Else
Write(TargetXML,CurrWord);
WriteLn(TargetXML,'</',Fields[PosField],'>');
WriteLn(TargetXML,' ':4,'</line>');
End;
End;
WriteLn(TargetXML,'</table>');
Close(TargetXML);
Close(SourceCSV);
End;
End
Else
WriteLn('ParamŠtre requis !');
End;
END.