summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/csvsimple/csvsimple.sty
blob: 67f48ed16925ba19319d606bc980bde8112035dc (plain)
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
%% The LaTeX package csvsimple - version 1.03 (2011/11/04)
%% csvsimple.sty: Simple LaTeX CSV file processing
%%
%% -------------------------------------------------------------------------------------------
%% Copyright (c) 2008-2011 by Prof. Dr. Dr. Thomas F. Sturm <thomas dot sturm at unibw dot de>
%% -------------------------------------------------------------------------------------------
%%
%% This work may be distributed and/or modified under the
%% conditions of the LaTeX Project Public License, either version 1.3
%% of this license or (at your option) any later version.
%% The latest version of this license is in
%%   http://www.latex-project.org/lppl.txt
%% and version 1.3 or later is part of all distributions of LaTeX
%% version 2005/12/01 or later.
%%
%% This work has the LPPL maintenance status `author-maintained'.
%%
%% This work consists of all files listed in README
%%
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{csvsimple}[2011/11/04 version 1.03 LaTeX CSV file processing]

\RequirePackage{pgfkeys,ifthen}


%---- general

\def\csv@warning#1{\PackageWarning{csvsimple}{#1}}

\newread\csv@file
\newcounter{csvinputline}
\newcounter{csvrow}
\newcounter{csvcol}

\def\csv@empty{}

\def\csv@addto@macro#1#2{%
  \begingroup%
    \toks@\expandafter{#1#2}%
    \xdef#1{\the\toks@}%
  \endgroup%
  }

\long\def\csviffirstrow#1#2{%
  \ifnum\c@csvrow=1%
    \long\def\csviffirstrow@doit{#1}%
  \else%
    \long\def\csviffirstrow@doit{#2}%
  \fi%
  \csviffirstrow@doit%
}

\long\def\csvifoddrow#1#2{%
  \ifodd\c@csvrow%
    \long\def\csvifoddrow@doit{#1}%
  \else%
    \long\def\csvifoddrow@doit{#2}%
  \fi%
  \csvifoddrow@doit%
}

\def\csv@and{&}

\def\csvlinetotablerow{%
  \setcounter{csvcol}{0}%
  \stepcounter{csvcol}\csv@current@col%
  \whiledo{\thecsvcol<\csv@columncount}{\csv@and\stepcounter{csvcol}\csv@current@col}%
}


%---- breaking lines

% This command removes leading and trailing spaces from <Token>. I found
% the original code on the web. The original author was Michael Downes, who
% provided the code as an answer to 'around the bend' question #15.
\catcode`\Q=3
\def\TrimSpaces#1{%
  \begingroup%
  \aftergroup\toks\aftergroup0\aftergroup{%
  \expandafter\trimb\expandafter\noexpand#1Q Q}%
  \global\edef#1{\the\toks0}%
}
\def\trimb#1 Q{\trimc#1Q}
\def\trimc#1Q#2{\afterassignment\endgroup \vfuzz\the\vfuzz#1}
\catcode`\Q=11

% needs \csv@termination
\def\csv@breakline#1,{%
  \ifx\csv@termination#1\let\nextcol=\relax\else%
    \let\nextcol=\csv@breakline%
    \stepcounter{csvcol}%
    \edef\csv@col@body{#1}\TrimSpaces\csv@col@body%
    \expandafter\xdef\csname csvcol\roman{csvcol}\endcsname{\csv@col@body}%
  \fi%
  \nextcol%
  }

% adds \csv@termination
\def\csv@scanline#1{%
  \setcounter{csvcol}{0}%
  \csv@breakline#1,\csv@termination,%
  }

% expands a CSV line and scans content
\def\csv@escanline#1{%
  \edef\@csv@scanline{\noexpand\csv@scanline{#1}}%
  \@csv@scanline%
  }


%---- the loop

\def\csv@AtEndLoop{\csv@addto@macro\@endloophook}
\let\@endloophook\csv@empty

\def\csv@current@col{\csname csvcol\roman{csvcol}\endcsname}

% head names
\def\set@csv@head{%
  \toks0={\gdef##1}%
  \toks1=\expandafter{\csname csvcol\roman{csvcol}\endcsname}%
  \edef\temp{\noexpand\pgfkeysdef{/csv head/\csv@current@col}{\the\toks0{\the\toks1}\noexpand\csv@AtEndLoop{\the\toks0{}}}}%
  \temp%
}

% head line
\def\csv@processheadline{%
  \csvreadnext%
  \csv@escanline{\csvline}%
  \xdef\csv@columncount{\thecsvcol}%
  \setcounter{csvcol}{0}%
  \loop%
    \stepcounter{csvcol}%
    \set@csv@head%
  \ifnum\thecsvcol<\csv@columncount\repeat%
  \toks@=\expandafter{\csv@columnnames}%
  \edef\csv@processkeys{\noexpand\pgfkeys{/csv head/.cd,\the\toks@}}%
  \csv@processkeys%
  \csv@posthead%
}

% check filter
\def\csv@checkfilter{%
  \csv@prefiltercommand%
  \csv@iffilter{%
    \stepcounter{csvrow}%
    \let\csv@usage=\csv@do@linecommand%
  }{}%
}

\def\csv@truefilter#1#2{#1}

\def\csv@falsefilter#1#2{#2}

\def\csvfilteraccept{\global\let\csv@iffilter=\csv@truefilter}

\def\csvfilterreject{\global\let\csv@iffilter=\csv@falsefilter}

% check columns
\def\csv@checkcolumncount{%
  \ifnum\thecsvcol=\csv@columncount%
    \csv@checkfilter%
  \else
    \csv@columncounterror%
  \fi%
}

\def\csv@nocheckcolumncount{%
  \csv@checkfilter%
}

% normal line
\def\csv@do@linecommand{%
  \csv@do@latepostline%
  \csv@do@preline%
  \csv@body%
  \csv@do@postline%
}

\gdef\csvreadnext{%
  \global\read\csv@file to\csvline%
  \stepcounter{csvinputline}%
}

\let\csv@par=\par

% reads and processes a CSV file
\def\csvloop#1{%
  % reset
  \global\let\@endloophook\csv@empty%
  % options
  \csvset{default,every csv,#1}%
  \csv@prereading%
  \setcounter{csvinputline}{0}%
  % start reading
  \openin\csv@file=\csv@filename\relax%
  \ifeof\csv@file%
    \csv@warning{File \csv@filename\ not existent, not readable, or empty!}%
  \else%
    % the head line
    \csv@opt@processheadline%
  \fi%
  %
  \setcounter{csvrow}{0}%
  \gdef\csv@do@preline{%
    \csv@prefirstline%
    \global\let\csv@do@preline=\csv@preline%
  }%
  \gdef\csv@do@postline{%
    \csv@postfirstline%
    \global\let\csv@do@postline=\csv@postline%
  }%
  \gdef\csv@do@@latepostline{%
    \csv@latepostfirstline%
    \global\let\csv@do@latepostline=\csv@latepostline%
  }%
  \gdef\csv@do@latepostline{%
    \csv@lateposthead%
    \global\let\csv@do@latepostline=\csv@do@@latepostline%
  }%
  % command for the reading loop
  \gdef\csv@iterate{%
    \let\csv@usage=\csv@empty%
    \csvreadnext%
    \ifeof\csv@file%
      \global\let\csv@next=\csv@empty%
    \else%
      \global\let\csv@next=\csv@iterate%
      \if\csv@par\csvline\relax%
        \else%
        \csv@escanline{\csvline}%
        % check and decide
        \csv@opt@checkcolumncount%
      \fi%
    \fi%
    % do or do not
    \csv@usage%
    \csv@next}%
  \ifeof\csv@file%
    \global\let\csv@next=\csv@empty%
  \else%
    \global\let\csv@next=\csv@iterate%
  \fi%
  \csv@next%
  \closein\csv@file%
  \@endloophook%
  \csv@latepostlastline%
  \csv@postreading%
}

% user command
\long\def\csv@reader[#1]#2#3#4{%
  \global\long\def\csv@@body{#4}%
  \csvloop{#1,file={#2},column names={#3},command=\csv@@body}%
}

\def\csvreader{%
  \@ifnextchar[{\csv@reader}{\csv@reader[]}}


%---- keys

\pgfkeys{/handlers/.gstore in/.code=\pgfkeysalso{\pgfkeyscurrentpath/.code=\gdef#1{##1}}}
\pgfkeys{/csv/.is family}
\pgfkeys{/csv head/.is family}

\def\csvset{\pgfqkeys{/csv}}
\def\csvheadset{\pgfqkeys{/csv head}}

\csvset{%
  file/.gstore in=\csv@filename,%
  column names reset/.code={\gdef\csv@columnnames{}},%
  column names/.code={%
      \toks0=\expandafter{\csv@columnnames}%
      \def\temp{#1}\toks1=\expandafter{\temp}%
      \xdef\csv@columnnames{\the\toks0,\the\toks1}%
     },
  command/.gstore in=\csv@body,
  check column count/.code={\ifthenelse{\equal{#1}{true}}{%
    \global\let\csv@opt@checkcolumncount=\csv@checkcolumncount}{%
    \global\let\csv@opt@checkcolumncount=\csv@nocheckcolumncount}},
  check column count/.default=true,
  on column count error/.gstore in=\csv@columncounterror,
  head/.code={\ifthenelse{\equal{#1}{true}}{%
    \global\let\csv@opt@processheadline=\csv@processheadline%
    \pgfkeysalso{check column count}}{%
    \global\let\csv@opt@processheadline=\csv@empty%
    \pgfkeysalso{check column count=false,late after head=}}},
  head/.default=true,
  column count/.gstore in=\csv@columncount,
  filter/.code={%
    \def\temp{#1}\toks@=\expandafter{\temp}%
    \xdef\csv@iffilter{\noexpand\ifthenelse{\the\toks@}}},
  nofilter/.code={\csvfilteraccept},
  filter reject all/.code={\csvfilterreject},
  filter accept all/.code={\csvfilteraccept},
  before filter/.gstore in=\csv@prefiltercommand,
  before first line/.gstore in=\csv@prefirstline,
  before line/.code={\gdef\csv@preline{#1}\pgfkeysalso{before first line=#1}},
  after first line/.gstore in=\csv@postfirstline,
  after line/.code={\gdef\csv@postline{#1}\pgfkeysalso{after first line=#1}},
  late after first line/.gstore in=\csv@latepostfirstline,
  late after last line/.gstore in=\csv@latepostlastline,
  late after line/.code={\gdef\csv@latepostline{#1}\pgfkeysalso{late after first line=#1,late after last line=#1}},
  after head/.gstore in=\csv@posthead,
  late after head/.gstore in=\csv@lateposthead,
  before reading/.gstore in=\csv@prereading,
  after reading/.gstore in=\csv@postreading,
  before table/.gstore in=\csv@pretable,
  after table/.gstore in=\csv@posttable,
  table head/.gstore in=\csv@tablehead,
  table foot/.gstore in=\csv@tablefoot,
  %
  % default for reset
  default/.style={
    file=unknown.csv,
    command=\csvline,
    column names reset,
    head,
    on column count error=,
    nofilter,
    before filter=,
    before line=,
    after line=,
    late after line=,
    after head=,
    late after head=,
    before reading=,
    after reading=,
    before table=,
    after table=,
    table head=,
    table foot=
    },
  default,
  %
  % styles
  every csv/.style={},
  nohead/.style={head=false},
  nocheckcolumncount/.style={checkcolumncount=false},
  warn on column count error/.style={on column count error={\csv@warning{>\thecsvcol< instead of >\csv@columncount< columns for input line >\thecsvinputline< of file >\csv@filename<}}},
  filter equal/.style 2 args={filter=\equal{#1}{#2}},
  filter not equal/.style 2 args={filter=\not\equal{#1}{#2}},
  tabular/.style={
    before reading=\csv@pretable\begin{tabular}{#1}\csv@tablehead,
    after reading=\csv@tablefoot\end{tabular}\csv@posttable,
    late after line=\\},
  centered tabular/.style={
    before reading=\begin{center}\csv@pretable\begin{tabular}{#1}\csv@tablehead,
    after reading=\csv@tablefoot\end{tabular}\csv@posttable\end{center},
    late after line=\\},
  longtable/.style={
    before reading=\csv@pretable\begin{longtable}{#1}\csv@tablehead,
    after reading=\csv@tablefoot\end{longtable}\csv@posttable,
    late after line=\\},
  autotabular/.style={
    file=#1,
    after head=\csv@pretable\begin{tabular}{|*{\csv@columncount}{l|}}\csv@tablehead,
    table head=\hline\csvlinetotablerow\\\hline,
    late after line=\\,
    table foot=\\\hline,
    late after last line=\csv@tablefoot\end{tabular}\csv@posttable,
    command=\csvlinetotablerow},
  autolongtable/.style={
    file=#1,
    after head=\csv@pretable\begin{longtable}{|*{\csv@columncount}{l|}}\csv@tablehead,
    table head=\hline\csvlinetotablerow\\\hline\endhead\hline\endfoot,
    late after line=\\,
    late after last line=\csv@tablefoot\end{longtable}\csv@posttable,
    command=\csvlinetotablerow},
  tabbing/.style={
    before reading=\csv@pretable\begin{tabbing}\csv@tablehead,
    after reading=\csv@tablefoot\end{tabbing}\csv@posttable,
    late after line=\\,
    late after last line=},
  centered tabbing/.style={
    before reading=\begin{center}\csv@pretable\begin{tabbing}\csv@tablehead,
    after reading=\csv@tablefoot\end{tabbing}\csv@posttable\end{center},
    late after line=\\,
    late after last line=}
}

\def\csvautotabular#1{\csvloop{autotabular={#1}}}

\def\csvautolongtable#1{\csvloop{autolongtable={#1}}}

\def\csvstyle#1#2{\csvset{#1/.style={#2}}}

\def\csvnames#1#2{\csvset{#1/.style={column names={#2}}}}