]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/table.C
make dispatch_result_t ctor of DispatchResult explicit
[lyx.git] / src / tex2lyx / table.C
1 /**
2  * \file table.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  * \author Jean-Marc Lasgouttes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 // {[(
13
14 #include <config.h>
15
16 #include "tex2lyx.h"
17
18 #include <cctype>
19 #include <fstream>
20 #include <iostream>
21 #include <sstream>
22 #include <vector>
23 #include <map>
24
25 using std::cerr;
26 using std::endl;
27 using std::istringstream;
28 using std::ostream;
29 using std::ostringstream;
30 using std::string;
31 using std::vector;
32
33 #include "mathed/math_gridinfo.h"
34
35 // filled in preamble.C
36 std::map<char, int> special_columns;
37
38
39 namespace {
40
41 int string2int(string const & s, int deflt = 0)
42 {
43         istringstream is(s);
44         int i = deflt;
45         is >> i;
46         return i;
47 }
48
49
50 string read_hlines(Parser & p)
51 {
52         ostringstream os;
53         p.skip_spaces();
54         while (p.good()) {
55                 if (p.next_token().cs() == "hline") {
56                         p.get_token();
57                         os << "\\hline";
58                 } else if (p.next_token().cs() == "cline") {
59                         p.get_token();
60                         os << "\\cline{" << p.verbatim_item() << "}";
61                 } else
62                         break;
63                 p.skip_spaces();
64         };
65         //cerr << "read_hlines(), read: '" << os.str() << "'\n";
66         //cerr << "read_hlines(), next token: " << p.next_token() << "\n";
67         return os.str();
68 }
69
70
71 /* rather brutish way to code table structure in a string:
72
73   \begin{tabular}{ccc}
74     1 & 2 & 3\\ \hline
75     \multicolumn{2}{c}{4} & 5 //
76     6 & 7 \\
77   \end{tabular}
78
79  gets "translated" to:
80
81   1 TAB 2 TAB 3 LINE
82   \hline HLINE  TAB 5 LINE
83   5 TAB 7 LINE
84 */
85
86 char const TAB   = '\001';
87 char const LINE  = '\002';
88 char const HLINE = '\004';
89
90
91 void handle_colalign(Parser & p, vector<ColInfo> & colinfo)
92 {
93         if (p.get_token().cat() != catBegin)
94                 cerr << "wrong syntax for table column alignment. '{' expected\n";
95
96         char nextalign = 'b';
97         bool leftline = false;
98         for (Token t=p.get_token(); p.good() && t.cat() != catEnd; t = p.get_token()){
99 #ifdef FILEDEBUG
100                 cerr << "t: " << t << "  c: '" << t.character() << "'\n";
101 #endif
102
103                 switch (t.character()) {
104                         case 'c':
105                         case 'l':
106                         case 'r': {
107                                 ColInfo ci;
108                                 ci.align = t.character();
109                                 if (colinfo.size() && colinfo.back().rightline > 1) {
110                                         ci.leftline = true;
111                                         --colinfo.back().rightline;
112                                 }
113                                 colinfo.push_back(ci);
114                                 break;
115                         }
116                         case 'p':
117                                 colinfo.push_back(ColInfo());
118                                 colinfo.back().align = nextalign;
119                                 colinfo.back().width = p.verbatim_item();
120                                 nextalign = 'b';
121                                 break;
122                         case '|':
123                                 if (colinfo.empty())
124                                         leftline = true;
125                                 else
126                                         ++colinfo.back().rightline;
127                                 break;
128                         case '>': {
129                                 string s = p.verbatim_item();
130                                 if (s == "\\raggedleft ")
131                                         nextalign = 'l';
132                                 else if (s == "\\raggedright ")
133                                         nextalign = 'r';
134                                 else
135                                         cerr << "unknown '>' column '" << s << "'\n";
136                                 break;
137                         }
138                         default:
139                                 if (special_columns.find(t.character()) != special_columns.end()) {
140                                         ColInfo ci;
141                                         ci.align = 'c';
142                                         ci.special += t.character();
143                                         int const nargs = special_columns[t.character()];
144                                         for (int i = 0; i < nargs; ++i)
145                                                 ci.special += "{" + p.verbatim_item() + "}";
146                                         //cerr << "handling special column '" << t << "' " << nargs
147                                         //      << "  '" << ci.special << "'\n";
148                                         colinfo.push_back(ci);
149                                 } else {
150                                         cerr << "ignoring special separator '" << t << "'\n";
151                                 }
152                                 break;
153                         }
154         }
155         if (colinfo.size() && leftline)
156                 colinfo[0].leftline = true;
157 }
158
159
160 } // anonymous namespace
161
162
163 void parse_table(Parser & p, ostream & os, unsigned flags)
164 {
165         string hlines;
166
167         while (p.good()) {
168                 Token const & t = p.get_token();
169
170 #ifdef FILEDEBUG
171                 cerr << "t: " << t << " flags: " << flags << "\n";
172 #endif
173
174                 //
175                 // cat codes
176                 //
177                 if (t.cat() == catMath) {
178                         // we are inside some text mode thingy, so opening new math is allowed
179                         Token const & n = p.get_token();
180                         if (n.cat() == catMath) {
181                                 // TeX's $$...$$ syntax for displayed math
182                                 os << "\\[";
183                                 parse_math(p, os, FLAG_SIMPLE, MATH_MODE);
184                                 os << "\\]";
185                                 p.get_token(); // skip the second '$' token
186                         } else {
187                                 // simple $...$  stuff
188                                 p.putback();
189                                 os << '$';
190                                 parse_math(p, os, FLAG_SIMPLE, MATH_MODE);
191                                 os << '$';
192                         }
193                 }
194
195                 else if (t.cat() == catLetter ||
196                                t.cat() == catSpace ||
197                                t.cat() == catSuper ||
198                                t.cat() == catSub ||
199                                t.cat() == catOther ||
200                                t.cat() == catActive ||
201                                t.cat() == catNewline ||
202                                t.cat() == catParameter)
203                         os << t.character();
204
205                 else if (t.cat() == catBegin) {
206                         os << '{';
207                         parse_table(p, os, FLAG_BRACE_LAST);
208                         os << '}';
209                 }
210
211                 else if (t.cat() == catEnd) {
212                         if (flags & FLAG_BRACE_LAST)
213                                 return;
214                         cerr << "unexpected '}'\n";
215                 }
216
217                 else if (t.cat() == catAlign) {
218                         os << TAB;
219                 }
220
221                 else if (t.cs() == "tabularnewline" || t.cs() == "\\") {
222                         // stuff before the line break
223                         // and look ahead for stuff after the line break
224                         os << HLINE << hlines << HLINE << LINE << read_hlines(p) << HLINE;
225                         hlines.erase();
226                 }
227
228                 else if (t.cs() == "hline")
229                         hlines += "\\hline";
230
231                 else if (t.cs() == "cline")
232                         hlines += "\\cline{" + p.verbatim_item() + '}';
233
234                 else if (t.cat() == catComment)
235                         handle_comment(p);
236
237                 else if (t.cs() == "(") {
238                         os << "\\(";
239                         parse_math(p, os, FLAG_SIMPLE2, MATH_MODE);
240                         os << "\\)";
241                 }
242
243                 else if (t.cs() == "[") {
244                         os << "\\[";
245                         parse_math(p, os, FLAG_EQUATION, MATH_MODE);
246                         os << "\\]";
247                 }
248
249                 else if (t.cs() == "begin") {
250                         string const name = p.getArg('{', '}');
251                         active_environments.push_back(name);
252                         os << "\\begin{" << name << '}';
253                         if (is_math_env(name)) {
254                                 parse_math(p, os, FLAG_END, MATH_MODE);
255                         } else {
256                                 parse_table(p, os, FLAG_END);
257                         }
258                         os << "\\end{" << name << '}';
259                         active_environments.pop_back();
260                 }
261
262                 else if (t.cs() == "end") {
263                         if (flags & FLAG_END) {
264                                 // eat environment name
265                                 string const name = p.getArg('{', '}');
266                                 if (name != active_environment())
267                                         p.error("\\end{" + name + "} does not match \\begin{"
268                                                 + active_environment() + "}");
269                                 return;
270                         }
271                         p.error("found 'end' unexpectedly");
272                 }
273
274                 else
275                         os << t.asInput();
276         }
277 }
278
279
280 void handle_hline_above(RowInfo & ri, vector<CellInfo> & ci)
281 {
282         ri.topline = true;
283         for (size_t col = 0; col < ci.size(); ++col)
284                 ci[col].topline = true;
285 }
286
287
288 void handle_hline_below(RowInfo & ri, vector<CellInfo> & ci)
289 {
290         ri.bottomline = true;
291         for (size_t col = 0; col < ci.size(); ++col)
292                 ci[col].bottomline = true;
293 }
294
295
296 void handle_tabular(Parser & p, ostream & os,
297                     Context & context)
298 {
299         string posopts = p.getOpt();
300         if (posopts.size())
301                 cerr << "vertical tabular positioning '" << posopts << "' ignored\n";
302
303         vector<ColInfo>            colinfo;
304
305         // handle column formatting
306         handle_colalign(p, colinfo);
307
308         // handle initial hlines
309
310         // first scan of cells
311         // use table mode to keep it minimal-invasive
312         // not exactly what's TeX doing...
313         vector<string> lines;
314         ostringstream ss;
315         ss << read_hlines(p) << HLINE; // handle initial hlines
316         parse_table(p, ss, FLAG_END);
317         split(ss.str(), lines, LINE);
318
319         vector< vector<CellInfo> > cellinfo(lines.size());
320         vector<RowInfo> rowinfo(lines.size());
321
322         // split into rows
323         //cerr << "// split into rows\n";
324         for (size_t row = 0; row < rowinfo.size(); ++row) {
325
326                 // init row
327                 cellinfo[row].resize(colinfo.size());
328
329                 // split row
330                 vector<string> dummy;
331                 //cerr << "\n########### LINE: " << lines[row] << "########\n";
332                 split(lines[row], dummy, HLINE);
333
334                 // handle horizontal line fragments
335                 if (dummy.size() != 3) {
336                         if (dummy.size() != 1)
337                                 cerr << "unexpected dummy size: " << dummy.size()
338                                         << " content: " << lines[row] << "\n";
339                         dummy.resize(3);
340                 }
341                 lines[row] = dummy[1];
342
343                 //cerr << "line: " << row << " above 0: " << dummy[0] << "\n";
344                 //cerr << "line: " << row << " below 2: " << dummy[2] <<  "\n";
345                 //cerr << "line: " << row << " cells 1: " << dummy[1] <<  "\n";
346
347                 for (int i = 0; i <= 2; i += 2) {
348                         //cerr << "   reading from line string '" << dummy[i] << "'\n";
349                         Parser p1(dummy[i]);
350                         while (p1.good()) {
351                                 Token t = p1.get_token();
352                                 //cerr << "read token: " << t << "\n";
353                                 if (t.cs() == "hline") {
354                                         if (i == 0) {
355                                                 if (rowinfo[row].topline) {
356                                                         if (row > 0) // extra bottomline above
357                                                                 handle_hline_below(rowinfo[row - 1], cellinfo[row - 1]);
358                                                         else
359                                                                 cerr << "dropping extra hline\n";
360                                                         //cerr << "below row: " << row-1 << endl;
361                                                 } else {
362                                                         handle_hline_above(rowinfo[row], cellinfo[row]);
363                                                         //cerr << "above row: " << row << endl;
364                                                 }
365                                         } else {
366                                                 //cerr << "below row: " << row << endl;
367                                                 handle_hline_below(rowinfo[row], cellinfo[row]);
368                                         }
369                                 } else if (t.cs() == "cline") {
370                                         string arg = p1.verbatim_item();
371                                         //cerr << "read cline arg: '" << arg << "'\n";
372                                         vector<string> t;
373                                         split(arg, t, '-');
374                                         t.resize(2);
375                                         size_t from = string2int(t[0]) - 1;
376                                         size_t to = string2int(t[1]);
377                                         for (size_t col = from; col < to; ++col) {
378                                                 //cerr << "row: " << row << " col: " << col << " i: " << i << endl;
379                                                 if (i == 0) {
380                                                         rowinfo[row].topline = true;
381                                                         cellinfo[row][col].topline = true;
382                                                 } else {
383                                                         rowinfo[row].bottomline = true;
384                                                         cellinfo[row][col].bottomline = true;
385                                                 }
386                                         }
387                                 } else {
388                                         cerr << "unexpected line token: " << t << endl;
389                                 }
390                         }
391                 }
392
393                 // split into cells
394                 vector<string> cells;
395                 split(lines[row], cells, TAB);
396                 // Has the last multicolumn cell a rightline?
397                 bool last_rightline = false;
398                 for (size_t col = 0, cell = 0;
399                                 cell < cells.size() && col < colinfo.size(); ++col, ++cell) {
400                         //cerr << "cell content: '" << cells[cell] << "'\n";
401                         Parser p(cells[cell]);
402                         p.skip_spaces();
403                         //cells[cell] << "'\n";
404                         if (p.next_token().cs() == "multicolumn") {
405                                 // how many cells?
406                                 p.get_token();
407                                 size_t const ncells = string2int(p.verbatim_item());
408
409                                 // special cell properties alignment
410                                 vector<ColInfo> t;
411                                 handle_colalign(p, t);
412                                 cellinfo[row][col].multi     = 1;
413                                 cellinfo[row][col].align     = t.front().align;
414                                 ostringstream os;
415                                 parse_text_in_inset(p, os, FLAG_ITEM, false, context);
416                                 cellinfo[row][col].content   = os.str();
417
418                                 // multicolumn cells are tricky: This
419                                 // \multicolumn{2}{|c|}{col1-2}&
420                                 // \multicolumn{2}{|c|}{col3-4} "\\"
421                                 // gives | col1-2 | col3-4 | and not
422                                 //       | col1-2 || col3-4 |
423                                 // So:
424                                 if (last_rightline && t.front().leftline) {
425                                         t.front().leftline = false;
426                                 }
427                                 last_rightline = t.front().rightline;
428
429                                 // multicolumn lines override normal cell lines
430                                 cellinfo[row][col].leftline  = t.front().leftline;
431                                 cellinfo[row][col].rightline = t.front().rightline;
432
433                                 // add dummy cells for multicol
434                                 for (size_t i = 0; i < ncells - 1 && col < colinfo.size(); ++i) {
435                                         ++col;
436                                         cellinfo[row][col].multi = 2;
437                                         cellinfo[row][col].align = 'c';
438                                 }
439
440                                 // more than one line on the right?
441                                 if (t.front().rightline > 1)
442                                         cellinfo[row][col + 1].leftline = true;
443
444                         } else {
445                                 // FLAG_END is a hack, we need to read all of it
446                                 cellinfo[row][col].leftline = colinfo[col].leftline;
447                                 cellinfo[row][col].rightline = colinfo[col].rightline;
448                                 cellinfo[row][col].align = colinfo[col].align;
449                                 ostringstream os;
450                                 parse_text_in_inset(p, os, FLAG_CELL, false, context);
451                                 cellinfo[row][col].content   = os.str();
452                                 last_rightline = false;
453                         }
454                 }
455
456                 //cerr << "//  handle almost empty last row what we have\n";
457                 // handle almost empty last row
458                 if (row && lines[row].empty() && row + 1 == rowinfo.size()) {
459                         //cerr << "remove empty last line\n";
460                         if (rowinfo[row].topline)
461                                 rowinfo[row - 1].bottomline = true;
462                         for (size_t col = 0; col < colinfo.size(); ++col)
463                                 if (cellinfo[row][col].topline)
464                                         cellinfo[row - 1][col].bottomline = true;
465                         rowinfo.pop_back();
466                 }
467
468         }
469
470         //cerr << "// output what we have\n";
471         // output what we have
472         os << "\n<lyxtabular version=\"3\" rows=\"" << rowinfo.size()
473                  << "\" columns=\"" << colinfo.size() << "\">\n"
474                  << "<features>\n";
475
476         //cerr << "// after header\n";
477         for (size_t col = 0; col < colinfo.size(); ++col) {
478                 os << "<column alignment=\""
479                    << verbose_align(colinfo[col].align) << "\"";
480                 os << " valignment=\"top\"";
481                 if (colinfo[col].leftline)
482                         os << " leftline=\"true\"";
483                 if (colinfo[col].rightline)
484                         os << " rightline=\"true\"";
485                 if (colinfo[col].width.size())
486                         os << " width=\"" << colinfo[col].width << "\"";
487                 if (colinfo[col].special.size())
488                         os << " special=\"" << colinfo[col].special << "\"";
489                 os << ">\n";
490         }
491         //cerr << "// after cols\n";
492
493         for (size_t row = 0; row < rowinfo.size(); ++row) {
494                 os << "<row";
495                 if (rowinfo[row].topline)
496                         os << " topline=\"true\"";
497                 if (rowinfo[row].bottomline)
498                         os << " bottomline=\"true\"";
499                 os << ">\n";
500                 for (size_t col = 0; col < colinfo.size(); ++col) {
501                         CellInfo const & cell = cellinfo[row][col];
502                         os << "<cell";
503                         if (cell.multi)
504                                 os << " multicolumn=\"" << cell.multi << "\"";
505                         os << " alignment=\"" << verbose_align(cell.align)
506                            << "\""
507                            << " valignment=\"top\"";
508                         if (cell.topline)
509                                 os << " topline=\"true\"";
510                         if (cell.bottomline)
511                                 os << " bottomline=\"true\"";
512                         if (cell.leftline)
513                                 os << " leftline=\"true\"";
514                         if (cell.rightline)
515                                 os << " rightline=\"true\"";
516                         //cerr << "\nrow: " << row << " col: " << col;
517                         //if (cell.topline)
518                         //      cerr << " topline=\"true\"";
519                         //if (cell.bottomline)
520                         //      cerr << " bottomline=\"true\"";
521                         os << " usebox=\"none\""
522                            << ">"
523                            << "\n\\begin_inset Text\n"
524                            << cell.content
525                            << "\n\\end_inset \n"
526                            << "</cell>\n";
527                 }
528                 os << "</row>\n";
529         }
530
531         os << "</lyxtabular>\n";
532 }
533
534
535
536
537 // }])