1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2019 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 #include "output/spv/spv-writer.h"
22 #include <libxml/xmlwriter.h>
27 #include "libpspp/array.h"
28 #include "libpspp/assertion.h"
29 #include "libpspp/cast.h"
30 #include "libpspp/float-format.h"
31 #include "libpspp/integer-format.h"
32 #include "libpspp/temp-file.h"
33 #include "libpspp/version.h"
34 #include "libpspp/zip-writer.h"
35 #include "output/page-setup-item.h"
36 #include "output/pivot-table.h"
37 #include "output/text-item.h"
39 #include "gl/xalloc.h"
40 #include "gl/xvasprintf.h"
43 #define _(msgid) gettext (msgid)
44 #define N_(msgid) (msgid)
48 struct zip_writer *zw;
57 struct page_setup *page_setup;
61 char * WARN_UNUSED_RESULT
62 spv_writer_open (const char *filename, struct spv_writer **writerp)
66 struct zip_writer *zw = zip_writer_create (filename);
68 return xasprintf (_("%s: create failed"), filename);
70 struct spv_writer *w = xmalloc (sizeof *w);
71 *w = (struct spv_writer) { .zw = zw };
76 char * WARN_UNUSED_RESULT
77 spv_writer_close (struct spv_writer *w)
82 zip_writer_add_string (w->zw, "META-INF/MANIFEST.MF", "allowPivoting=true");
84 while (w->heading_depth)
85 spv_writer_close_heading (w);
88 if (!zip_writer_close (w->zw))
89 error = xstrdup (_("I/O error writing SPV file"));
91 page_setup_destroy (w->page_setup);
97 spv_writer_set_page_setup (struct spv_writer *w,
98 const struct page_setup *page_setup)
100 page_setup_destroy (w->page_setup);
101 w->page_setup = page_setup_clone (page_setup);
105 write_attr (struct spv_writer *w, const char *name, const char *value)
107 xmlTextWriterWriteAttribute (w->xml,
108 CHAR_CAST (xmlChar *, name),
109 CHAR_CAST (xmlChar *, value));
112 static void PRINTF_FORMAT (3, 4)
113 write_attr_format (struct spv_writer *w, const char *name,
114 const char *format, ...)
117 va_start (args, format);
118 char *value = xvasprintf (format, args);
121 write_attr (w, name, value);
126 start_elem (struct spv_writer *w, const char *name)
128 xmlTextWriterStartElement (w->xml, CHAR_CAST (xmlChar *, name));
132 end_elem (struct spv_writer *w)
134 xmlTextWriterEndElement (w->xml);
138 write_text (struct spv_writer *w, const char *text)
140 xmlTextWriterWriteString (w->xml, CHAR_CAST (xmlChar *, text));
144 write_page_heading (struct spv_writer *w, const struct page_heading *h,
147 start_elem (w, name);
150 start_elem (w, "pageParagraph");
151 for (size_t i = 0; i < h->n; i++)
153 start_elem (w, "text");
154 write_attr (w, "type", "title");
155 write_text (w, h->paragraphs[i].markup); /* XXX */
164 write_page_setup (struct spv_writer *w, const struct page_setup *ps)
166 start_elem (w, "pageSetup");
167 write_attr_format (w, "initial-page-number", "%d", ps->initial_page_number);
168 write_attr (w, "chart-size",
169 (ps->chart_size == PAGE_CHART_AS_IS ? "as-is"
170 : ps->chart_size == PAGE_CHART_FULL_HEIGHT ? "full-height"
171 : ps->chart_size == PAGE_CHART_HALF_HEIGHT ? "half-height"
172 : "quarter-height"));
173 write_attr_format (w, "margin-left", "%.2fin", ps->margins[TABLE_HORZ][0]);
174 write_attr_format (w, "margin-right", "%.2fin", ps->margins[TABLE_HORZ][1]);
175 write_attr_format (w, "margin-top", "%.2fin", ps->margins[TABLE_VERT][0]);
176 write_attr_format (w, "margin-bottom", "%.2fin", ps->margins[TABLE_VERT][1]);
177 write_attr_format (w, "paper-height", "%.2fin", ps->paper[TABLE_VERT]);
178 write_attr_format (w, "paper-width", "%.2fin", ps->paper[TABLE_HORZ]);
179 write_attr (w, "reference-orientation",
180 ps->orientation == PAGE_PORTRAIT ? "portrait" : "landscape");
181 write_attr_format (w, "space-after", "%.1fpt", ps->object_spacing * 72.0);
182 write_page_heading (w, &ps->headings[0], "pageHeader");
183 write_page_heading (w, &ps->headings[1], "pageFooter");
188 spv_writer_open_file (struct spv_writer *w)
190 w->heading = create_temp_file ();
194 w->xml = xmlNewTextWriter (xmlOutputBufferCreateFile (w->heading, NULL));
195 xmlTextWriterStartDocument (w->xml, NULL, "UTF-8", NULL);
196 start_elem (w, "heading");
198 time_t t = time (NULL);
199 struct tm *tm = gmtime (&t);
200 char *tm_s = asctime (tm);
201 write_attr (w, "creation-date-time", tm_s);
203 write_attr (w, "creator", version);
205 write_attr (w, "creator-version", "21");
207 write_attr (w, "xmlns", "http://xml.spss.com/spss/viewer/viewer-tree");
208 write_attr (w, "xmlns:vps", "http://xml.spss.com/spss/viewer/viewer-pagesetup");
209 write_attr (w, "xmlns:vtx", "http://xml.spss.com/spss/viewer/viewer-text");
210 write_attr (w, "xmlns:vtb", "http://xml.spss.com/spss/viewer/viewer-table");
212 start_elem (w, "label");
213 write_text (w, _("Output"));
218 write_page_setup (w, w->page_setup);
220 page_setup_destroy (w->page_setup);
221 w->page_setup = NULL;
228 spv_writer_open_heading (struct spv_writer *w, const char *command_id,
233 if (!spv_writer_open_file (w))
238 start_elem (w, "heading");
239 write_attr (w, "commandName", command_id);
243 start_elem (w, "label");
244 write_text (w, label);
249 spv_writer_close_file (struct spv_writer *w, const char *infix)
255 xmlTextWriterEndDocument (w->xml);
256 xmlFreeTextWriter (w->xml);
258 char *member_name = xasprintf ("outputViewer%010d%s.xml",
259 w->n_headings++, infix);
260 zip_writer_add (w->zw, w->heading, member_name);
267 spv_writer_close_heading (struct spv_writer *w)
269 const char *infix = "";
270 if (w->heading_depth)
277 if (!w->heading_depth)
278 spv_writer_close_file (w, infix);
282 start_container (struct spv_writer *w)
284 start_elem (w, "container");
285 write_attr (w, "visibility", "visible");
286 if (w->need_page_break)
288 write_attr (w, "page-break-before", "always");
289 w->need_page_break = false;
294 spv_writer_put_text (struct spv_writer *w, const struct text_item *text,
295 const char *command_id)
297 bool initial_depth = w->heading_depth;
299 spv_writer_open_file (w);
303 start_elem (w, "label");
304 write_text (w, (text->type == TEXT_ITEM_TITLE ? "Title"
305 : text->type == TEXT_ITEM_PAGE_TITLE ? "Page Title"
309 start_elem (w, "vtx:text");
310 write_attr (w, "type", (text->type == TEXT_ITEM_TITLE ? "title"
311 : text->type == TEXT_ITEM_PAGE_TITLE ? "page-title"
314 write_attr (w, "commandName", command_id);
316 start_elem (w, "html");
317 write_text (w, text->text); /* XXX */
318 end_elem (w); /* html */
319 end_elem (w); /* vtx:text */
320 end_elem (w); /* container */
323 spv_writer_close_file (w, "");
326 static cairo_status_t
327 write_to_zip (void *zw_, const unsigned char *data, unsigned int length)
329 struct zip_writer *zw = zw_;
331 zip_writer_add_write (zw, data, length);
332 return CAIRO_STATUS_SUCCESS;
336 spv_writer_put_image (struct spv_writer *w, cairo_surface_t *image)
338 bool initial_depth = w->heading_depth;
340 spv_writer_open_file (w);
342 char *uri = xasprintf ("%010d_Imagegeneric.png", ++w->n_tables);
346 start_elem (w, "label");
347 write_text (w, "Image");
350 start_elem (w, "object");
351 write_attr (w, "type", "unknown");
352 write_attr (w, "uri", uri);
353 end_elem (w); /* object */
354 end_elem (w); /* container */
357 spv_writer_close_file (w, "");
359 zip_writer_add_start (w->zw, uri);
360 cairo_surface_write_to_png_stream (image, write_to_zip, w->zw);
361 zip_writer_add_finish (w->zw);
367 spv_writer_eject_page (struct spv_writer *w)
369 w->need_page_break = true;
383 put_uninit (struct buf *b, size_t n)
385 while (b->allocated - b->len < n)
386 b->data = x2nrealloc (b->data, &b->allocated, sizeof b->data);
387 uint8_t *p = &b->data[b->len];
393 put_byte (struct buf *b, uint8_t byte)
395 *put_uninit (b, 1) = byte;
399 put_bool (struct buf *b, bool boolean)
401 put_byte (b, boolean);
405 put_bytes (struct buf *b, const char *bytes, size_t n)
407 memcpy (put_uninit (b, n), bytes, n);
411 put_u16 (struct buf *b, uint16_t x)
413 put_uint16 (native_to_le16 (x), put_uninit (b, sizeof x));
417 put_u32 (struct buf *b, uint32_t x)
419 put_uint32 (native_to_le32 (x), put_uninit (b, sizeof x));
423 put_u64 (struct buf *b, uint64_t x)
425 put_uint64 (native_to_le64 (x), put_uninit (b, sizeof x));
429 put_be32 (struct buf *b, uint32_t x)
431 put_uint32 (native_to_be32 (x), put_uninit (b, sizeof x));
435 put_double (struct buf *b, double x)
437 float_convert (FLOAT_NATIVE_DOUBLE, &x,
438 FLOAT_IEEE_DOUBLE_LE, put_uninit (b, 8));
442 put_float (struct buf *b, float x)
444 float_convert (FLOAT_NATIVE_FLOAT, &x,
445 FLOAT_IEEE_SINGLE_LE, put_uninit (b, 4));
449 put_string (struct buf *b, const char *s_)
451 const char *s = s_ ? s_ : "";
452 size_t len = strlen (s);
454 memcpy (put_uninit (b, len), s, len);
458 put_bestring (struct buf *b, const char *s_)
460 const char *s = s_ ? s_ : "";
461 size_t len = strlen (s);
463 memcpy (put_uninit (b, len), s, len);
467 start_count (struct buf *b)
474 end_count_u32 (struct buf *b, size_t start)
476 put_uint32 (native_to_le32 (b->len - start), &b->data[start - 4]);
480 end_count_be32 (struct buf *b, size_t start)
482 put_uint32 (native_to_be32 (b->len - start), &b->data[start - 4]);
486 put_color (struct buf *buf, const struct cell_color *color)
488 char *s = xasprintf ("#%02"PRIx8"%02"PRIx8"%02"PRIx8,
489 color->r, color->g, color->b);
495 put_font_style (struct buf *buf, const struct font_style *font_style)
497 put_bool (buf, font_style->bold);
498 put_bool (buf, font_style->italic);
499 put_bool (buf, font_style->underline);
501 put_color (buf, &font_style->fg[0]);
502 put_color (buf, &font_style->bg[0]);
503 put_string (buf, font_style->typeface ? font_style->typeface : "SansSerif");
504 put_byte (buf, ceil (font_style->size * 1.33));
508 put_halign (struct buf *buf, enum table_halign halign,
509 uint32_t mixed, uint32_t decimal)
511 put_u32 (buf, (halign == TABLE_HALIGN_RIGHT ? 4
512 : halign == TABLE_HALIGN_LEFT ? 2
513 : halign == TABLE_HALIGN_CENTER ? 0
514 : halign == TABLE_HALIGN_MIXED ? mixed
519 put_valign (struct buf *buf, enum table_valign valign)
521 put_u32 (buf, (valign == TABLE_VALIGN_TOP ? 1
522 : valign == TABLE_VALIGN_CENTER ? 0
527 put_cell_style (struct buf *buf, const struct cell_style *cell_style)
529 put_halign (buf, cell_style->halign, 0xffffffad, 6);
530 put_valign (buf, cell_style->valign);
531 put_double (buf, cell_style->decimal_offset);
532 put_u16 (buf, cell_style->margin[H][0]);
533 put_u16 (buf, cell_style->margin[H][1]);
534 put_u16 (buf, cell_style->margin[V][0]);
535 put_u16 (buf, cell_style->margin[V][1]);
539 put_style_pair (struct buf *buf, const struct font_style *font_style,
540 const struct cell_style *cell_style)
544 put_byte (buf, 0x31);
545 put_font_style (buf, font_style);
548 put_byte (buf, 0x58);
552 put_byte (buf, 0x31);
553 put_cell_style (buf, cell_style);
556 put_byte (buf, 0x58);
560 put_value_mod (struct buf *buf, const struct pivot_value *value,
561 const char *template)
563 if (value->n_footnotes || value->n_subscripts
564 || template || value->font_style || value->cell_style)
566 put_byte (buf, 0x31);
569 put_u32 (buf, value->n_footnotes);
570 for (size_t i = 0; i < value->n_footnotes; i++)
571 put_u16 (buf, value->footnote_indexes[i]);
574 put_u32 (buf, value->n_subscripts);
575 for (size_t i = 0; i < value->n_subscripts; i++)
576 put_string (buf, value->subscripts[i]);
578 /* Template and style. */
579 uint32_t v3_start = start_count (buf);
580 uint32_t template_string_start = start_count (buf);
583 uint32_t inner_start = start_count (buf);
584 end_count_u32 (buf, inner_start);
586 put_byte (buf, 0x31);
587 put_string (buf, template);
589 end_count_u32 (buf, template_string_start);
590 put_style_pair (buf, value->font_style, value->cell_style);
591 end_count_u32 (buf, v3_start);
594 put_byte (buf, 0x58);
598 put_format (struct buf *buf, const struct fmt_spec *f, bool honor_small)
600 int type = f->type == FMT_F && honor_small ? 40 : fmt_to_io (f->type);
601 put_u32 (buf, (type << 16) | (f->w << 8) | f->d);
605 show_values_to_spvlb (enum settings_value_show show)
607 return (show == SETTINGS_VALUE_SHOW_DEFAULT ? 0
608 : show == SETTINGS_VALUE_SHOW_VALUE ? 1
609 : show == SETTINGS_VALUE_SHOW_LABEL ? 2
614 put_show_values (struct buf *buf, enum settings_value_show show)
616 put_byte (buf, show_values_to_spvlb (show));
620 put_value (struct buf *buf, const struct pivot_value *value)
624 case PIVOT_VALUE_NUMERIC:
625 if (value->numeric.var_name || value->numeric.value_label)
628 put_value_mod (buf, value, NULL);
629 put_format (buf, &value->numeric.format, value->numeric.honor_small);
630 put_double (buf, value->numeric.x);
631 put_string (buf, value->numeric.var_name);
632 put_string (buf, value->numeric.value_label);
633 put_show_values (buf, value->numeric.show);
638 put_value_mod (buf, value, NULL);
639 put_format (buf, &value->numeric.format, value->numeric.honor_small);
640 put_double (buf, value->numeric.x);
644 case PIVOT_VALUE_STRING:
646 put_value_mod (buf, value, NULL);
647 size_t len = strlen (value->string.s);
648 if (value->string.hex)
649 put_format (buf, &(struct fmt_spec) { FMT_AHEX, len * 2, 0 }, false);
651 put_format (buf, &(struct fmt_spec) { FMT_A, len, 0 }, false);
652 put_string (buf, value->string.value_label);
653 put_string (buf, value->string.var_name);
654 put_show_values (buf, value->string.show);
655 put_string (buf, value->string.s);
658 case PIVOT_VALUE_VARIABLE:
660 put_value_mod (buf, value, NULL);
661 put_string (buf, value->variable.var_name);
662 put_string (buf, value->variable.var_label);
663 put_show_values (buf, value->variable.show);
666 case PIVOT_VALUE_TEXT:
668 put_string (buf, value->text.local);
669 put_value_mod (buf, value, NULL);
670 put_string (buf, value->text.id);
671 put_string (buf, value->text.c);
672 put_byte (buf, 1); /* XXX user-provided */
675 case PIVOT_VALUE_TEMPLATE:
677 put_value_mod (buf, value, value->template.id);
678 put_string (buf, value->template.local);
679 put_u32 (buf, value->template.n_args);
680 for (size_t i = 0; i < value->template.n_args; i++)
682 const struct pivot_argument *arg = &value->template.args[i];
683 assert (arg->n >= 1);
686 put_u32 (buf, arg->n);
688 for (size_t j = 0; j < arg->n; j++)
691 put_bytes (buf, "\0\0\0\0", 4);
692 put_value (buf, arg->values[j]);
698 put_value (buf, arg->values[0]);
709 put_optional_value (struct buf *buf, const struct pivot_value *value)
713 put_byte (buf, 0x31);
714 put_value (buf, value);
717 put_byte (buf, 0x58);
721 put_category (struct buf *buf, const struct pivot_category *c)
723 put_value (buf, c->name);
724 if (pivot_category_is_leaf (c))
726 put_bytes (buf, "\0\0\0", 3);
728 put_u32 (buf, c->data_index);
733 put_bytes (buf, "\0\0\1", 3);
734 put_u32 (buf, 0); /* x23 */
736 put_u32 (buf, c->n_subs);
737 for (size_t i = 0; i < c->n_subs; i++)
738 put_category (buf, c->subs[i]);
743 put_y0 (struct buf *buf, const struct pivot_table *table)
745 put_u32 (buf, table->settings.epoch);
746 put_byte (buf, table->settings.decimal);
751 put_custom_currency (struct buf *buf, const struct pivot_table *table)
754 for (int i = 0; i < 5; i++)
756 enum fmt_type types[5] = { FMT_CCA, FMT_CCB, FMT_CCC, FMT_CCD, FMT_CCE };
757 char *cc = fmt_number_style_to_string (fmt_settings_get_style (
758 &table->settings, types[i]));
759 put_string (buf, cc);
765 put_x1 (struct buf *buf, const struct pivot_table *table)
767 put_byte (buf, 0); /* x14 */
768 put_byte (buf, table->show_title ? 1 : 10);
769 put_byte (buf, 0); /* x16 */
770 put_byte (buf, 0); /* lang */
771 put_show_values (buf, table->show_variables);
772 put_show_values (buf, table->show_values);
773 put_u32 (buf, -1); /* x18 */
774 put_u32 (buf, -1); /* x19 */
775 for (int i = 0; i < 17; i++)
777 put_bool (buf, false); /* x20 */
778 put_byte (buf, table->show_caption);
782 put_x2 (struct buf *buf)
784 put_u32 (buf, 0); /* n-row-heights */
785 put_u32 (buf, 0); /* n-style-map */
786 put_u32 (buf, 0); /* n-styles */
791 put_y1 (struct buf *buf, const struct pivot_table *table)
793 put_string (buf, table->command_c);
794 put_string (buf, table->command_local);
795 put_string (buf, table->language);
796 put_string (buf, "UTF-8"); /* XXX */
797 put_string (buf, table->locale);
798 put_bytes (buf, "\0\0\1\1", 4);
803 put_y2 (struct buf *buf, const struct pivot_table *table)
805 put_custom_currency (buf, table);
811 put_x3 (struct buf *buf, const struct pivot_table *table)
815 put_byte (buf, 4); /* x21 */
820 put_double (buf, table->small);
822 put_string (buf, table->dataset);
823 put_string (buf, table->datafile);
825 put_u32 (buf, table->date);
831 put_light_table (struct buf *buf, uint64_t table_id,
832 const struct pivot_table *table)
835 put_bytes (buf, "\1\0", 2);
837 put_bool (buf, true);
838 put_bool (buf, false);
839 put_bool (buf, table->rotate_inner_column_labels);
840 put_bool (buf, table->rotate_outer_row_labels);
841 put_bool (buf, true);
843 put_u32 (buf, table->look->width_ranges[H][0]);
844 put_u32 (buf, table->look->width_ranges[H][1]);
845 put_u32 (buf, table->look->width_ranges[V][0]);
846 put_u32 (buf, table->look->width_ranges[V][1]);
847 put_u64 (buf, table_id);
850 put_value (buf, table->title);
851 put_value (buf, table->subtype);
852 put_optional_value (buf, table->title);
853 put_optional_value (buf, table->corner_text);
854 put_optional_value (buf, table->caption);
857 put_u32 (buf, table->n_footnotes);
858 for (size_t i = 0; i < table->n_footnotes; i++)
860 put_value (buf, table->footnotes[i]->content);
861 put_optional_value (buf, table->footnotes[i]->marker);
866 for (size_t i = 0; i < PIVOT_N_AREAS; i++)
868 const struct table_area_style *a = &table->look->areas[i];
869 put_byte (buf, i + 1);
870 put_byte (buf, 0x31);
871 put_string (buf, (a->font_style.typeface
872 ? a->font_style.typeface
874 put_float (buf, ceil (a->font_style.size * 1.33));
875 put_u32 (buf, ((a->font_style.bold ? 1 : 0)
876 | (a->font_style.italic ? 2 : 0)));
877 put_bool (buf, a->font_style.underline);
878 put_halign (buf, a->cell_style.halign, 64173, 61453);
879 put_valign (buf, a->cell_style.valign);
881 put_color (buf, &a->font_style.fg[0]);
882 put_color (buf, &a->font_style.bg[0]);
885 = (!cell_color_equal (&a->font_style.fg[0], &a->font_style.fg[1])
886 || !cell_color_equal (&a->font_style.bg[0], &a->font_style.bg[1]));
890 put_color (buf, &a->font_style.fg[1]);
891 put_color (buf, &a->font_style.bg[1]);
895 put_string (buf, "");
896 put_string (buf, "");
899 put_u32 (buf, a->cell_style.margin[H][0]);
900 put_u32 (buf, a->cell_style.margin[H][1]);
901 put_u32 (buf, a->cell_style.margin[V][0]);
902 put_u32 (buf, a->cell_style.margin[V][1]);
906 uint32_t borders_start = start_count (buf);
908 put_be32 (buf, PIVOT_N_BORDERS);
909 for (size_t i = 0; i < PIVOT_N_BORDERS; i++)
911 const struct table_border_style *b = &table->look->borders[i];
913 put_be32 (buf, (b->stroke == TABLE_STROKE_NONE ? 0
914 : b->stroke == TABLE_STROKE_SOLID ? 1
915 : b->stroke == TABLE_STROKE_DASHED ? 2
916 : b->stroke == TABLE_STROKE_THICK ? 3
917 : b->stroke == TABLE_STROKE_THIN ? 4
919 put_be32 (buf, ((b->color.alpha << 24)
924 put_bool (buf, table->show_grid_lines);
925 put_bytes (buf, "\0\0\0", 3);
926 end_count_u32 (buf, borders_start);
928 /* Print Settings. */
929 uint32_t ps_start = start_count (buf);
931 put_bool (buf, table->look->print_all_layers);
932 put_bool (buf, table->look->paginate_layers);
933 put_bool (buf, table->look->shrink_to_fit[H]);
934 put_bool (buf, table->look->shrink_to_fit[V]);
935 put_bool (buf, table->look->top_continuation);
936 put_bool (buf, table->look->bottom_continuation);
937 put_be32 (buf, table->look->n_orphan_lines);
938 put_bestring (buf, table->look->continuation);
939 end_count_u32 (buf, ps_start);
941 /* Table Settings. */
942 uint32_t ts_start = start_count (buf);
945 put_be32 (buf, 0); /* XXX current_layer */
946 put_bool (buf, table->look->omit_empty);
947 put_bool (buf, table->look->row_labels_in_corner);
948 put_bool (buf, !table->look->show_numeric_markers);
949 put_bool (buf, table->look->footnote_marker_superscripts);
951 uint32_t keep_start = start_count (buf);
952 put_be32 (buf, 0); /* n-row-breaks */
953 put_be32 (buf, 0); /* n-column-breaks */
954 put_be32 (buf, 0); /* n-row-keeps */
955 put_be32 (buf, 0); /* n-column-keeps */
956 put_be32 (buf, 0); /* n-row-point-keeps */
957 put_be32 (buf, 0); /* n-column-point-keeps */
958 end_count_be32 (buf, keep_start);
959 put_bestring (buf, table->notes);
960 put_bestring (buf, table->look->name);
961 for (size_t i = 0; i < 82; i++)
963 end_count_u32 (buf, ts_start);
966 put_u32 (buf, 0); /* n-widths */
967 put_string (buf, "en_US.ISO_8859-1:1987"); /* XXX */
968 put_u32 (buf, 0); /* XXX current-layer */
973 put_custom_currency (buf, table);
974 uint32_t formats_start = start_count (buf);
975 uint32_t x1_start = start_count (buf);
977 uint32_t x2_start = start_count (buf);
979 end_count_u32 (buf, x2_start);
980 end_count_u32 (buf, x1_start);
981 uint32_t x3_start = start_count (buf);
983 end_count_u32 (buf, x3_start);
984 end_count_u32 (buf, formats_start);
987 put_u32 (buf, table->n_dimensions);
988 int *x2 = xnmalloc (table->n_dimensions, sizeof *x2);
989 for (size_t i = 0; i < table->axes[PIVOT_AXIS_LAYER].n_dimensions; i++)
991 for (size_t i = 0; i < table->axes[PIVOT_AXIS_ROW].n_dimensions; i++)
992 x2[i + table->axes[PIVOT_AXIS_LAYER].n_dimensions] = 0;
993 for (size_t i = 0; i < table->axes[PIVOT_AXIS_COLUMN].n_dimensions; i++)
995 + table->axes[PIVOT_AXIS_LAYER].n_dimensions
996 + table->axes[PIVOT_AXIS_ROW].n_dimensions] = 1;
997 for (size_t i = 0; i < table->n_dimensions; i++)
999 const struct pivot_dimension *d = table->dimensions[i];
1000 put_value (buf, d->root->name);
1001 put_byte (buf, 0); /* x1 */
1002 put_byte (buf, x2[i]);
1003 put_u32 (buf, 2); /* x3 */
1004 put_bool (buf, !d->root->show_label);
1005 put_bool (buf, d->hide_all_labels);
1009 put_u32 (buf, d->root->n_subs);
1010 for (size_t j = 0; j < d->root->n_subs; j++)
1011 put_category (buf, d->root->subs[j]);
1016 put_u32 (buf, table->axes[PIVOT_AXIS_LAYER].n_dimensions);
1017 put_u32 (buf, table->axes[PIVOT_AXIS_ROW].n_dimensions);
1018 put_u32 (buf, table->axes[PIVOT_AXIS_COLUMN].n_dimensions);
1019 for (size_t i = 0; i < table->axes[PIVOT_AXIS_LAYER].n_dimensions; i++)
1020 put_u32 (buf, table->axes[PIVOT_AXIS_LAYER].dimensions[i]->top_index);
1021 for (size_t i = 0; i < table->axes[PIVOT_AXIS_ROW].n_dimensions; i++)
1022 put_u32 (buf, table->axes[PIVOT_AXIS_ROW].dimensions[i]->top_index);
1023 for (size_t i = 0; i < table->axes[PIVOT_AXIS_COLUMN].n_dimensions; i++)
1024 put_u32 (buf, table->axes[PIVOT_AXIS_COLUMN].dimensions[i]->top_index);
1027 put_u32 (buf, hmap_count (&table->cells));
1028 const struct pivot_cell *cell;
1029 HMAP_FOR_EACH (cell, struct pivot_cell, hmap_node, &table->cells)
1032 for (size_t j = 0; j < table->n_dimensions; j++)
1033 index = (table->dimensions[j]->n_leaves * index) + cell->idx[j];
1034 put_u64 (buf, index);
1036 put_value (buf, cell->value);
1041 spv_writer_put_table (struct spv_writer *w, const struct pivot_table *table)
1043 struct pivot_table *table_rw = CONST_CAST (struct pivot_table *, table);
1044 if (!table_rw->subtype)
1045 table_rw->subtype = pivot_value_new_user_text ("unknown", -1);
1047 int table_id = ++w->n_tables;
1049 bool initial_depth = w->heading_depth;
1051 spv_writer_open_file (w);
1053 start_container (w);
1055 char *title = pivot_value_to_string (table->title, table);
1056 char *subtype = pivot_value_to_string (table->subtype, table);
1058 start_elem (w, "label");
1059 write_text (w, title);
1062 start_elem (w, "vtb:table");
1063 write_attr (w, "commandName", table->command_c);
1064 write_attr (w, "type", "table"); /* XXX */
1065 write_attr (w, "subType", subtype);
1066 write_attr_format (w, "tableId", "%d", table_id);
1071 start_elem (w, "vtb:tableStructure");
1072 start_elem (w, "vtb:dataPath");
1073 char *data_path = xasprintf ("%010d_lightTableData.bin", table_id);
1074 write_text (w, data_path);
1075 end_elem (w); /* vtb:dataPath */
1076 end_elem (w); /* vtb:tableStructure */
1077 end_elem (w); /* vtb:table */
1078 end_elem (w); /* container */
1081 spv_writer_close_file (w, "");
1083 struct buf buf = { NULL, 0, 0 };
1084 put_light_table (&buf, table_id, table);
1085 zip_writer_add_memory (w->zw, data_path, buf.data, buf.len);