public
Description: Fast, Nimble PDF Writer for Ruby
Homepage: http://prawn.majesticseacreature.com
Clone URL: git://github.com/sandal/prawn.git
prawn / lib / prawn / document / table.rb
100644 315 lines (274 sloc) 11.646 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
# encoding: utf-8
#
# table.rb : Simple table drawing functionality
#
# Copyright June 2008, Gregory Brown. All Rights Reserved.
#
# This is free software. Please see the LICENSE and COPYING files for details.
 
module Prawn
  class Document
    
    # Builds and renders a Document::Table object from raw data.
    # For details on the options that can be passed, see
    # Document::Table.new
    #
    # data = [["Gregory","Brown"],["James","Healy"],["Jia","Wu"]]
    #
    # Prawn::Document.generate("table.pdf") do
    #
    # # Default table, without headers
    # table(data)
    #
    # # Default table with headers
    # table data, :headers => ["First Name", "Last Name"]
    #
    # # Very close to PDF::Writer's default SimpleTable output
    # table data, :headers => ["First Name", "Last Name"],
    # :font_size => 10,
    # :vertical_padding => 2,
    # :horizontal_padding => 5,
    # :position => :center,
    # :row_colors => :pdf_writer,
    #
    # # Grid border style with explicit column widths.
    # table data, :border_style => :grid,
    # :widths => { 0 => 100, 1 => 150 }
    #
    # end
    #
    # Will raise <tt>Prawn::Errors::EmptyTable</tt> given
    # a nil or empty <tt>data</tt> paramater.
    #
    def table(data,options={})
      if data.nil? || data.empty?
        raise Prawn::Errors::EmptyTable,
          "data must be a non-empty, non-nil, two dimensional array of Prawn::Cells or strings"
      end
      Prawn::Document::Table.new(data,self,options).draw
    end
 
    # This class implements simple PDF table generation.
    #
    # Prawn tables have the following features:
    #
    # * Can be generated with or without headers
    # * Can tweak horizontal and vertical padding of text
    # * Minimal styling support (borders / row background colors)
    # * Can be positioned by bounding boxes (left/center aligned) or an
    # absolute x position
    # * Automated page-breaking as needed
    # * Column widths can be calculated automatically or defined explictly on a
    # column by column basis
    # * Text alignment can be set for the whole table or by column
    #
    # The current implementation is a bit barebones, but covers most of the
    # basic needs for PDF table generation. If you have feature requests,
    # please share them at: http://groups.google.com/group/prawn-ruby
    #
    # Tables will be revisited before the end of the Ruby Mendicant project and
    # the most commonly needed functionality will likely be added.
    #
    class Table
      
      include Prawn::Configurable
 
      attr_reader :col_widths # :nodoc:
      
      NUMBER_PATTERN = /^-?(?:0|[1-9]\d*)(?:\.\d+(?:[eE][+-]?\d+)?)?$/ #:nodoc:
 
      # Creates a new Document::Table object. This is generally called
      # indirectly through Document#table but can also be used explictly.
      #
      # The <tt>data</tt> argument is a two dimensional array of strings,
      # organized by row, e.g. [["r1-col1","r1-col2"],["r2-col2","r2-col2"]].
      # As with all Prawn text drawing operations, strings must be UTF-8 encoded.
      #
      # The following options are available for customizing your tables, with
      # defaults shown in [] at the end of each description.
      #
      # <tt>:font_size</tt>:: The font size for the text cells . [12]
      # <tt>:horizontal_padding</tt>:: The horizontal cell padding in PDF points [5]
      # <tt>:vertical_padding</tt>:: The vertical cell padding in PDF points [5]
      # <tt>:padding</tt>:: Horizontal and vertical cell padding (overrides both)
      # <tt>:border_width</tt>:: With of border lines in PDF points [1]
      # <tt>:border_style</tt>:: If set to :grid, fills in all borders. Otherwise, borders are drawn on columns only, not rows
      # <tt>:position</tt>:: One of <tt>:left</tt>, <tt>:center</tt> or <tt>n</tt>, where <tt>n</tt> is an x-offset from the left edge of the current bounding box
      # <tt>:widths:</tt> A hash of indices and widths in PDF points. E.g. <tt>{ 0 => 50, 1 => 100 }</tt>
      # <tt>:row_colors</tt>:: An array of row background colors which are used cyclicly.
      # <tt>:align</tt>:: Alignment of text in columns, for entire table (<tt>:center</tt>) or by column (<tt>{ 0 => :left, 1 => :center}</tt>)
      # <tt>:align_headers</tt>:: Alignment of header text. Specify for entire header (<tt>:left</tt>) or by column (<tt>{ 0 => :right, 1 => :left}</tt>). If omitted, the header alignment is the same as the column alignment.
      #
      # Row colors are specified as html encoded values, e.g.
      # ["ffffff","aaaaaa","ccaaff"]. You can also specify
      # <tt>:row_colors => :pdf_writer</tt> if you wish to use the default color
      # scheme from the PDF::Writer library.
      #
      # See Document#table for typical usage, as directly using this class is
      # not recommended unless you know why you want to do it.
      #
      def initialize(data, document,options={})
        unless data.all? { |e| Array === e }
          raise Prawn::Errors::InvalidTableData,
            "data must be a two dimensional array of Prawn::Cells or strings"
        end
        
        @data = data
        @document = document
        
        Prawn.verify_options [:font_size,:border_style, :border_width,
         :position, :headers, :row_colors, :align, :align_headers,
         :horizontal_padding, :vertical_padding, :padding, :widths,
         :header_color ], options
                                            
        configuration.update(options)
 
        if padding = options[:padding]
          C(:horizontal_padding => padding, :vertical_padding => padding)
        end
         
        if options[:row_colors] == :pdf_writer
          C(:row_colors => ["ffffff","cccccc"])
        end
        
        if options[:row_colors]
          C(:original_row_colors => C(:row_colors))
        end
 
        calculate_column_widths(options[:widths])
      end
      
      attr_reader :col_widths #:nodoc:
      
      # Width of the table in PDF points
      #
      def width
         @col_widths.inject(0) { |s,r| s + r }
      end
      
      # Draws the table onto the PDF document
      #
      def draw
        @parent_bounds = @document.bounds
        case C(:position)
        when :center
          x = (@document.bounds.width - width) / 2.0
          dy = @document.bounds.absolute_top - @document.y
          @document.bounding_box [x, @parent_bounds.top], :width => width do
            @document.move_down(dy)
            generate_table
          end
        when Numeric
          x, y = C(:position), @document.y - @document.bounds.absolute_bottom
          @document.bounding_box([x,y], :width => width) { generate_table }
        else
          generate_table
        end
      end
 
      private
      
      def default_configuration
        { :font_size => 12,
          :border_width => 1,
          :position => :left,
          :horizontal_padding => 5,
          :vertical_padding => 5 }
      end
 
      def calculate_column_widths(manual_widths=nil)
        @col_widths = [0] * @data[0].length
        renderable_data.each do |row|
          row.each_with_index do |cell,i|
            length = cell.to_s.lines.map { |e|
              @document.font.metrics.string_width(e,C(:font_size)) }.max.to_f +
                2*C(:horizontal_padding)
            @col_widths[i] = length.ceil if length > @col_widths[i]
          end
        end
        
        manual_widths.each { |k,v| @col_widths[k] = v } if manual_widths
      end
 
      def renderable_data
        C(:headers) ? [C(:headers)] + @data : @data
      end
 
      def generate_table
        page_contents = []
        y_pos = @document.y
 
        @document.font.size C(:font_size) do
          renderable_data.each_with_index do |row,index|
            c = Prawn::Graphics::CellBlock.new(@document)
            row.each_with_index do |e,i|
              case C(:align)
              when Hash
                align = C(:align)[i]
              else
                align = C(:align)
              end
              
              
              align ||= e.to_s =~ NUMBER_PATTERN ? :right : :left
              
              case e
              when Prawn::Graphics::Cell
                e.document = @document
                e.width = @col_widths[i]
                e.horizontal_padding = C(:horizontal_padding)
                e.vertical_padding = C(:vertical_padding)
                e.border_width = C(:border_width)
                e.border_style = :sides
                e.align = align
                c << e
              else
                c << Prawn::Graphics::Cell.new(
                  :document => @document,
                  :text => e.to_s,
                  :width => @col_widths[i],
                  :horizontal_padding => C(:horizontal_padding),
                  :vertical_padding => C(:vertical_padding),
                  :border_width => C(:border_width),
                  :border_style => :sides,
                  :align => align )
              end
            end
                                                
            bbox = @parent_bounds.stretchy? ? @document.margin_box : @parent_bounds
            if c.height > y_pos - bbox.absolute_bottom
              draw_page(page_contents)
              @document.start_new_page
              if C(:headers)
                page_contents = [page_contents[0]]
                y_pos = @document.y - page_contents[0].height
              else
                page_contents = []
                y_pos = @document.y
              end
            end
 
            page_contents << c
 
            y_pos -= c.height
 
            if index == renderable_data.length - 1
              draw_page(page_contents)
            end
 
          end
        end
      end
 
      def draw_page(contents)
        return if contents.empty?
 
        if C(:border_style) == :grid || contents.length == 1
          contents.each { |e| e.border_style = :all }
        else
          if C(:headers)
            contents.first.border_style = :all
          else
            contents.first.border_style = :no_bottom
          end
          contents.last.border_style = :no_top
        end
        if C(:headers)
          contents.first.cells.each_with_index do |e,i|
          if C(:align_headers)
            case C(:align_headers)
              when Hash
                align = C(:align_headers)[i]
              else
                align = C(:align_headers)
              end
            end
            e.align = align if align
          end
        end
        
        contents.first.background_color = C(:header_color) if C(:header_color)
 
        contents.each do |x|
          unless x.background_color
            x.background_color = next_row_color if C(:row_colors)
          end
          x.draw
        end
 
        reset_row_colors
      end
 
      def next_row_color
        color = C(:row_colors).shift
        C(:row_colors).push(color)
        color
      end
 
      def reset_row_colors
        C(:row_colors => C(:original_row_colors).dup) if C(:row_colors)
      end
 
    end
  end
end