bonio-axlsx 2.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.yardopts +9 -0
- data/.yardopts_guide +19 -0
- data/CHANGELOG.md +239 -0
- data/LICENSE +22 -0
- data/README.md +258 -0
- data/Rakefile +30 -0
- data/examples/2010_comments.rb +17 -0
- data/examples/anchor_swapping.rb +28 -0
- data/examples/auto_filter.rb +25 -0
- data/examples/basic_charts.rb +58 -0
- data/examples/chart_colors.rb +88 -0
- data/examples/colored_links.rb +59 -0
- data/examples/conditional_formatting/example_conditional_formatting.rb +89 -0
- data/examples/conditional_formatting/getting_barred.rb +37 -0
- data/examples/conditional_formatting/hitting_the_high_notes.rb +37 -0
- data/examples/conditional_formatting/scaled_colors.rb +39 -0
- data/examples/conditional_formatting/stop_and_go.rb +37 -0
- data/examples/data_validation.rb +50 -0
- data/examples/example.rb +875 -0
- data/examples/extractive.rb +45 -0
- data/examples/image1.jpeg +0 -0
- data/examples/ios_preview.rb +14 -0
- data/examples/merge_cells.rb +17 -0
- data/examples/no_grid_with_borders.rb +18 -0
- data/examples/page_setup.rb +11 -0
- data/examples/pivot_table.rb +39 -0
- data/examples/pivot_test.rb +63 -0
- data/examples/sheet_protection.rb +10 -0
- data/examples/skydrive/real_example.rb +63 -0
- data/examples/split.rb +16 -0
- data/examples/styles.rb +66 -0
- data/examples/underline.rb +13 -0
- data/examples/wrap_text.rb +21 -0
- data/lib/axlsx.rb +168 -0
- data/lib/axlsx/content_type/abstract_content_type.rb +32 -0
- data/lib/axlsx/content_type/content_type.rb +26 -0
- data/lib/axlsx/content_type/default.rb +25 -0
- data/lib/axlsx/content_type/override.rb +25 -0
- data/lib/axlsx/doc_props/app.rb +235 -0
- data/lib/axlsx/doc_props/core.rb +39 -0
- data/lib/axlsx/drawing/ax_data_source.rb +26 -0
- data/lib/axlsx/drawing/axes.rb +61 -0
- data/lib/axlsx/drawing/axis.rb +190 -0
- data/lib/axlsx/drawing/bar_3D_chart.rb +151 -0
- data/lib/axlsx/drawing/bar_series.rb +82 -0
- data/lib/axlsx/drawing/bubble_chart.rb +59 -0
- data/lib/axlsx/drawing/bubble_series.rb +63 -0
- data/lib/axlsx/drawing/cat_axis.rb +85 -0
- data/lib/axlsx/drawing/chart.rb +274 -0
- data/lib/axlsx/drawing/d_lbls.rb +90 -0
- data/lib/axlsx/drawing/drawing.rb +164 -0
- data/lib/axlsx/drawing/graphic_frame.rb +54 -0
- data/lib/axlsx/drawing/hyperlink.rb +100 -0
- data/lib/axlsx/drawing/line_3D_chart.rb +68 -0
- data/lib/axlsx/drawing/line_chart.rb +99 -0
- data/lib/axlsx/drawing/line_series.rb +110 -0
- data/lib/axlsx/drawing/marker.rb +84 -0
- data/lib/axlsx/drawing/num_data.rb +52 -0
- data/lib/axlsx/drawing/num_data_source.rb +62 -0
- data/lib/axlsx/drawing/num_val.rb +34 -0
- data/lib/axlsx/drawing/one_cell_anchor.rb +98 -0
- data/lib/axlsx/drawing/pic.rb +213 -0
- data/lib/axlsx/drawing/picture_locking.rb +42 -0
- data/lib/axlsx/drawing/pie_3D_chart.rb +47 -0
- data/lib/axlsx/drawing/pie_series.rb +74 -0
- data/lib/axlsx/drawing/scaling.rb +60 -0
- data/lib/axlsx/drawing/scatter_chart.rb +74 -0
- data/lib/axlsx/drawing/scatter_series.rb +98 -0
- data/lib/axlsx/drawing/ser_axis.rb +45 -0
- data/lib/axlsx/drawing/series.rb +69 -0
- data/lib/axlsx/drawing/series_title.rb +23 -0
- data/lib/axlsx/drawing/str_data.rb +42 -0
- data/lib/axlsx/drawing/str_val.rb +34 -0
- data/lib/axlsx/drawing/title.rb +96 -0
- data/lib/axlsx/drawing/two_cell_anchor.rb +92 -0
- data/lib/axlsx/drawing/val_axis.rb +37 -0
- data/lib/axlsx/drawing/view_3D.rb +115 -0
- data/lib/axlsx/drawing/vml_drawing.rb +42 -0
- data/lib/axlsx/drawing/vml_shape.rb +66 -0
- data/lib/axlsx/package.rb +363 -0
- data/lib/axlsx/rels/relationship.rb +129 -0
- data/lib/axlsx/rels/relationships.rb +29 -0
- data/lib/axlsx/stylesheet/border.rb +71 -0
- data/lib/axlsx/stylesheet/border_pr.rb +71 -0
- data/lib/axlsx/stylesheet/cell_alignment.rb +132 -0
- data/lib/axlsx/stylesheet/cell_protection.rb +41 -0
- data/lib/axlsx/stylesheet/cell_style.rb +72 -0
- data/lib/axlsx/stylesheet/color.rb +76 -0
- data/lib/axlsx/stylesheet/dxf.rb +79 -0
- data/lib/axlsx/stylesheet/fill.rb +35 -0
- data/lib/axlsx/stylesheet/font.rb +148 -0
- data/lib/axlsx/stylesheet/gradient_fill.rb +103 -0
- data/lib/axlsx/stylesheet/gradient_stop.rb +37 -0
- data/lib/axlsx/stylesheet/num_fmt.rb +86 -0
- data/lib/axlsx/stylesheet/pattern_fill.rb +73 -0
- data/lib/axlsx/stylesheet/styles.rb +420 -0
- data/lib/axlsx/stylesheet/table_style.rb +54 -0
- data/lib/axlsx/stylesheet/table_style_element.rb +77 -0
- data/lib/axlsx/stylesheet/table_styles.rb +46 -0
- data/lib/axlsx/stylesheet/xf.rb +147 -0
- data/lib/axlsx/util/accessors.rb +64 -0
- data/lib/axlsx/util/constants.rb +397 -0
- data/lib/axlsx/util/mime_type_utils.rb +11 -0
- data/lib/axlsx/util/options_parser.rb +16 -0
- data/lib/axlsx/util/parser.rb +44 -0
- data/lib/axlsx/util/serialized_attributes.rb +89 -0
- data/lib/axlsx/util/simple_typed_list.rb +179 -0
- data/lib/axlsx/util/storage.rb +146 -0
- data/lib/axlsx/util/string.rb +7 -0
- data/lib/axlsx/util/validators.rb +311 -0
- data/lib/axlsx/version.rb +5 -0
- data/lib/axlsx/workbook/defined_name.rb +128 -0
- data/lib/axlsx/workbook/defined_names.rb +21 -0
- data/lib/axlsx/workbook/shared_strings_table.rb +77 -0
- data/lib/axlsx/workbook/workbook.rb +375 -0
- data/lib/axlsx/workbook/workbook_view.rb +78 -0
- data/lib/axlsx/workbook/workbook_views.rb +22 -0
- data/lib/axlsx/workbook/worksheet/auto_filter/auto_filter.rb +77 -0
- data/lib/axlsx/workbook/worksheet/auto_filter/filter_column.rb +94 -0
- data/lib/axlsx/workbook/worksheet/auto_filter/filters.rb +244 -0
- data/lib/axlsx/workbook/worksheet/break.rb +35 -0
- data/lib/axlsx/workbook/worksheet/cell.rb +475 -0
- data/lib/axlsx/workbook/worksheet/cell_serializer.rb +166 -0
- data/lib/axlsx/workbook/worksheet/cfvo.rb +60 -0
- data/lib/axlsx/workbook/worksheet/cfvos.rb +15 -0
- data/lib/axlsx/workbook/worksheet/col.rb +141 -0
- data/lib/axlsx/workbook/worksheet/col_breaks.rb +35 -0
- data/lib/axlsx/workbook/worksheet/color_scale.rb +110 -0
- data/lib/axlsx/workbook/worksheet/cols.rb +20 -0
- data/lib/axlsx/workbook/worksheet/comment.rb +91 -0
- data/lib/axlsx/workbook/worksheet/comments.rb +82 -0
- data/lib/axlsx/workbook/worksheet/conditional_formatting.rb +82 -0
- data/lib/axlsx/workbook/worksheet/conditional_formatting_rule.rb +220 -0
- data/lib/axlsx/workbook/worksheet/conditional_formattings.rb +25 -0
- data/lib/axlsx/workbook/worksheet/data_bar.rb +129 -0
- data/lib/axlsx/workbook/worksheet/data_validation.rb +246 -0
- data/lib/axlsx/workbook/worksheet/data_validations.rb +28 -0
- data/lib/axlsx/workbook/worksheet/date_time_converter.rb +30 -0
- data/lib/axlsx/workbook/worksheet/dimension.rb +64 -0
- data/lib/axlsx/workbook/worksheet/header_footer.rb +52 -0
- data/lib/axlsx/workbook/worksheet/icon_set.rb +81 -0
- data/lib/axlsx/workbook/worksheet/merged_cells.rb +37 -0
- data/lib/axlsx/workbook/worksheet/outline_pr.rb +33 -0
- data/lib/axlsx/workbook/worksheet/page_margins.rb +97 -0
- data/lib/axlsx/workbook/worksheet/page_set_up_pr.rb +44 -0
- data/lib/axlsx/workbook/worksheet/page_setup.rb +240 -0
- data/lib/axlsx/workbook/worksheet/pane.rb +139 -0
- data/lib/axlsx/workbook/worksheet/pivot_table.rb +289 -0
- data/lib/axlsx/workbook/worksheet/pivot_table_cache_definition.rb +66 -0
- data/lib/axlsx/workbook/worksheet/pivot_tables.rb +24 -0
- data/lib/axlsx/workbook/worksheet/print_options.rb +39 -0
- data/lib/axlsx/workbook/worksheet/protected_range.rb +47 -0
- data/lib/axlsx/workbook/worksheet/protected_ranges.rb +34 -0
- data/lib/axlsx/workbook/worksheet/rich_text.rb +35 -0
- data/lib/axlsx/workbook/worksheet/rich_text_run.rb +254 -0
- data/lib/axlsx/workbook/worksheet/row.rb +161 -0
- data/lib/axlsx/workbook/worksheet/row_breaks.rb +33 -0
- data/lib/axlsx/workbook/worksheet/selection.rb +101 -0
- data/lib/axlsx/workbook/worksheet/sheet_calc_pr.rb +29 -0
- data/lib/axlsx/workbook/worksheet/sheet_data.rb +27 -0
- data/lib/axlsx/workbook/worksheet/sheet_format_pr.rb +60 -0
- data/lib/axlsx/workbook/worksheet/sheet_pr.rb +87 -0
- data/lib/axlsx/workbook/worksheet/sheet_protection.rb +118 -0
- data/lib/axlsx/workbook/worksheet/sheet_view.rb +213 -0
- data/lib/axlsx/workbook/worksheet/table.rb +102 -0
- data/lib/axlsx/workbook/worksheet/table_style_info.rb +49 -0
- data/lib/axlsx/workbook/worksheet/tables.rb +31 -0
- data/lib/axlsx/workbook/worksheet/worksheet.rb +799 -0
- data/lib/axlsx/workbook/worksheet/worksheet_comments.rb +58 -0
- data/lib/axlsx/workbook/worksheet/worksheet_drawing.rb +58 -0
- data/lib/axlsx/workbook/worksheet/worksheet_hyperlink.rb +74 -0
- data/lib/axlsx/workbook/worksheet/worksheet_hyperlinks.rb +38 -0
- data/lib/schema/dc.xsd +118 -0
- data/lib/schema/dcmitype.xsd +52 -0
- data/lib/schema/dcterms.xsd +331 -0
- data/lib/schema/dml-chart.xsd +1499 -0
- data/lib/schema/dml-chartDrawing.xsd +146 -0
- data/lib/schema/dml-compatibility.xsd +14 -0
- data/lib/schema/dml-diagram.xsd +1091 -0
- data/lib/schema/dml-lockedCanvas.xsd +11 -0
- data/lib/schema/dml-main.xsd +3048 -0
- data/lib/schema/dml-picture.xsd +23 -0
- data/lib/schema/dml-spreadsheetDrawing.xsd +185 -0
- data/lib/schema/dml-wordprocessingDrawing.xsd +185 -0
- data/lib/schema/opc-contentTypes.xsd +42 -0
- data/lib/schema/opc-coreProperties.xsd +54 -0
- data/lib/schema/opc-digSig.xsd +49 -0
- data/lib/schema/opc-relationships.xsd +33 -0
- data/lib/schema/pml.xsd +1676 -0
- data/lib/schema/shared-additionalCharacteristics.xsd +28 -0
- data/lib/schema/shared-bibliography.xsd +144 -0
- data/lib/schema/shared-commonSimpleTypes.xsd +166 -0
- data/lib/schema/shared-customXmlDataProperties.xsd +25 -0
- data/lib/schema/shared-customXmlSchemaProperties.xsd +18 -0
- data/lib/schema/shared-documentPropertiesCustom.xsd +59 -0
- data/lib/schema/shared-documentPropertiesExtended.xsd +56 -0
- data/lib/schema/shared-documentPropertiesVariantTypes.xsd +195 -0
- data/lib/schema/shared-math.xsd +582 -0
- data/lib/schema/shared-relationshipReference.xsd +25 -0
- data/lib/schema/sml.xsd +4434 -0
- data/lib/schema/vml-main.xsd +569 -0
- data/lib/schema/vml-officeDrawing.xsd +509 -0
- data/lib/schema/vml-presentationDrawing.xsd +12 -0
- data/lib/schema/vml-spreadsheetDrawing.xsd +108 -0
- data/lib/schema/vml-wordprocessingDrawing.xsd +96 -0
- data/lib/schema/wml.xsd +3644 -0
- data/lib/schema/xml.xsd +116 -0
- data/test/benchmark.rb +72 -0
- data/test/content_type/tc_content_type.rb +76 -0
- data/test/content_type/tc_default.rb +16 -0
- data/test/content_type/tc_override.rb +14 -0
- data/test/doc_props/tc_app.rb +43 -0
- data/test/doc_props/tc_core.rb +42 -0
- data/test/drawing/tc_axes.rb +8 -0
- data/test/drawing/tc_axis.rb +112 -0
- data/test/drawing/tc_bar_3D_chart.rb +71 -0
- data/test/drawing/tc_bar_series.rb +37 -0
- data/test/drawing/tc_bubble_chart.rb +44 -0
- data/test/drawing/tc_bubble_series.rb +21 -0
- data/test/drawing/tc_cat_axis.rb +31 -0
- data/test/drawing/tc_cat_axis_data.rb +27 -0
- data/test/drawing/tc_chart.rb +110 -0
- data/test/drawing/tc_d_lbls.rb +57 -0
- data/test/drawing/tc_data_source.rb +23 -0
- data/test/drawing/tc_drawing.rb +80 -0
- data/test/drawing/tc_graphic_frame.rb +27 -0
- data/test/drawing/tc_hyperlink.rb +64 -0
- data/test/drawing/tc_line_3d_chart.rb +47 -0
- data/test/drawing/tc_line_chart.rb +39 -0
- data/test/drawing/tc_line_series.rb +71 -0
- data/test/drawing/tc_marker.rb +44 -0
- data/test/drawing/tc_named_axis_data.rb +27 -0
- data/test/drawing/tc_num_data.rb +31 -0
- data/test/drawing/tc_num_val.rb +29 -0
- data/test/drawing/tc_one_cell_anchor.rb +66 -0
- data/test/drawing/tc_pic.rb +106 -0
- data/test/drawing/tc_picture_locking.rb +72 -0
- data/test/drawing/tc_pie_3D_chart.rb +28 -0
- data/test/drawing/tc_pie_series.rb +32 -0
- data/test/drawing/tc_scaling.rb +36 -0
- data/test/drawing/tc_scatter_chart.rb +48 -0
- data/test/drawing/tc_scatter_series.rb +45 -0
- data/test/drawing/tc_ser_axis.rb +31 -0
- data/test/drawing/tc_series.rb +23 -0
- data/test/drawing/tc_series_title.rb +33 -0
- data/test/drawing/tc_str_data.rb +18 -0
- data/test/drawing/tc_str_val.rb +30 -0
- data/test/drawing/tc_title.rb +49 -0
- data/test/drawing/tc_two_cell_anchor.rb +36 -0
- data/test/drawing/tc_val_axis.rb +24 -0
- data/test/drawing/tc_view_3D.rb +54 -0
- data/test/drawing/tc_vml_drawing.rb +25 -0
- data/test/drawing/tc_vml_shape.rb +106 -0
- data/test/profile.rb +24 -0
- data/test/rels/tc_relationship.rb +44 -0
- data/test/rels/tc_relationships.rb +37 -0
- data/test/stylesheet/tc_border.rb +37 -0
- data/test/stylesheet/tc_border_pr.rb +32 -0
- data/test/stylesheet/tc_cell_alignment.rb +81 -0
- data/test/stylesheet/tc_cell_protection.rb +29 -0
- data/test/stylesheet/tc_cell_style.rb +57 -0
- data/test/stylesheet/tc_color.rb +43 -0
- data/test/stylesheet/tc_dxf.rb +81 -0
- data/test/stylesheet/tc_fill.rb +18 -0
- data/test/stylesheet/tc_font.rb +121 -0
- data/test/stylesheet/tc_gradient_fill.rb +72 -0
- data/test/stylesheet/tc_gradient_stop.rb +31 -0
- data/test/stylesheet/tc_num_fmt.rb +30 -0
- data/test/stylesheet/tc_pattern_fill.rb +43 -0
- data/test/stylesheet/tc_styles.rb +235 -0
- data/test/stylesheet/tc_table_style.rb +44 -0
- data/test/stylesheet/tc_table_style_element.rb +45 -0
- data/test/stylesheet/tc_table_styles.rb +29 -0
- data/test/stylesheet/tc_xf.rb +120 -0
- data/test/tc_axlsx.rb +82 -0
- data/test/tc_helper.rb +10 -0
- data/test/tc_package.rb +233 -0
- data/test/util/tc_mime_type_utils.rb +13 -0
- data/test/util/tc_serialized_attributes.rb +19 -0
- data/test/util/tc_simple_typed_list.rb +77 -0
- data/test/util/tc_validators.rb +210 -0
- data/test/workbook/tc_defined_name.rb +49 -0
- data/test/workbook/tc_shared_strings_table.rb +58 -0
- data/test/workbook/tc_workbook.rb +145 -0
- data/test/workbook/tc_workbook_view.rb +50 -0
- data/test/workbook/worksheet/auto_filter/tc_auto_filter.rb +38 -0
- data/test/workbook/worksheet/auto_filter/tc_filter_column.rb +76 -0
- data/test/workbook/worksheet/auto_filter/tc_filters.rb +50 -0
- data/test/workbook/worksheet/tc_break.rb +49 -0
- data/test/workbook/worksheet/tc_cell.rb +373 -0
- data/test/workbook/worksheet/tc_cfvo.rb +31 -0
- data/test/workbook/worksheet/tc_col.rb +78 -0
- data/test/workbook/worksheet/tc_color_scale.rb +58 -0
- data/test/workbook/worksheet/tc_comment.rb +72 -0
- data/test/workbook/worksheet/tc_comments.rb +57 -0
- data/test/workbook/worksheet/tc_conditional_formatting.rb +224 -0
- data/test/workbook/worksheet/tc_data_bar.rb +46 -0
- data/test/workbook/worksheet/tc_data_validation.rb +265 -0
- data/test/workbook/worksheet/tc_date_time_converter.rb +124 -0
- data/test/workbook/worksheet/tc_header_footer.rb +151 -0
- data/test/workbook/worksheet/tc_icon_set.rb +45 -0
- data/test/workbook/worksheet/tc_outline_pr.rb +19 -0
- data/test/workbook/worksheet/tc_page_margins.rb +97 -0
- data/test/workbook/worksheet/tc_page_set_up_pr.rb +15 -0
- data/test/workbook/worksheet/tc_page_setup.rb +143 -0
- data/test/workbook/worksheet/tc_pane.rb +54 -0
- data/test/workbook/worksheet/tc_pivot_table.rb +140 -0
- data/test/workbook/worksheet/tc_pivot_table_cache_definition.rb +54 -0
- data/test/workbook/worksheet/tc_print_options.rb +72 -0
- data/test/workbook/worksheet/tc_protected_range.rb +17 -0
- data/test/workbook/worksheet/tc_rich_text.rb +44 -0
- data/test/workbook/worksheet/tc_rich_text_run.rb +172 -0
- data/test/workbook/worksheet/tc_row.rb +122 -0
- data/test/workbook/worksheet/tc_selection.rb +55 -0
- data/test/workbook/worksheet/tc_sheet_calc_pr.rb +18 -0
- data/test/workbook/worksheet/tc_sheet_format_pr.rb +88 -0
- data/test/workbook/worksheet/tc_sheet_pr.rb +49 -0
- data/test/workbook/worksheet/tc_sheet_protection.rb +117 -0
- data/test/workbook/worksheet/tc_sheet_view.rb +214 -0
- data/test/workbook/worksheet/tc_table.rb +68 -0
- data/test/workbook/worksheet/tc_table_style_info.rb +53 -0
- data/test/workbook/worksheet/tc_worksheet.rb +594 -0
- data/test/workbook/worksheet/tc_worksheet_hyperlink.rb +55 -0
- metadata +582 -0
@@ -0,0 +1,21 @@
|
|
1
|
+
module Axlsx
|
2
|
+
# a simple types list of DefinedName objects
|
3
|
+
class DefinedNames < SimpleTypedList
|
4
|
+
|
5
|
+
# creates the DefinedNames object
|
6
|
+
def initialize
|
7
|
+
super DefinedName
|
8
|
+
end
|
9
|
+
|
10
|
+
# Serialize to xml
|
11
|
+
# @param [String] str
|
12
|
+
# @return [String]
|
13
|
+
def to_xml_string(str = '')
|
14
|
+
return if empty?
|
15
|
+
str << '<definedNames>'
|
16
|
+
each { |defined_name| defined_name.to_xml_string(str) }
|
17
|
+
str << '</definedNames>'
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
@@ -0,0 +1,77 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
module Axlsx
|
3
|
+
|
4
|
+
# The Shared String Table class is responsible for managing and serializing common strings in a workbook.
|
5
|
+
# While the ECMA-376 spec allows for both inline and shared strings it seems that at least some applications like iWorks Numbers
|
6
|
+
# and Google Docs require that the shared string table is populated in order to interoperate properly.
|
7
|
+
# As a developer, you should never need to directly work against this class. Simply set 'use_shared_strings'
|
8
|
+
# on the package or workbook to generate a package that uses the shared strings table instead of inline strings.
|
9
|
+
# @note Serialization performance is affected by using this serialization method so if you do not need interoperability
|
10
|
+
# it is recomended that you use the default inline string method of serialization.
|
11
|
+
class SharedStringsTable
|
12
|
+
|
13
|
+
# The total number of strings in the workbook including duplicates
|
14
|
+
# Empty cells are treated as blank strings
|
15
|
+
# @return [Integer]
|
16
|
+
attr_reader :count
|
17
|
+
|
18
|
+
# The total number of unique strings in the workbook.
|
19
|
+
# @return [Integer]
|
20
|
+
def unique_count
|
21
|
+
@unique_cells.size
|
22
|
+
end
|
23
|
+
|
24
|
+
# An array of unique cells. Multiple attributes of the cell are used in comparison
|
25
|
+
# each of these unique cells is parsed into the shared string table.
|
26
|
+
# @see Cell#sharable
|
27
|
+
attr_reader :unique_cells
|
28
|
+
|
29
|
+
# The xml:space attribute
|
30
|
+
# @see Workbook#xml_space
|
31
|
+
attr_reader :xml_space
|
32
|
+
|
33
|
+
# Creates a new Shared Strings Table agains an array of cells
|
34
|
+
# @param [Array] cells This is an array of all of the cells in the workbook
|
35
|
+
# @param [Symbol] xml_space The xml:space behavior for the shared string table.
|
36
|
+
def initialize(cells, xml_space=:preserve)
|
37
|
+
@index = 0
|
38
|
+
@xml_space = xml_space
|
39
|
+
@unique_cells = {}
|
40
|
+
@shared_xml_string = ""
|
41
|
+
shareable_cells = cells.flatten.select{ |cell| cell.plain_string? || cell.contains_rich_text? }
|
42
|
+
@count = shareable_cells.size
|
43
|
+
resolve(shareable_cells)
|
44
|
+
end
|
45
|
+
|
46
|
+
# Serializes the object
|
47
|
+
# @param [String] str
|
48
|
+
# @return [String]
|
49
|
+
def to_xml_string(str='')
|
50
|
+
Axlsx::sanitize(@shared_xml_string)
|
51
|
+
str << ('<?xml version="1.0" encoding="UTF-8"?><sst xmlns="' << XML_NS << '"')
|
52
|
+
str << (' count="' << @count.to_s << '" uniqueCount="' << unique_count.to_s << '"')
|
53
|
+
str << (' xml:space="' << xml_space.to_s << '">' << @shared_xml_string << '</sst>')
|
54
|
+
end
|
55
|
+
|
56
|
+
private
|
57
|
+
|
58
|
+
# Interate over all of the cells in the array.
|
59
|
+
# if our unique cells array does not contain a sharable cell,
|
60
|
+
# add the cell to our unique cells array and set the ssti attribute on the index of this cell in the shared strings table
|
61
|
+
# if a sharable cell already exists in our unique_cells array, set the ssti attribute of the cell and move on.
|
62
|
+
# @return [Array] unique cells
|
63
|
+
def resolve(cells)
|
64
|
+
cells.each do |cell|
|
65
|
+
cell_hash = cell.value
|
66
|
+
if index = @unique_cells[cell_hash]
|
67
|
+
cell.send :ssti=, index
|
68
|
+
else
|
69
|
+
cell.send :ssti=, @index
|
70
|
+
@shared_xml_string << '<si>' << CellSerializer.run_xml_string(cell) << '</si>'
|
71
|
+
@unique_cells[cell_hash] = @index
|
72
|
+
@index += 1
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
@@ -0,0 +1,375 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
module Axlsx
|
3
|
+
require 'axlsx/workbook/worksheet/sheet_calc_pr.rb'
|
4
|
+
require 'axlsx/workbook/worksheet/auto_filter/auto_filter.rb'
|
5
|
+
require 'axlsx/workbook/worksheet/date_time_converter.rb'
|
6
|
+
require 'axlsx/workbook/worksheet/protected_range.rb'
|
7
|
+
require 'axlsx/workbook/worksheet/protected_ranges.rb'
|
8
|
+
require 'axlsx/workbook/worksheet/rich_text_run'
|
9
|
+
require 'axlsx/workbook/worksheet/rich_text'
|
10
|
+
require 'axlsx/workbook/worksheet/cell_serializer.rb'
|
11
|
+
require 'axlsx/workbook/worksheet/cell.rb'
|
12
|
+
require 'axlsx/workbook/worksheet/page_margins.rb'
|
13
|
+
require 'axlsx/workbook/worksheet/page_set_up_pr.rb'
|
14
|
+
require 'axlsx/workbook/worksheet/outline_pr.rb'
|
15
|
+
require 'axlsx/workbook/worksheet/page_setup.rb'
|
16
|
+
require 'axlsx/workbook/worksheet/header_footer.rb'
|
17
|
+
require 'axlsx/workbook/worksheet/print_options.rb'
|
18
|
+
require 'axlsx/workbook/worksheet/cfvo.rb'
|
19
|
+
require 'axlsx/workbook/worksheet/cfvos.rb'
|
20
|
+
require 'axlsx/workbook/worksheet/color_scale.rb'
|
21
|
+
require 'axlsx/workbook/worksheet/data_bar.rb'
|
22
|
+
require 'axlsx/workbook/worksheet/icon_set.rb'
|
23
|
+
require 'axlsx/workbook/worksheet/conditional_formatting.rb'
|
24
|
+
require 'axlsx/workbook/worksheet/conditional_formatting_rule.rb'
|
25
|
+
require 'axlsx/workbook/worksheet/conditional_formattings.rb'
|
26
|
+
require 'axlsx/workbook/worksheet/row.rb'
|
27
|
+
require 'axlsx/workbook/worksheet/col.rb'
|
28
|
+
require 'axlsx/workbook/worksheet/cols.rb'
|
29
|
+
require 'axlsx/workbook/worksheet/comments.rb'
|
30
|
+
require 'axlsx/workbook/worksheet/comment.rb'
|
31
|
+
require 'axlsx/workbook/worksheet/merged_cells.rb'
|
32
|
+
require 'axlsx/workbook/worksheet/sheet_protection.rb'
|
33
|
+
require 'axlsx/workbook/worksheet/sheet_pr.rb'
|
34
|
+
require 'axlsx/workbook/worksheet/dimension.rb'
|
35
|
+
require 'axlsx/workbook/worksheet/sheet_data.rb'
|
36
|
+
require 'axlsx/workbook/worksheet/worksheet_drawing.rb'
|
37
|
+
require 'axlsx/workbook/worksheet/worksheet_comments.rb'
|
38
|
+
require 'axlsx/workbook/worksheet/worksheet_hyperlink'
|
39
|
+
require 'axlsx/workbook/worksheet/worksheet_hyperlinks'
|
40
|
+
require 'axlsx/workbook/worksheet/break'
|
41
|
+
require 'axlsx/workbook/worksheet/row_breaks'
|
42
|
+
require 'axlsx/workbook/worksheet/col_breaks'
|
43
|
+
require 'axlsx/workbook/workbook_view'
|
44
|
+
require 'axlsx/workbook/workbook_views'
|
45
|
+
|
46
|
+
|
47
|
+
require 'axlsx/workbook/worksheet/worksheet.rb'
|
48
|
+
require 'axlsx/workbook/shared_strings_table.rb'
|
49
|
+
require 'axlsx/workbook/defined_name.rb'
|
50
|
+
require 'axlsx/workbook/defined_names.rb'
|
51
|
+
require 'axlsx/workbook/worksheet/table_style_info.rb'
|
52
|
+
require 'axlsx/workbook/worksheet/table.rb'
|
53
|
+
require 'axlsx/workbook/worksheet/tables.rb'
|
54
|
+
require 'axlsx/workbook/worksheet/pivot_table_cache_definition.rb'
|
55
|
+
require 'axlsx/workbook/worksheet/pivot_table.rb'
|
56
|
+
require 'axlsx/workbook/worksheet/pivot_tables.rb'
|
57
|
+
require 'axlsx/workbook/worksheet/data_validation.rb'
|
58
|
+
require 'axlsx/workbook/worksheet/data_validations.rb'
|
59
|
+
require 'axlsx/workbook/worksheet/sheet_view.rb'
|
60
|
+
require 'axlsx/workbook/worksheet/sheet_format_pr.rb'
|
61
|
+
require 'axlsx/workbook/worksheet/pane.rb'
|
62
|
+
require 'axlsx/workbook/worksheet/selection.rb'
|
63
|
+
# The Workbook class is an xlsx workbook that manages worksheets, charts, drawings and styles.
|
64
|
+
# The following parts of the Office Open XML spreadsheet specification are not implimented in this version.
|
65
|
+
#
|
66
|
+
# bookViews
|
67
|
+
# calcPr
|
68
|
+
# customWorkbookViews
|
69
|
+
# definedNames
|
70
|
+
# externalReferences
|
71
|
+
# extLst
|
72
|
+
# fileRecoveryPr
|
73
|
+
# fileSharing
|
74
|
+
# fileVersion
|
75
|
+
# functionGroups
|
76
|
+
# oleSize
|
77
|
+
# pivotCaches
|
78
|
+
# smartTagPr
|
79
|
+
# smartTagTypes
|
80
|
+
# webPublishing
|
81
|
+
# webPublishObjects
|
82
|
+
# workbookProtection
|
83
|
+
# workbookPr*
|
84
|
+
#
|
85
|
+
# *workbookPr is only supported to the extend of date1904
|
86
|
+
class Workbook
|
87
|
+
|
88
|
+
# When true, the Package will be generated with a shared string table. This may be required by some OOXML processors that do not
|
89
|
+
# adhere to the ECMA specification that dictates string may be inline in the sheet.
|
90
|
+
# Using this option will increase the time required to serialize the document as every string in every cell must be analzed and referenced.
|
91
|
+
# @return [Boolean]
|
92
|
+
attr_reader :use_shared_strings
|
93
|
+
|
94
|
+
# @see use_shared_strings
|
95
|
+
def use_shared_strings=(v)
|
96
|
+
Axlsx::validate_boolean(v)
|
97
|
+
@use_shared_strings = v
|
98
|
+
end
|
99
|
+
|
100
|
+
# If true reverse the order in which the workbook is serialized
|
101
|
+
# @return [Boolean]
|
102
|
+
attr_reader :is_reversed
|
103
|
+
|
104
|
+
def is_reversed=(v)
|
105
|
+
Axlsx::validate_boolean(v)
|
106
|
+
@is_reversed = v
|
107
|
+
end
|
108
|
+
|
109
|
+
|
110
|
+
# A collection of worksheets associated with this workbook.
|
111
|
+
# @note The recommended way to manage worksheets is add_worksheet
|
112
|
+
# @see Workbook#add_worksheet
|
113
|
+
# @see Worksheet
|
114
|
+
# @return [SimpleTypedList]
|
115
|
+
attr_reader :worksheets
|
116
|
+
|
117
|
+
# A colllection of charts associated with this workbook
|
118
|
+
# @note The recommended way to manage charts is Worksheet#add_chart
|
119
|
+
# @see Worksheet#add_chart
|
120
|
+
# @see Chart
|
121
|
+
# @return [SimpleTypedList]
|
122
|
+
attr_reader :charts
|
123
|
+
|
124
|
+
# A colllection of images associated with this workbook
|
125
|
+
# @note The recommended way to manage images is Worksheet#add_image
|
126
|
+
# @see Worksheet#add_image
|
127
|
+
# @see Pic
|
128
|
+
# @return [SimpleTypedList]
|
129
|
+
attr_reader :images
|
130
|
+
|
131
|
+
# A colllection of drawings associated with this workbook
|
132
|
+
# @note The recommended way to manage drawings is Worksheet#add_chart
|
133
|
+
# @see Worksheet#add_chart
|
134
|
+
# @see Drawing
|
135
|
+
# @return [SimpleTypedList]
|
136
|
+
attr_reader :drawings
|
137
|
+
|
138
|
+
# pretty sure this two are always empty and can be removed.
|
139
|
+
|
140
|
+
|
141
|
+
# A colllection of tables associated with this workbook
|
142
|
+
# @note The recommended way to manage drawings is Worksheet#add_table
|
143
|
+
# @see Worksheet#add_table
|
144
|
+
# @see Table
|
145
|
+
# @return [SimpleTypedList]
|
146
|
+
attr_reader :tables
|
147
|
+
|
148
|
+
# A colllection of pivot tables associated with this workbook
|
149
|
+
# @note The recommended way to manage drawings is Worksheet#add_table
|
150
|
+
# @see Worksheet#add_table
|
151
|
+
# @see Table
|
152
|
+
# @return [SimpleTypedList]
|
153
|
+
attr_reader :pivot_tables
|
154
|
+
|
155
|
+
# A collection of views for this workbook
|
156
|
+
def views
|
157
|
+
@views ||= WorkbookViews.new
|
158
|
+
end
|
159
|
+
|
160
|
+
# A collection of defined names for this workbook
|
161
|
+
# @note The recommended way to manage defined names is Workbook#add_defined_name
|
162
|
+
# @see DefinedName
|
163
|
+
# @return [DefinedNames]
|
164
|
+
def defined_names
|
165
|
+
@defined_names ||= DefinedNames.new
|
166
|
+
end
|
167
|
+
|
168
|
+
# A collection of comments associated with this workbook
|
169
|
+
# @note The recommended way to manage comments is WOrksheet#add_comment
|
170
|
+
# @see Worksheet#add_comment
|
171
|
+
# @see Comment
|
172
|
+
# @return [Comments]
|
173
|
+
def comments
|
174
|
+
worksheets.map { |sheet| sheet.comments }.compact
|
175
|
+
end
|
176
|
+
|
177
|
+
# The styles associated with this workbook
|
178
|
+
# @note The recommended way to manage styles is Styles#add_style
|
179
|
+
# @see Style#add_style
|
180
|
+
# @see Style
|
181
|
+
# @return [Styles]
|
182
|
+
def styles
|
183
|
+
yield @styles if block_given?
|
184
|
+
@styles
|
185
|
+
end
|
186
|
+
|
187
|
+
|
188
|
+
# Indicates if the epoc date for serialization should be 1904. If false, 1900 is used.
|
189
|
+
@@date1904 = false
|
190
|
+
|
191
|
+
|
192
|
+
# A quick helper to retrive a worksheet by name
|
193
|
+
# @param [String] name The name of the sheet you are looking for
|
194
|
+
# @return [Worksheet] The sheet found, or nil
|
195
|
+
def sheet_by_name(name)
|
196
|
+
index = @worksheets.index { |sheet| sheet.name == name }
|
197
|
+
@worksheets[index] if index
|
198
|
+
end
|
199
|
+
|
200
|
+
# lets come back to this later when we are ready for parsing.
|
201
|
+
#def self.parse entry
|
202
|
+
# io = entry.get_input_stream
|
203
|
+
# w = self.new
|
204
|
+
# w.parser_xml = Nokogiri::XML(io.read)
|
205
|
+
# w.parse_string :date1904, "//xmlns:workbookPr/@date1904"
|
206
|
+
# w
|
207
|
+
#end
|
208
|
+
|
209
|
+
# Creates a new Workbook
|
210
|
+
# The recomended way to work with workbooks is via Package#workbook
|
211
|
+
# @option options [Boolean] date1904. If this is not specified, date1904 is set to false. Office 2011 for Mac defaults to false.
|
212
|
+
def initialize(options={})
|
213
|
+
@styles = Styles.new
|
214
|
+
@worksheets = SimpleTypedList.new Worksheet
|
215
|
+
@drawings = SimpleTypedList.new Drawing
|
216
|
+
@charts = SimpleTypedList.new Chart
|
217
|
+
@images = SimpleTypedList.new Pic
|
218
|
+
# Are these even used????? Check package serialization parts
|
219
|
+
@tables = SimpleTypedList.new Table
|
220
|
+
@pivot_tables = SimpleTypedList.new PivotTable
|
221
|
+
@comments = SimpleTypedList.new Comments
|
222
|
+
|
223
|
+
|
224
|
+
@use_autowidth = true
|
225
|
+
|
226
|
+
self.date1904= !options[:date1904].nil? && options[:date1904]
|
227
|
+
yield self if block_given?
|
228
|
+
end
|
229
|
+
|
230
|
+
# Instance level access to the class variable 1904
|
231
|
+
# @return [Boolean]
|
232
|
+
def date1904() @@date1904; end
|
233
|
+
|
234
|
+
# see @date1904
|
235
|
+
def date1904=(v) Axlsx::validate_boolean v; @@date1904 = v; end
|
236
|
+
|
237
|
+
# Sets the date1904 attribute to the provided boolean
|
238
|
+
# @return [Boolean]
|
239
|
+
def self.date1904=(v) Axlsx::validate_boolean v; @@date1904 = v; end
|
240
|
+
|
241
|
+
# retrieves the date1904 attribute
|
242
|
+
# @return [Boolean]
|
243
|
+
def self.date1904() @@date1904; end
|
244
|
+
|
245
|
+
# Indicates if the workbook should use autowidths or not.
|
246
|
+
# @note This gem no longer depends on RMagick for autowidth
|
247
|
+
# calculation. Thus the performance benefits of turning this off are
|
248
|
+
# marginal unless you are creating a very large sheet.
|
249
|
+
# @return [Boolean]
|
250
|
+
def use_autowidth() @use_autowidth; end
|
251
|
+
|
252
|
+
# see @use_autowidth
|
253
|
+
def use_autowidth=(v=true) Axlsx::validate_boolean v; @use_autowidth = v; end
|
254
|
+
|
255
|
+
# inserts a worksheet into this workbook at the position specified.
|
256
|
+
# It the index specified is out of range, the worksheet will be added to the end of the
|
257
|
+
# worksheets collection
|
258
|
+
# @return [Worksheet]
|
259
|
+
# @param index The zero based position to insert the newly created worksheet
|
260
|
+
# @param [Hash] options Options to pass into the worksheed during initialization.
|
261
|
+
# @option options [String] name The name of the worksheet
|
262
|
+
# @option options [Hash] page_margins The page margins for the worksheet
|
263
|
+
def insert_worksheet(index=0, options={})
|
264
|
+
worksheet = Worksheet.new(self, options)
|
265
|
+
@worksheets.delete_at(@worksheets.size - 1)
|
266
|
+
@worksheets.insert(index, worksheet)
|
267
|
+
yield worksheet if block_given?
|
268
|
+
worksheet
|
269
|
+
end
|
270
|
+
|
271
|
+
#
|
272
|
+
# Adds a worksheet to this workbook
|
273
|
+
# @return [Worksheet]
|
274
|
+
# @option options [String] name The name of the worksheet.
|
275
|
+
# @option options [Hash] page_margins The page margins for the worksheet.
|
276
|
+
# @see Worksheet#initialize
|
277
|
+
def add_worksheet(options={})
|
278
|
+
worksheet = Worksheet.new(self, options)
|
279
|
+
yield worksheet if block_given?
|
280
|
+
worksheet
|
281
|
+
end
|
282
|
+
|
283
|
+
def add_view(options={})
|
284
|
+
views << WorkbookView.new(options)
|
285
|
+
end
|
286
|
+
|
287
|
+
# Adds a defined name to this workbook
|
288
|
+
# @return [DefinedName]
|
289
|
+
# @param [String] formula @see DefinedName
|
290
|
+
# @param [Hash] options @see DefinedName
|
291
|
+
def add_defined_name(formula, options)
|
292
|
+
defined_names << DefinedName.new(formula, options)
|
293
|
+
end
|
294
|
+
|
295
|
+
# The workbook relationships. This is managed automatically by the workbook
|
296
|
+
# @return [Relationships]
|
297
|
+
def relationships
|
298
|
+
r = Relationships.new
|
299
|
+
@worksheets.each do |sheet|
|
300
|
+
r << Relationship.new(sheet, WORKSHEET_R, WORKSHEET_PN % (r.size+1))
|
301
|
+
end
|
302
|
+
pivot_tables.each_with_index do |pivot_table, index|
|
303
|
+
r << Relationship.new(pivot_table.cache_definition, PIVOT_TABLE_CACHE_DEFINITION_R, PIVOT_TABLE_CACHE_DEFINITION_PN % (index+1))
|
304
|
+
end
|
305
|
+
r << Relationship.new(self, STYLES_R, STYLES_PN)
|
306
|
+
if use_shared_strings
|
307
|
+
r << Relationship.new(self, SHARED_STRINGS_R, SHARED_STRINGS_PN)
|
308
|
+
end
|
309
|
+
r
|
310
|
+
end
|
311
|
+
|
312
|
+
# generates a shared string object against all cells in all worksheets.
|
313
|
+
# @return [SharedStringTable]
|
314
|
+
def shared_strings
|
315
|
+
SharedStringsTable.new(worksheets.collect { |ws| ws.cells }, xml_space)
|
316
|
+
end
|
317
|
+
|
318
|
+
# The xml:space attribute for the worksheet.
|
319
|
+
# This determines how whitespace is handled withing the document.
|
320
|
+
# The most relevant part being whitespace in the cell text.
|
321
|
+
# allowed values are :preserve and :default. Axlsx uses :preserve unless
|
322
|
+
# you explicily set this to :default.
|
323
|
+
# @return Symbol
|
324
|
+
def xml_space
|
325
|
+
@xml_space ||= :preserve
|
326
|
+
end
|
327
|
+
|
328
|
+
# Sets the xml:space attribute for the worksheet
|
329
|
+
# @see Worksheet#xml_space
|
330
|
+
# @param [Symbol] space must be one of :preserve or :default
|
331
|
+
def xml_space=(space)
|
332
|
+
Axlsx::RestrictionValidator.validate(:xml_space, [:preserve, :default], space)
|
333
|
+
@xml_space = space;
|
334
|
+
end
|
335
|
+
|
336
|
+
# returns a range of cells in a worksheet
|
337
|
+
# @param [String] cell_def The excel style reference defining the worksheet and cells. The range must specify the sheet to
|
338
|
+
# retrieve the cells from. e.g. range('Sheet1!A1:B2') will return an array of four cells [A1, A2, B1, B2] while range('Sheet1!A1') will return a single Cell.
|
339
|
+
# @return [Cell, Array]
|
340
|
+
def [](cell_def)
|
341
|
+
sheet_name = cell_def.split('!')[0] if cell_def.match('!')
|
342
|
+
worksheet = self.worksheets.select { |s| s.name == sheet_name }.first
|
343
|
+
raise ArgumentError, 'Unknown Sheet' unless sheet_name && worksheet.is_a?(Worksheet)
|
344
|
+
worksheet[cell_def.gsub(/.+!/,"")]
|
345
|
+
end
|
346
|
+
|
347
|
+
# Serialize the workbook
|
348
|
+
# @param [String] str
|
349
|
+
# @return [String]
|
350
|
+
def to_xml_string(str='')
|
351
|
+
add_worksheet(name: 'Sheet1') unless worksheets.size > 0
|
352
|
+
str << '<?xml version="1.0" encoding="UTF-8"?>'
|
353
|
+
str << ('<workbook xmlns="' << XML_NS << '" xmlns:r="' << XML_NS_R << '">')
|
354
|
+
str << ('<workbookPr date1904="' << @@date1904.to_s << '"/>')
|
355
|
+
views.to_xml_string(str)
|
356
|
+
str << '<sheets>'
|
357
|
+
if is_reversed
|
358
|
+
worksheets.reverse_each { |sheet| sheet.to_sheet_node_xml_string(str) }
|
359
|
+
else
|
360
|
+
worksheets.each { |sheet| sheet.to_sheet_node_xml_string(str) }
|
361
|
+
end
|
362
|
+
str << '</sheets>'
|
363
|
+
defined_names.to_xml_string(str)
|
364
|
+
unless pivot_tables.empty?
|
365
|
+
str << '<pivotCaches>'
|
366
|
+
pivot_tables.each do |pivot_table|
|
367
|
+
str << ('<pivotCache cacheId="' << pivot_table.cache_definition.cache_id.to_s << '" r:id="' << pivot_table.cache_definition.rId << '"/>')
|
368
|
+
end
|
369
|
+
str << '</pivotCaches>'
|
370
|
+
end
|
371
|
+
str << '</workbook>'
|
372
|
+
end
|
373
|
+
|
374
|
+
end
|
375
|
+
end
|