-
Notifications
You must be signed in to change notification settings - Fork 1
/
CSV2WK1.PAS
191 lines (176 loc) · 4.59 KB
/
CSV2WK1.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
{ @author: Sylvain Maltais (support@gladir.com)
@created: 2023
@website(https://www.gladir.com/csv-tools)
@abstract(Target: Turbo Pascal 7, Free Pascal)
}
Program CSV2WK1(Input,Output);
{$A-}
Uses DOS,Strings;
Type
{Entete d'un fichier Lotus 1-2-3 }
HeaderLotus123=Record
TypeCode:Integer; { Code d'identification = 0 }
Length:Integer; { Longueur des donn'es = 2 }
Value:Integer; { Valeur = 1030 }
End;
{Texte d'un fichier Lotus 1-2-3}
LabelLotus123=Record
TypeCode:Integer; { Code d'identification = 15 }
Length:Integer; { Longueur des donn'es }
Format:Byte; { Format }
Column:Integer; { Colonne }
Row:Integer; { Ligne }
Text:Array[1..257]of Char; { Texte }
End;
{Entier d'un fichier Lotus 1-2-3 }
IntegerLotus123=Record
TypeCode:Integer; { Code d'identification = 13 }
Length:Integer; { Longueur des donnees }
Format:Byte; { Format }
Column:Integer; { Colonne }
Row:Integer; { Ligne }
Value:Integer; { Valeur }
End;
{Entier d'un fichier Lotus 1-2-3 }
DoubleLotus123=Record
TypeCode:Integer; { Code d'identification = 13 }
Length:Integer; { Longueur des donnees }
Format:Byte; { Format }
Column:Integer; { Colonne }
Row:Integer; { Ligne }
Value:Double; { Valeur }
End;
{Fin d'un fichier Lotus 1-2-3 }
EndLotus123=Record
TypeCode:Integer; { Code d'identification = 1 }
Length:Integer; { Longueur des donnees = 0 }
End;
Var
SourceCSV:Text;
TargetWK1:File;
CurrLine,CurrWord,FileName,TFileName:String;
CurrColumn,CurrRow:Integer;
I:Integer;
LDouble:DoubleLotus123;
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;
Procedure AddHeader;
Var
LHeader:HeaderLotus123;
Begin
LHeader.TypeCode:=0;
LHeader.Length:=2;
LHeader.Value:=1030;
BlockWrite(TargetWK1,LHeader,SizeOf(LHeader));
End;
Procedure AddLabel(CurrColumn,CurrRow:Integer;CurrWord:String);
Var
LLabel:LabelLotus123;
I:Integer;
Begin
FillChar(LLabel,SizeOf(LLabel),0);
LLabel.TypeCode:=$0F;
LLabel.Length:=Length(CurrWord)+7;
LLabel.Format:=$FF;
LLabel.Column:=CurrColumn;
LLabel.Row:=CurrRow;
LLabel.Text[1]:='''';
For I:=1 to Length(CurrWord) do LLabel.Text[i+1]:=CurrWord[I];
BlockWrite(TargetWK1,LLabel,Length(CurrWord)+11);
End;
Procedure AddEnd;
Var
LEnd:EndLotus123;
Begin
LEnd.TypeCode:=1;
LEnd.Length:=0;
BlockWrite(TargetWK1,LEnd,SizeOf(LEnd));
End;
BEGIN
If(ParamStr(1)='/?')or(ParamStr(1)='--help')or(ParamStr(1)='-h')or
(ParamStr(1)='/h')or(ParamStr(1)='/H')Then Begin
WriteLn('CSV2WK1 : Cette commande permet de convertir un fichier CSV en WK1 de Lotus.');
WriteLn;
WriteLn('Syntaxe : CSV2WK1 source.CSV target.WK1');
WriteLn;
WriteLn(' fichier.CSV Nom du fichier a convertir');
WriteLn(' fichier.WK1 Nom du fichier du resultat');
WriteLn;
End
Else
Begin
If ParamCount>0Then Begin
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
WriteLn('Destination attendue !');
Halt;
End
Else
Begin
CurrRow:=0;
TFileName:=FExpand(ParamStr(2));
If Path2Ext(TFileName)=''Then TFileName:=TFileName+'.WK1';
Assign(TargetWK1,TFileName);
{$I-}Rewrite(TargetWK1,1); {$I+}
If IoResult<>0Then Begin
WriteLn('Impossible de cr‚er le fichier WK1 ',TFileName,' !');
Close(SourceCSV);
Halt;
End;
AddHeader;
While Not EOF(SourceCSV)do Begin
ReadLn(SourceCSV,CurrLine);
CurrColumn:=0;
CurrWord:='';
For I:=1 to Length(CurrLine)do Begin
If CurrLine[I]=','Then Begin
If(CurrWord[1]='"')and(CurrWord[Length(CurrWord)]='"')Then Begin
AddLabel(CurrColumn,CurrRow,Copy(CurrWord,2,Length(CurrWord)-2));
Inc(CurrColumn);
End
Else
Begin
AddLabel(CurrColumn,CurrRow,CurrWord);
Inc(CurrColumn);
End;
CurrWord:='';
End
Else
CurrWord:=CurrWord+CurrLine[I];
End;
AddLabel(CurrColumn,CurrRow,CurrWord);
Inc(CurrColumn);
Inc(CurrRow);
End;
AddEnd;
Close(TargetWK1);
Close(SourceCSV);
End;
End
Else
WriteLn('ParamŠtre requis !');
End;
END.