ascii: Include footnote markers in output.
[pspp] / src / output / html.c
index 576b598427de831a4f8b4a09101d0ee6fa833fc5..3f07adcfeebd1dd634d19ba55c296054a21f0e5b 100644 (file)
 #include "libpspp/i18n.h"
 #include "libpspp/message.h"
 #include "libpspp/version.h"
-#ifdef HAVE_CAIRO
 #include "output/cairo-chart.h"
-#endif
 #include "output/chart-item.h"
 #include "output/driver-provider.h"
+#include "output/image-item.h"
 #include "output/message-item.h"
 #include "output/options.h"
 #include "output/output-item-provider.h"
+#include "output/pivot-output.h"
+#include "output/pivot-table.h"
 #include "output/table-provider.h"
 #include "output/table-item.h"
 #include "output/text-item.h"
 struct html_driver
   {
     struct output_driver driver;
-#ifdef HAVE_CAIRO
     struct cell_color fg;
     struct cell_color bg;
-#endif
     struct file_handle *handle;
     char *chart_file_name;
 
@@ -199,10 +198,8 @@ html_create (struct file_handle *fh, enum settings_output_devices device_type,
                                                       fh_get_file_name (fh)));
   html->file = NULL;
   html->chart_cnt = 1;
-#ifdef HAVE_CAIRO
   html->bg = parse_color (opt (d, o, "background-color", "#FFFFFFFFFFFF"));
   html->fg = parse_color (opt (d, o, "foreground-color", "#000000000000"));
