From a27b6de38e3f87bbefeb8fe9fcd24e268dc63675 Mon Sep 17 00:00:00 2001 From: John McNamara Date: Sun, 8 Jun 2014 17:40:59 +0100 Subject: [PATCH] Initial commit --- .gitignore | 53 + .indent.pro | 70 + Changes.txt | 10 + LICENSE.txt | 87 + Makefile | 68 + Readme.md | 8 + dev/release/fix_dox.sh | 9 + dev/release/fix_example_docs.pl | 75 + docs/Doxyfile | 2349 +++++++++++++++++ docs/DoxygenLayout.xml | 177 ++ docs/Makefile | 25 + docs/customdoxygen.css | 1482 +++++++++++ docs/images/anatomy.png | Bin 0 -> 71332 bytes docs/images/date_example01.png | Bin 0 -> 69188 bytes docs/images/date_example02.png | Bin 0 -> 69202 bytes docs/images/date_example03.png | Bin 0 -> 96437 bytes docs/images/demo.png | Bin 0 -> 65551 bytes docs/images/format_font.png | Bin 0 -> 68477 bytes docs/images/format_set_font_name.png | Bin 0 -> 56727 bytes docs/images/format_set_num_format.png | Bin 0 -> 79278 bytes docs/images/formats_intro.png | Bin 0 -> 71948 bytes docs/images/formats_set_bg_color.png | Bin 0 -> 55707 bytes docs/images/hello01.png | Bin 0 -> 63966 bytes docs/images/logo.png | Bin 0 -> 6802 bytes docs/images/text_indent.png | Bin 0 -> 66311 bytes docs/images/tutorial01.png | Bin 0 -> 70503 bytes docs/images/tutorial02.png | Bin 0 -> 73535 bytes docs/images/tutorial03.png | Bin 0 -> 80720 bytes docs/images/utf8.png | Bin 0 -> 65275 bytes docs/images/workbook01.png | Bin 0 -> 64480 bytes docs/images/workbook02.png | Bin 0 -> 59917 bytes docs/images/worksheet02.png | Bin 0 -> 58156 bytes docs/images/write_formula01.png | Bin 0 -> 69439 bytes docs/images/write_number01.png | Bin 0 -> 57882 bytes docs/images/write_number02.png | Bin 0 -> 57451 bytes docs/images/write_string01.png | Bin 0 -> 56663 bytes docs/images/write_string02.png | Bin 0 -> 57030 bytes docs/images/write_string03.png | Bin 0 -> 57373 bytes docs/src/author.dox | 19 + docs/src/bugs.dox | 141 + docs/src/cworkbook.dox | 495 ++++ docs/src/cworksheet.dox | 2247 ++++++++++++++++ docs/src/examples.dox | 95 + docs/src/faq.dox | 67 + docs/src/getting_started.dox | 146 + docs/src/introduction.dox | 37 + docs/src/license.dox | 94 + docs/src/mainpage.dox | 43 + docs/src/running_the_tests.dox | 113 + docs/src/tutorial01.dox | 112 + docs/src/tutorial02.dox | 54 + docs/src/tutorial03.dox | 90 + docs/src/working_with_colors.dox | 42 + docs/src/working_with_dates.dox | 80 + docs/src/working_with_formats.dox | 146 + docs/src/working_with_memory.dox | 18 + examples/Makefile | 44 + examples/anatomy.c | 56 + examples/dates_and_times01.c | 39 + examples/dates_and_times02.c | 32 + examples/dates_and_times03.c | 67 + examples/demo.c | 37 + examples/format_font.c | 43 + examples/format_num_format.c | 65 + examples/hello.c | 21 + examples/tutorial1.c | 50 + examples/tutorial2.c | 63 + examples/tutorial3.c | 70 + examples/utf8.c | 20 + include/xlsxwriter.h | 25 + include/xlsxwriter/app.h | 79 + include/xlsxwriter/common.h | 96 + include/xlsxwriter/content_types.h | 70 + include/xlsxwriter/core.h | 51 + include/xlsxwriter/format.h | 1190 +++++++++ include/xlsxwriter/hash_table.h | 73 + include/xlsxwriter/packager.h | 69 + include/xlsxwriter/relationships.h | 82 + include/xlsxwriter/shared_strings.h | 84 + include/xlsxwriter/styles.h | 78 + include/xlsxwriter/theme.h | 50 + .../xlsxwriter/third_party/minizip/ioapi.h | 208 ++ include/xlsxwriter/third_party/minizip/zip.h | 365 +++ include/xlsxwriter/third_party/queue.h | 694 +++++ include/xlsxwriter/utility.h | 84 + include/xlsxwriter/workbook.h | 244 ++ include/xlsxwriter/worksheet.h | 430 +++ include/xlsxwriter/xmlwriter.h | 166 ++ lib/.gitignore | 0 src/Makefile | 71 + src/app.c | 422 +++ src/content_types.c | 315 +++ src/core.c | 290 ++ src/format.c | 728 +++++ src/hash_table.c | 218 ++ src/packager.c | 456 ++++ src/relationships.c | 242 ++ src/shared_strings.c | 306 +++ src/styles.c | 1088 ++++++++ src/theme.c | 81 + src/utility.c | 248 ++ src/workbook.c | 707 +++++ src/worksheet.c | 904 +++++++ src/xmlwriter.c | 294 +++ test/functional/base_test_class.py | 57 + test/functional/helper_functions.py | 226 ++ test/functional/src/Makefile | 44 + test/functional/src/test_data01.c | 20 + test/functional/src/test_data02.c | 26 + test/functional/src/test_data03.c | 21 + test/functional/src/test_data04.c | 24 + test/functional/src/test_data05.c | 23 + test/functional/src/test_data06.c | 33 + test/functional/src/test_data07.c | 20 + test/functional/src/test_format01.c | 39 + test/functional/src/test_format02.c | 40 + test/functional/src/test_format06.c | 31 + test/functional/src/test_format07.c | 34 + test/functional/src/test_format08.c | 46 + test/functional/src/test_format09.c | 41 + test/functional/src/test_format10.c | 36 + test/functional/test_formatting.py | 37 + test/functional/test_write_data.py | 38 + test/functional/xlsx_files/data01.xlsx | Bin 0 -> 7311 bytes test/functional/xlsx_files/data02.xlsx | Bin 0 -> 7032 bytes test/functional/xlsx_files/data03.xlsx | Bin 0 -> 7039 bytes test/functional/xlsx_files/data04.xlsx | Bin 0 -> 7390 bytes test/functional/xlsx_files/data05.xlsx | Bin 0 -> 7352 bytes test/functional/xlsx_files/data06.xlsx | Bin 0 -> 7419 bytes test/functional/xlsx_files/data07.xlsx | Bin 0 -> 7297 bytes test/functional/xlsx_files/format01.xlsx | Bin 0 -> 8313 bytes test/functional/xlsx_files/format02.xlsx | Bin 0 -> 7450 bytes test/functional/xlsx_files/format06.xlsx | Bin 0 -> 7078 bytes test/functional/xlsx_files/format07.xlsx | Bin 0 -> 7138 bytes test/functional/xlsx_files/format08.xlsx | Bin 0 -> 7164 bytes test/functional/xlsx_files/format09.xlsx | Bin 0 -> 7169 bytes test/functional/xlsx_files/format10.xlsx | Bin 0 -> 7123 bytes test/unit/Makefile | 96 + test/unit/Makefile.unit | 57 + test/unit/app/Makefile | 8 + test/unit/app/test_app.cpp | 168 ++ test/unit/app/test_app_xml_declaration.cpp | 28 + test/unit/content_types/Makefile | 8 + .../unit/content_types/test_content_types.cpp | 50 + .../test_content_types_write_default.cpp | 29 + .../test_content_types_write_override.cpp | 29 + .../test_content_types_xml_declaration.cpp | 28 + test/unit/core/Makefile | 8 + test/unit/core/test_core.cpp | 109 + test/unit/core/test_core_xml_declaration.cpp | 28 + test/unit/helper.h | 124 + test/unit/relationships/Makefile | 8 + .../unit/relationships/test_relationships.cpp | 70 + .../test_relationships_xml_declaration.cpp | 28 + test/unit/sst/Makefile | 8 + test/unit/sst/test_shared_strings.cpp | 85 + test/unit/sst/test_sst_xml_declaration.cpp | 28 + test/unit/styles/Makefile | 8 + test/unit/styles/test_styles.cpp | 197 ++ test/unit/styles/test_styles_write_border.cpp | 31 + .../unit/styles/test_styles_write_borders.cpp | 37 + .../styles/test_styles_write_cell_style.cpp | 29 + .../test_styles_write_cell_style_xfs.cpp | 29 + .../styles/test_styles_write_cell_styles.cpp | 29 + .../styles/test_styles_write_cell_xfs.cpp | 35 + .../styles/test_styles_write_default_fill.cpp | 29 + test/unit/styles/test_styles_write_dxfs.cpp | 29 + test/unit/styles/test_styles_write_fills.cpp | 30 + test/unit/styles/test_styles_write_font.cpp | 415 +++ .../styles/test_styles_write_font_color.cpp | 30 + .../styles/test_styles_write_font_family.cpp | 30 + .../styles/test_styles_write_font_name.cpp | 30 + .../styles/test_styles_write_font_scheme.cpp | 30 + .../unit/styles/test_styles_write_font_sz.cpp | 30 + test/unit/styles/test_styles_write_fonts.cpp | 35 + .../styles/test_styles_write_style_sheet.cpp | 30 + .../styles/test_styles_write_style_xf.cpp | 29 + .../styles/test_styles_write_table_styles.cpp | 29 + test/unit/styles/test_styles_write_xf.cpp | 851 ++++++ .../styles/test_styles_xml_declaration.cpp | 28 + test/unit/utility/Makefile | 8 + test/unit/utility/test_datetime_to_excel.cpp | 638 +++++ test/unit/utility/test_xl_col_to_name.cpp | 43 + test/unit/utility/test_xl_range.cpp | 53 + test/unit/utility/test_xl_row_col_to_cell.cpp | 63 + test/unit/workbook/Makefile | 8 + test/unit/workbook/test_workbook.cpp | 112 + .../test_workbook_write_book_views.cpp | 30 + .../workbook/test_workbook_write_calc_pr.cpp | 30 + .../test_workbook_write_file_version.cpp | 29 + .../workbook/test_workbook_write_sheet.cpp | 66 + .../workbook/test_workbook_write_sheets.cpp | 32 + .../workbook/test_workbook_write_workbook.cpp | 29 + .../test_workbook_write_workbook_pr.cpp | 29 + .../test_workbook_write_workbook_view.cpp | 70 + .../test_workbook_xml_declaration.cpp | 28 + test/unit/worksheet/Makefile | 8 + test/unit/worksheet/test_worksheet.cpp | 137 + test/unit/worksheet/test_worksheet_spans.cpp | 316 +++ .../test_worksheet_write_dimension.cpp | 28 + .../test_worksheet_write_page_margins.cpp | 28 + .../worksheet/test_worksheet_write_row.cpp | 31 + .../test_worksheet_write_sheet_data.cpp | 29 + .../test_worksheet_write_sheet_format_pr.cpp | 29 + .../test_worksheet_write_sheet_view.cpp | 30 + .../test_worksheet_write_sheet_views.cpp | 30 + .../test_worksheet_xml_declaration.cpp | 28 + test/unit/xmlwriter/Makefile | 8 + test/unit/xmlwriter/test_xmlwriter.cpp | 226 ++ third_party/minizip/Makefile | 23 + third_party/minizip/Makefile.am | 45 + third_party/minizip/Makefile.orig | 25 + third_party/minizip/MiniZip64_Changes.txt | 6 + third_party/minizip/MiniZip64_info.txt | 74 + third_party/minizip/README.txt | 5 + third_party/minizip/configure.ac | 32 + third_party/minizip/crypt.h | 131 + third_party/minizip/ioapi.c | 247 ++ third_party/minizip/ioapi.h | 208 ++ third_party/minizip/iowin32.c | 461 ++++ third_party/minizip/iowin32.h | 28 + third_party/minizip/make_vms.com | 25 + third_party/minizip/miniunz.c | 660 +++++ third_party/minizip/miniunzip.1 | 63 + third_party/minizip/minizip.1 | 46 + third_party/minizip/minizip.c | 520 ++++ third_party/minizip/minizip.pc.in | 12 + third_party/minizip/mztools.c | 291 ++ third_party/minizip/mztools.h | 37 + third_party/minizip/unzip.c | 2125 +++++++++++++++ third_party/minizip/unzip.h | 437 +++ third_party/minizip/zip.c | 2007 ++++++++++++++ third_party/minizip/zip.h | 365 +++ 233 files changed, 33519 insertions(+) create mode 100644 .gitignore create mode 100644 .indent.pro create mode 100644 Changes.txt create mode 100644 LICENSE.txt create mode 100644 Makefile create mode 100644 Readme.md create mode 100755 dev/release/fix_dox.sh create mode 100644 dev/release/fix_example_docs.pl create mode 100644 docs/Doxyfile create mode 100644 docs/DoxygenLayout.xml create mode 100644 docs/Makefile create mode 100644 docs/customdoxygen.css create mode 100644 docs/images/anatomy.png create mode 100644 docs/images/date_example01.png create mode 100644 docs/images/date_example02.png create mode 100644 docs/images/date_example03.png create mode 100644 docs/images/demo.png create mode 100644 docs/images/format_font.png create mode 100644 docs/images/format_set_font_name.png create mode 100644 docs/images/format_set_num_format.png create mode 100644 docs/images/formats_intro.png create mode 100644 docs/images/formats_set_bg_color.png create mode 100644 docs/images/hello01.png create mode 100644 docs/images/logo.png create mode 100644 docs/images/text_indent.png create mode 100644 docs/images/tutorial01.png create mode 100644 docs/images/tutorial02.png create mode 100644 docs/images/tutorial03.png create mode 100644 docs/images/utf8.png create mode 100644 docs/images/workbook01.png create mode 100644 docs/images/workbook02.png create mode 100644 docs/images/worksheet02.png create mode 100644 docs/images/write_formula01.png create mode 100644 docs/images/write_number01.png create mode 100644 docs/images/write_number02.png create mode 100644 docs/images/write_string01.png create mode 100644 docs/images/write_string02.png create mode 100644 docs/images/write_string03.png create mode 100644 docs/src/author.dox create mode 100644 docs/src/bugs.dox create mode 100644 docs/src/cworkbook.dox create mode 100644 docs/src/cworksheet.dox create mode 100644 docs/src/examples.dox create mode 100644 docs/src/faq.dox create mode 100644 docs/src/getting_started.dox create mode 100644 docs/src/introduction.dox create mode 100644 docs/src/license.dox create mode 100644 docs/src/mainpage.dox create mode 100644 docs/src/running_the_tests.dox create mode 100644 docs/src/tutorial01.dox create mode 100644 docs/src/tutorial02.dox create mode 100644 docs/src/tutorial03.dox create mode 100644 docs/src/working_with_colors.dox create mode 100644 docs/src/working_with_dates.dox create mode 100644 docs/src/working_with_formats.dox create mode 100644 docs/src/working_with_memory.dox create mode 100644 examples/Makefile create mode 100644 examples/anatomy.c create mode 100644 examples/dates_and_times01.c create mode 100644 examples/dates_and_times02.c create mode 100644 examples/dates_and_times03.c create mode 100644 examples/demo.c create mode 100644 examples/format_font.c create mode 100644 examples/format_num_format.c create mode 100644 examples/hello.c create mode 100644 examples/tutorial1.c create mode 100644 examples/tutorial2.c create mode 100644 examples/tutorial3.c create mode 100644 examples/utf8.c create mode 100644 include/xlsxwriter.h create mode 100644 include/xlsxwriter/app.h create mode 100644 include/xlsxwriter/common.h create mode 100644 include/xlsxwriter/content_types.h create mode 100644 include/xlsxwriter/core.h create mode 100644 include/xlsxwriter/format.h create mode 100644 include/xlsxwriter/hash_table.h create mode 100644 include/xlsxwriter/packager.h create mode 100644 include/xlsxwriter/relationships.h create mode 100644 include/xlsxwriter/shared_strings.h create mode 100644 include/xlsxwriter/styles.h create mode 100644 include/xlsxwriter/theme.h create mode 100644 include/xlsxwriter/third_party/minizip/ioapi.h create mode 100644 include/xlsxwriter/third_party/minizip/zip.h create mode 100644 include/xlsxwriter/third_party/queue.h create mode 100644 include/xlsxwriter/utility.h create mode 100644 include/xlsxwriter/workbook.h create mode 100644 include/xlsxwriter/worksheet.h create mode 100644 include/xlsxwriter/xmlwriter.h create mode 100644 lib/.gitignore create mode 100644 src/Makefile create mode 100644 src/app.c create mode 100644 src/content_types.c create mode 100644 src/core.c create mode 100644 src/format.c create mode 100644 src/hash_table.c create mode 100644 src/packager.c create mode 100644 src/relationships.c create mode 100644 src/shared_strings.c create mode 100644 src/styles.c create mode 100644 src/theme.c create mode 100644 src/utility.c create mode 100644 src/workbook.c create mode 100644 src/worksheet.c create mode 100644 src/xmlwriter.c create mode 100644 test/functional/base_test_class.py create mode 100644 test/functional/helper_functions.py create mode 100644 test/functional/src/Makefile create mode 100644 test/functional/src/test_data01.c create mode 100644 test/functional/src/test_data02.c create mode 100644 test/functional/src/test_data03.c create mode 100644 test/functional/src/test_data04.c create mode 100644 test/functional/src/test_data05.c create mode 100644 test/functional/src/test_data06.c create mode 100644 test/functional/src/test_data07.c create mode 100644 test/functional/src/test_format01.c create mode 100644 test/functional/src/test_format02.c create mode 100644 test/functional/src/test_format06.c create mode 100644 test/functional/src/test_format07.c create mode 100644 test/functional/src/test_format08.c create mode 100644 test/functional/src/test_format09.c create mode 100644 test/functional/src/test_format10.c create mode 100644 test/functional/test_formatting.py create mode 100644 test/functional/test_write_data.py create mode 100644 test/functional/xlsx_files/data01.xlsx create mode 100644 test/functional/xlsx_files/data02.xlsx create mode 100644 test/functional/xlsx_files/data03.xlsx create mode 100644 test/functional/xlsx_files/data04.xlsx create mode 100644 test/functional/xlsx_files/data05.xlsx create mode 100644 test/functional/xlsx_files/data06.xlsx create mode 100644 test/functional/xlsx_files/data07.xlsx create mode 100644 test/functional/xlsx_files/format01.xlsx create mode 100644 test/functional/xlsx_files/format02.xlsx create mode 100644 test/functional/xlsx_files/format06.xlsx create mode 100644 test/functional/xlsx_files/format07.xlsx create mode 100644 test/functional/xlsx_files/format08.xlsx create mode 100644 test/functional/xlsx_files/format09.xlsx create mode 100644 test/functional/xlsx_files/format10.xlsx create mode 100644 test/unit/Makefile create mode 100644 test/unit/Makefile.unit create mode 100644 test/unit/app/Makefile create mode 100644 test/unit/app/test_app.cpp create mode 100644 test/unit/app/test_app_xml_declaration.cpp create mode 100644 test/unit/content_types/Makefile create mode 100644 test/unit/content_types/test_content_types.cpp create mode 100644 test/unit/content_types/test_content_types_write_default.cpp create mode 100644 test/unit/content_types/test_content_types_write_override.cpp create mode 100644 test/unit/content_types/test_content_types_xml_declaration.cpp create mode 100644 test/unit/core/Makefile create mode 100644 test/unit/core/test_core.cpp create mode 100644 test/unit/core/test_core_xml_declaration.cpp create mode 100644 test/unit/helper.h create mode 100644 test/unit/relationships/Makefile create mode 100644 test/unit/relationships/test_relationships.cpp create mode 100644 test/unit/relationships/test_relationships_xml_declaration.cpp create mode 100644 test/unit/sst/Makefile create mode 100644 test/unit/sst/test_shared_strings.cpp create mode 100644 test/unit/sst/test_sst_xml_declaration.cpp create mode 100644 test/unit/styles/Makefile create mode 100644 test/unit/styles/test_styles.cpp create mode 100644 test/unit/styles/test_styles_write_border.cpp create mode 100644 test/unit/styles/test_styles_write_borders.cpp create mode 100644 test/unit/styles/test_styles_write_cell_style.cpp create mode 100644 test/unit/styles/test_styles_write_cell_style_xfs.cpp create mode 100644 test/unit/styles/test_styles_write_cell_styles.cpp create mode 100644 test/unit/styles/test_styles_write_cell_xfs.cpp create mode 100644 test/unit/styles/test_styles_write_default_fill.cpp create mode 100644 test/unit/styles/test_styles_write_dxfs.cpp create mode 100644 test/unit/styles/test_styles_write_fills.cpp create mode 100644 test/unit/styles/test_styles_write_font.cpp create mode 100644 test/unit/styles/test_styles_write_font_color.cpp create mode 100644 test/unit/styles/test_styles_write_font_family.cpp create mode 100644 test/unit/styles/test_styles_write_font_name.cpp create mode 100644 test/unit/styles/test_styles_write_font_scheme.cpp create mode 100644 test/unit/styles/test_styles_write_font_sz.cpp create mode 100644 test/unit/styles/test_styles_write_fonts.cpp create mode 100644 test/unit/styles/test_styles_write_style_sheet.cpp create mode 100644 test/unit/styles/test_styles_write_style_xf.cpp create mode 100644 test/unit/styles/test_styles_write_table_styles.cpp create mode 100644 test/unit/styles/test_styles_write_xf.cpp create mode 100644 test/unit/styles/test_styles_xml_declaration.cpp create mode 100644 test/unit/utility/Makefile create mode 100644 test/unit/utility/test_datetime_to_excel.cpp create mode 100644 test/unit/utility/test_xl_col_to_name.cpp create mode 100644 test/unit/utility/test_xl_range.cpp create mode 100644 test/unit/utility/test_xl_row_col_to_cell.cpp create mode 100644 test/unit/workbook/Makefile create mode 100644 test/unit/workbook/test_workbook.cpp create mode 100644 test/unit/workbook/test_workbook_write_book_views.cpp create mode 100644 test/unit/workbook/test_workbook_write_calc_pr.cpp create mode 100644 test/unit/workbook/test_workbook_write_file_version.cpp create mode 100644 test/unit/workbook/test_workbook_write_sheet.cpp create mode 100644 test/unit/workbook/test_workbook_write_sheets.cpp create mode 100644 test/unit/workbook/test_workbook_write_workbook.cpp create mode 100644 test/unit/workbook/test_workbook_write_workbook_pr.cpp create mode 100644 test/unit/workbook/test_workbook_write_workbook_view.cpp create mode 100644 test/unit/workbook/test_workbook_xml_declaration.cpp create mode 100644 test/unit/worksheet/Makefile create mode 100644 test/unit/worksheet/test_worksheet.cpp create mode 100644 test/unit/worksheet/test_worksheet_spans.cpp create mode 100644 test/unit/worksheet/test_worksheet_write_dimension.cpp create mode 100644 test/unit/worksheet/test_worksheet_write_page_margins.cpp create mode 100644 test/unit/worksheet/test_worksheet_write_row.cpp create mode 100644 test/unit/worksheet/test_worksheet_write_sheet_data.cpp create mode 100644 test/unit/worksheet/test_worksheet_write_sheet_format_pr.cpp create mode 100644 test/unit/worksheet/test_worksheet_write_sheet_view.cpp create mode 100644 test/unit/worksheet/test_worksheet_write_sheet_views.cpp create mode 100644 test/unit/worksheet/test_worksheet_xml_declaration.cpp create mode 100644 test/unit/xmlwriter/Makefile create mode 100644 test/unit/xmlwriter/test_xmlwriter.cpp create mode 100644 third_party/minizip/Makefile create mode 100644 third_party/minizip/Makefile.am create mode 100644 third_party/minizip/Makefile.orig create mode 100644 third_party/minizip/MiniZip64_Changes.txt create mode 100644 third_party/minizip/MiniZip64_info.txt create mode 100644 third_party/minizip/README.txt create mode 100644 third_party/minizip/configure.ac create mode 100644 third_party/minizip/crypt.h create mode 100644 third_party/minizip/ioapi.c create mode 100644 third_party/minizip/ioapi.h create mode 100644 third_party/minizip/iowin32.c create mode 100644 third_party/minizip/iowin32.h create mode 100644 third_party/minizip/make_vms.com create mode 100644 third_party/minizip/miniunz.c create mode 100644 third_party/minizip/miniunzip.1 create mode 100644 third_party/minizip/minizip.1 create mode 100644 third_party/minizip/minizip.c create mode 100644 third_party/minizip/minizip.pc.in create mode 100644 third_party/minizip/mztools.c create mode 100644 third_party/minizip/mztools.h create mode 100644 third_party/minizip/unzip.c create mode 100644 third_party/minizip/unzip.h create mode 100644 third_party/minizip/zip.c create mode 100644 third_party/minizip/zip.h diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..c745f6aa --- /dev/null +++ b/.gitignore @@ -0,0 +1,53 @@ +*.a +*.o +*.so +*.to +*.lo +*.la +*.dylib +test_* +!test_*.c +!test_*.cpp +!test_*.py +*.tar.gz +*~ +TAGS +.#* +*# +~*xlsx +*.xlsx +!test/functional/xlsx_files/*.xlsx +*.pyc +.cproject +.project +.pydevproject +.settings/ +.DS_Store +__pycache__ +docs/html +docs/latex +.deps +.dirstamp +_temp.c +examples/* +!examples/*.c +!examples/Makefile + + +third_party/gtest-1.7.0/Makefile +third_party/gtest-1.7.0/build-aux/config.h +third_party/gtest-1.7.0/build-aux/stamp-h1 +third_party/gtest-1.7.0/config.log +third_party/gtest-1.7.0/config.status +third_party/gtest-1.7.0/lib/ +third_party/gtest-1.7.0/libtool +third_party/gtest-1.7.0/scripts/gtest-config + +third_party/zlib-1.2.8/configure.log +third_party/zlib-1.2.8/contrib/minizip/miniunz +third_party/zlib-1.2.8/contrib/minizip/minizip +third_party/zlib-1.2.8/example +third_party/zlib-1.2.8/examplesh +third_party/zlib-1.2.8/minigzip +third_party/zlib-1.2.8/minigzipsh +third_party/zlib-1.2.8/zlib.pc diff --git a/.indent.pro b/.indent.pro new file mode 100644 index 00000000..588c79e0 --- /dev/null +++ b/.indent.pro @@ -0,0 +1,70 @@ +/* + * Indent rules for libxlsxwriter. + * + * The rules for user defined typedefs can be update as follows: + * + perl -i -pe 'print and last if /[l]ibxlsxwriter typedefs/' .indent.pro + ack -h typedef include src | perl -lne 'print "-T $1" if /\w+\s+\w+\s+(\w+)/' | sort >> .indent.pro + * + */ + +/* Command line options used with GNU indent 2.2.10 */ +--braces-on-if-line +--braces-on-struct-decl-line +--case-indentation 4 +--continue-at-parentheses +--declaration-comment-column 0 +--format-first-column-comments +--honour-newlines +--ignore-profile +--indent-label 0 +--indent-level 4 +--no-space-after-function-call-names +--no-tabs +--swallow-optional-blank-lines + +/* Typedefs used in the code. */ +-T int8_t +-T int16_t +-T int32_t +-T int64_t +-T uint8_t +-T uint16_t +-T uint32_t +-T uint64_t +-T ssize_t +-T size_t +-T time_t + +-T LIST_ENTRY +-T SLIST_ENTRY +-T STAILQ_ENTRY +-T TAILQ_ENTRY + +/* libxlsxwriter typedefs. */ +-T lxw_app +-T lxw_border +-T lxw_cell +-T lxw_color_t +-T lxw_content_types +-T lxw_core +-T lxw_datetime +-T lxw_doc_properties +-T lxw_fill +-T lxw_font +-T lxw_format +-T lxw_hash_element +-T lxw_hash_table +-T lxw_heading_pair +-T lxw_packager +-T lxw_part_name +-T lxw_rel_tuple +-T lxw_relationships +-T lxw_row +-T lxw_sst +-T lxw_styles +-T lxw_theme +-T lxw_tuple +-T lxw_workbook +-T lxw_worksheet +-T lxw_worksheet_init_data diff --git a/Changes.txt b/Changes.txt new file mode 100644 index 00000000..93eaea09 --- /dev/null +++ b/Changes.txt @@ -0,0 +1,10 @@ +/** +@page changes Changes + + +## 0.0.1 June 8 2014 + +- First GitHub release. + + +*/ diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 00000000..026c4962 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,87 @@ + +Libxlsxwriter is released under a FreeBSD license: + + Copyright (c) 2013, John McNamara + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + The views and conclusions contained in the software and documentation are those + of the authors and should not be interpreted as representing official policies, + either expressed or implied, of the FreeBSD Project. + + +Libxlsxwriter includes `queue.h` from FreeBSD and the `minizip` component of +`zlib` which have the following licenses: + + +Queue.h from FreeBSD: + + Copyright (c) 1991, 1993 + The Regents of the University of California. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 4. Neither the name of the University nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + + +Zlib has the following License/Copyright: + + (C) 1995-2013 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..63a5095c --- /dev/null +++ b/Makefile @@ -0,0 +1,68 @@ +############################################################################### +# +# Makefile for libxlsxwriter library. +# +# Copyright 2014, John McNamara, jmcnamara@cpan.org +# + +# Keep the output quiet by default. +Q=@ +ifdef V +Q= +endif + +.PHONY: docs tags examples + +# Build the libs. +all : + $(Q)make -C third_party/minizip + $(Q)make -C src + +# Build the example programs. +examples: + $(Q)make -C examples + +# Clean src and test directories. +clean : + $(Q)make clean -C src + $(Q)make clean -C test/unit + $(Q)make clean -C test/functional/src + $(Q)make clean -C examples + $(Q)make clean -C third_party/minizip + $(Q)rm -rf docs/html + +# Run the unit tests. +test : all test_functional test_unit + $(Q)make test -C test/unit + +# Run the functional tests. +test_functional : all + $(Q)make -C test/functional/src + $(Q)py.test test/functional -v + +# Run all tests. +test_unit : all + @echo "Compiling unit tests ..." + $(Q)make test -C test/unit + +# Test the functional test exes with valgrind. +test_valgrind : all + $(Q)make -C test/functional/src test_valgrind + $(Q)make -C examples test_valgrind + +# Indent the source files with the .indent.pro settings. +indent: + $(Q)gindent src/*.c include/*.h + +tags: + $(Q)rm -f TAGS + $(Q)etags src/*.c include/*.h include/xlsxwriter/*.h + +# Build the doxygen docs. +docs: + $(Q)make -C docs + +# Simple minded install. +install: + $(Q)cp -r include/* /usr/include + $(Q)cp lib/* /usr/lib diff --git a/Readme.md b/Readme.md new file mode 100644 index 00000000..bd2df40e --- /dev/null +++ b/Readme.md @@ -0,0 +1,8 @@ + + + +The libxlsxwriter library. + + +Work in Progress. Check back later. + diff --git a/dev/release/fix_dox.sh b/dev/release/fix_dox.sh new file mode 100755 index 00000000..499fa90f --- /dev/null +++ b/dev/release/fix_dox.sh @@ -0,0 +1,9 @@ +#/bin/bash + +# Perform some minor clean-ups/fixes to the docs. + +perl -i -pe "s/Related Pages/Contents/" html/*.html +perl -i -pe "s/Related Pages/Contents/" html/*.html +perl -i -pe "s/_page/_8h/" html/pages.html +perl -i ../dev/release/fix_example_docs.pl html/examples.html + diff --git a/dev/release/fix_example_docs.pl b/dev/release/fix_example_docs.pl new file mode 100644 index 00000000..d8742aad --- /dev/null +++ b/dev/release/fix_example_docs.pl @@ -0,0 +1,75 @@ +#!/usr/bin/perl + +# +# Simple program to arrange the example programs in a user defined order +# instead or sorted order. Also add a caption. +# +# Copyright 2014, John McNamara, jmcnamara@cpan.org +# +use warnings; +use strict; + +# The required example order and descriptions. +my @examples = ( + [ 'hello.c', 'A simple hello world example' ], + [ 'anatomy.c', 'The anatomy of a libxlsxwriter program' ], + [ 'demo.c', 'Demo of some of the libxlsxwriter features' ], + [ 'tutorial1.c', 'Tutorial 1 from the documentation' ], + [ 'tutorial2.c', 'Tutorial 2 from the documentation' ], + [ 'tutorial3.c', 'Tutorial 3 from the documentation' ], + [ 'format_font.c', 'Example of writing data with font formatting' ], + [ 'format_num_format.c', 'Example of writing data with number formatting' ], + [ 'dates_and_times01.c', 'Writing dates and times with numbers' ], + [ 'dates_and_times02.c', 'Writing dates and times with datetime' ], + [ 'dates_and_times03.c', 'Dates and times with different formats' ], + [ 'utf8.c', 'A example of some UTF-8 text' ], +); + +# Convert the array refs to a hash for lookups. +my %examples; +for my $example (@examples) { + $examples{$example->[0]} = 1; +} + +my $in_list = 0; + +while ( my $line = <> ) { + + # Print all lines not in the