-#endif
   html->file = fn_open (html->handle, "w");
   if (html->file == NULL)
     {
@@ -263,7 +260,17 @@ html_submit (struct output_driver *driver,
       struct table_item *table_item = to_table_item (output_item);
       html_output_table (html, table_item);
     }
-#ifdef HAVE_CAIRO
+  else if (is_image_item (output_item) && html->chart_file_name != NULL)
+    {
+      struct image_item *image_item = to_image_item (output_item);
+      char *file_name = xr_write_png_image (
+        image_item->image, html->chart_file_name, ++html->chart_cnt);
+      if (file_name != NULL)
+        {
+          fprintf (html->file, "<img src=\"%s\">", file_name);
+          free (file_name);
+        }
+    }
   else if (is_chart_item (output_item) && html->chart_file_name != NULL)
     {
       struct chart_item *chart_item = to_chart_item (output_item);
@@ -282,7 +289,6 @@ html_submit (struct output_driver *driver,
           free (file_name);
         }
     }
-#endif  /* HAVE_CAIRO */
   else if (is_text_item (output_item))
     {
       struct text_item *text_item = to_text_item (output_item);
@@ -364,18 +370,6 @@ escape_string (FILE *file, const char *text,
     }
 }
 
-static void
-escape_tag (FILE *file, const char *tag,
-            const char *text, const char *space, const char *newline)
-{
-  if (!text || !*text)
-    return;
-
-  fprintf (file, "<%s>", tag);
-  escape_string (file, text, space, newline);
-  fprintf (file, "</%s>", tag);
-}
-
 static const char *
 border_to_css (int border)
 {
@@ -480,101 +474,20 @@ put_border (const struct table *table, const struct table_cell *cell,
 }
 
 static void
-put_tfoot (struct html_driver *html, const struct table *t, bool *tfoot)
-{
-  if (!*tfoot)
-    {
-      fputs ("<tfoot>\n", html->file);
-      fputs ("<tr>\n", html->file);
-      fprintf (html->file, "<td colspan=%d>\n", t->n[H]);
-      *tfoot = true;
-    }
-  else
-    fputs ("\n<br>", html->file);
-}
-
-static void
-html_put_footnote_markers (struct html_driver *html,
-                           struct footnote **footnotes,
-                           size_t n_footnotes)
-{
-  if (n_footnotes > 0)
-    {
-      fputs ("<sup>", html->file);
-      for (size_t i = 0; i < n_footnotes; i++)
-        {
-          const struct footnote *f = footnotes[i];
-
-          if (i > 0)
-            putc (',', html->file);
-          escape_string (html->file, f->marker, " ", "<br>");
-        }
-      fputs ("</sup>", html->file);
-    }
-}
-
-static void
-html_put_table_item_text (struct html_driver *html,
-                          const struct table_item_text *text)
-{
-  escape_string (html->file, text->content, " ", "<br>");
-  html_put_footnote_markers (html, text->footnotes, text->n_footnotes);
-}
-
-static void
-html_put_table_cell_text (struct html_driver *html,
-                          const struct table_cell *cell)
-{
-  const char *s = cell->text;
-  if (cell->options & TAB_FIX)
-    escape_tag (html->file, "tt", s, "&nbsp;", "<br>");
-  else
-    {
-      s += strspn (s, CC_SPACES);
-      escape_string (html->file, s, " ", "<br>");
-    }
-
-  if (cell->n_subscripts)
-    {
-      fputs ("<sub>", html->file);
-      for (size_t i = 0; i < cell->n_subscripts; i++)
-        {
-          if (i)
-            putc (',', html->file);
-          escape_string (html->file, cell->subscripts[i],
-                         "&nbsp;", "<br>");
-        }
-      fputs ("</sub>", html->file);
-    }
-  html_put_footnote_markers (html, cell->footnotes, cell->n_footnotes);
-}
-
-static void
-html_put_table_item_layers (struct html_driver *html,
-                            const struct table_item_layers *layers)
-{
-  for (size_t i = 0; i < layers->n_layers; i++)
-    {
-      if (i)
-        fputs ("<br>\n", html->file);
-
-      const struct table_item_layer *layer = &layers->layers[i];
-      escape_string (html->file, layer->content, " ", "<br>");
-      html_put_footnote_markers (html, layer->footnotes, layer->n_footnotes);
-    }
-}
-
-static void
-html_put_table_cell (struct html_driver *html, const struct table *t,
-                     const struct table_cell *cell, const char *tag,
-                     bool border)
+html_put_table_cell (struct html_driver *html, const struct pivot_table *pt,
+                     const struct table_cell *cell,
+                     const char *tag, const struct table *t)
 {
   fprintf (html->file, "<%s", tag);
 
   struct css_style style;
   style_start (&style, html->file);
-  enum table_halign halign = table_halign_interpret (
-    cell->style->cell_style.halign, cell->options & TAB_NUMERIC);
+
+  struct string body = DS_EMPTY_INITIALIZER;
+  bool numeric = pivot_value_format_body (cell->value, pt, &body);
+
+  enum table_halign halign = table_halign_interpret (cell->cell_style->halign,
+                                                     numeric);
 
   switch (halign)
     {
@@ -592,14 +505,14 @@ html_put_table_cell (struct html_driver *html, const struct table *t,
   if (cell->options & TAB_ROTATE)
     put_style (&style, "writing-mode", "sideways-lr");
 
-  if (cell->style->cell_style.valign != TABLE_VALIGN_TOP)
+  if (cell->cell_style->valign != TABLE_VALIGN_TOP)
     {
       put_style (&style, "vertical-align",
-                 (cell->style->cell_style.valign == TABLE_VALIGN_BOTTOM
+                 (cell->cell_style->valign == TABLE_VALIGN_BOTTOM
                   ? "bottom" : "middle"));
     }
 
-  const struct font_style *fs = &cell->style->font_style;
+  const struct font_style *fs = cell->font_style;
   char bgcolor[32];
   if (format_color (fs->bg[cell->d[V][0] % 2],
                     (struct cell_color) CELL_COLOR_WHITE,
@@ -631,7 +544,7 @@ html_put_table_cell (struct html_driver *html, const struct table *t,
       put_style (&style, "font-size", buf);
     }
 
-  if (border)
+  if (t && html->borders)
     {
       put_border (t, cell, &style, V, 0, 0, "top");
       put_border (t, cell, &style, H, 0, 0, "left");
@@ -653,90 +566,156 @@ html_put_table_cell (struct html_driver *html, const struct table *t,
 
   putc ('>', html->file);
 
-  html_put_table_cell_text (html, cell);
+  const char *s = ds_cstr (&body);
+  s += strspn (s, CC_SPACES);
+  escape_string (html->file, s, " ", "<br>");
+  ds_destroy (&body);
+
+  if (cell->value->n_subscripts)
+    {
+      fputs ("<sub>", html->file);
+      for (size_t i = 0; i < cell->value->n_subscripts; i++)
+        {
+          if (i)
+            putc (',', html->file);
+          escape_string (html->file, cell->value->subscripts[i],
+                         "&nbsp;", "<br>");
+        }
+      fputs ("</sub>", html->file);
+    }
+  if (cell->value->n_footnotes > 0)
+    {
+      fputs ("<sup>", html->file);
+      for (size_t i = 0; i < cell->value->n_footnotes; i++)
+        {
+          if (i > 0)
+            putc (',', html->file);
+
+          size_t idx = cell->value->footnote_indexes[i];
+          const struct pivot_footnote *f = pt->footnotes[idx];
+
+          char *marker = pivot_footnote_marker_string (f, pt);
+          escape_string (html->file, marker, " ", "<br>");
+          free (marker);
+        }
+      fputs ("</sup>", html->file);
+    }
 
   /* output </th> or </td>. */
   fprintf (html->file, "</%s>\n", tag);
 }
 
 static void
-html_output_table (struct html_driver *html, const struct table_item *item)
+html_output_table_layer (struct html_driver *html, const struct pivot_table *pt,
+                         const size_t *layer_indexes)
 {
-  const struct table *t = table_item_get_table (item);
-  bool tfoot = false;
+  struct table *title, *layers, *body, *caption, *footnotes;
+  pivot_output (pt, layer_indexes, true, &title, &layers, &body,
+                &caption, &footnotes, NULL, NULL);
 
   fputs ("<table", html->file);
-  if (item->notes)
+  if (pt->notes)
     {
       fputs (" title=\"", html->file);
-      escape_string (html->file, item->notes, " ", "\n");
+      escape_string (html->file, pt->notes, " ", "\n");
       putc ('"', html->file);
     }
   fputs (">\n", html->file);
 
-  const struct table_item_text *caption = table_item_get_caption (item);
-  if (caption)
+  if (title)
     {
-      put_tfoot (html, t, &tfoot);
-      html_put_table_item_text (html, caption);
+      struct table_cell cell;
+      table_get_cell (title, 0, 0, &cell);
+      html_put_table_cell (html, pt, &cell, "caption", NULL);
     }
-  struct footnote **f;
-  size_t n_footnotes = table_collect_footnotes (item, &f);
 
-  for (size_t i = 0; i < n_footnotes; i++)
-    {
-      put_tfoot (html, t, &tfoot);
-      escape_tag (html->file, "sup", f[i]->marker, " ", "<br>");
-      escape_string (html->file, f[i]->content, " ", "<br>");
-    }
-  free (f);
-  if (tfoot)
+  if (layers)
     {
-      fputs ("</td>\n", html->file);
-      fputs ("</tr>\n", html->file);
-      fputs ("</tfoot>\n", html->file);
-    }
+      fputs ("<thead>\n", html->file);
+      for (size_t y = 0; y < layers->n[V]; y++)
+        {
+          fputs ("<tr>\n", html->file);
 
-  const struct table_cell *title = table_item_get_title (item);
-  const struct table_item_layers *layers = table_item_get_layers (item);
-  if (title || layers)
-    {
-      fputs ("<caption>", html->file);
-      if (title)
-        html_put_table_cell (html, t, title, "span", false);
-      if (title && layers)
-        fputs ("<br>\n", html->file);
-      if (layers)
-        html_put_table_item_layers (html, layers);
-      fputs ("</caption>\n", html->file);
+          struct table_cell cell;
+          table_get_cell (layers, 0, y, &cell);
+          cell.d[H][1] = body->n[H];
+          html_put_table_cell (html, pt, &cell, "td", NULL);
+
+          fputs ("</tr>\n", html->file);
+        }
+      fputs ("</thead>\n", html->file);
     }
 
   fputs ("<tbody>\n", html->file);
-
-  for (int y = 0; y < t->n[V]; y++)
+  for (int y = 0; y < body->n[V]; y++)
     {
       fputs ("<tr>\n", html->file);
-      for (int x = 0; x < t->n[H]; )
+      for (int x = 0; x < body->n[H]; )
         {
           struct table_cell cell;
-          table_get_cell (t, x, y, &cell);
+          table_get_cell (body, x, y, &cell);
           if (x == cell.d[TABLE_HORZ][0] && y == cell.d[TABLE_VERT][0])
             {
-              bool is_header = (y < t->h[V][0]
-                                || y >= t->n[V] - t->h[V][1]
-                                || x < t->h[H][0]
-                                || x >= t->n[H] - t->h[H][1]);
+              bool is_header = (y < body->h[V][0]
+                                || y >= body->n[V] - body->h[V][1]
+                                || x < body->h[H][0]
+                                || x >= body->n[H] - body->h[H][1]);
               const char *tag = is_header ? "th" : "td";
-              html_put_table_cell (html, t, &cell, tag, html->borders);
+              html_put_table_cell (html, pt, &cell, tag, body);
             }
 
           x = cell.d[TABLE_HORZ][1];
         }
       fputs ("</tr>\n", html->file);
     }
-
   fputs ("</tbody>\n", html->file);
+
+  if (caption || footnotes)
+    {
+      fprintf (html->file, "<tfoot>\n");
+
+      if (caption)
+        {
+          fputs ("<tr>\n", html->file);
+
+          struct table_cell cell;
+          table_get_cell (caption, 0, 0, &cell);
+          cell.d[H][1] = body->n[H];
+          html_put_table_cell (html, pt, &cell, "td", NULL);
+
+          fputs ("</tr>\n", html->file);
+        }
+
+      if (footnotes)
+        for (size_t y = 0; y < footnotes->n[V]; y++)
+          {
+            fputs ("<tr>\n", html->file);
+
+            struct table_cell cell;
+            table_get_cell (footnotes, 0, y, &cell);
+            cell.d[H][1] = body->n[H];
+            html_put_table_cell (html, pt, &cell, "td", NULL);
+
+            fputs ("</tr>\n", html->file);
+          }
+      fputs ("</tfoot>\n", html->file);
+    }
+
   fputs ("</table>\n\n", html->file);
+
+  table_unref (title);
+  table_unref (layers);
+  table_unref (body);
+  table_unref (caption);
+  table_unref (footnotes);
+}
+
+static void
+html_output_table (struct html_driver *html, const struct table_item *item)
+{
+  size_t *layer_indexes;
+  PIVOT_OUTPUT_FOR_EACH_LAYER (layer_indexes, item->pt, true)
+    html_output_table_layer (html, item->pt, layer_indexes);
 }
 
 struct output_driver_factory html_driver_factory =