writeexcel 0.3.5 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitattributes +1 -0
- data/README.rdoc +12 -6
- data/VERSION +1 -1
- data/charts/chartex.rb +316 -315
- data/charts/demo1.rb +1 -0
- data/charts/demo2.rb +1 -0
- data/charts/demo3.rb +117 -116
- data/charts/demo4.rb +119 -118
- data/charts/demo5.rb +48 -47
- data/examples/a_simple.rb +1 -0
- data/examples/autofilter.rb +1 -0
- data/examples/bigfile.rb +30 -29
- data/examples/chart_area.rb +121 -120
- data/examples/chart_bar.rb +120 -119
- data/examples/chart_column.rb +120 -119
- data/examples/chart_line.rb +120 -119
- data/examples/chart_pie.rb +108 -107
- data/examples/chart_scatter.rb +121 -120
- data/examples/chart_stock.rb +148 -147
- data/examples/chess.rb +1 -0
- data/examples/colors.rb +1 -0
- data/examples/comments1.rb +1 -0
- data/examples/comments2.rb +3 -2
- data/examples/copyformat.rb +1 -0
- data/examples/data_validate.rb +1 -0
- data/examples/date_time.rb +1 -0
- data/examples/defined_name.rb +1 -0
- data/examples/demo.rb +1 -0
- data/examples/diag_border.rb +1 -0
- data/examples/formats.rb +1 -0
- data/examples/formula_result.rb +1 -0
- data/examples/header.rb +1 -0
- data/examples/hide_sheet.rb +1 -0
- data/examples/hyperlink.rb +1 -0
- data/examples/images.rb +1 -0
- data/examples/indent.rb +1 -0
- data/examples/merge1.rb +1 -0
- data/examples/merge2.rb +1 -0
- data/examples/merge3.rb +1 -0
- data/examples/merge4.rb +1 -0
- data/examples/merge5.rb +1 -0
- data/examples/merge6.rb +67 -66
- data/examples/outline.rb +1 -0
- data/examples/outline_collapsed.rb +1 -0
- data/examples/panes.rb +1 -0
- data/examples/properties.rb +1 -0
- data/examples/properties_jp.rb +1 -0
- data/examples/protection.rb +1 -0
- data/examples/regions.rb +1 -0
- data/examples/repeat.rb +1 -0
- data/examples/right_to_left.rb +1 -0
- data/examples/row_wrap.rb +1 -0
- data/examples/stats.rb +1 -0
- data/examples/stocks.rb +1 -0
- data/examples/tab_colors.rb +1 -0
- data/examples/write_arrays.rb +1 -0
- data/lib/writeexcel.rb +6 -1
- data/lib/writeexcel/biffwriter.rb +21 -20
- data/lib/writeexcel/chart.rb +25 -12
- data/lib/writeexcel/charts/area.rb +153 -152
- data/lib/writeexcel/charts/bar.rb +178 -177
- data/lib/writeexcel/charts/column.rb +157 -156
- data/lib/writeexcel/charts/external.rb +62 -61
- data/lib/writeexcel/charts/line.rb +153 -152
- data/lib/writeexcel/charts/pie.rb +170 -169
- data/lib/writeexcel/charts/scatter.rb +4 -3
- data/lib/writeexcel/charts/stock.rb +212 -211
- data/lib/writeexcel/compatibility.rb +320 -0
- data/lib/writeexcel/excelformulaparser.rb +587 -586
- data/lib/writeexcel/format.rb +12 -13
- data/lib/writeexcel/formula.rb +30 -28
- data/lib/writeexcel/helper.rb +23 -0
- data/lib/writeexcel/olewriter.rb +5 -16
- data/lib/writeexcel/properties.rb +43 -54
- data/lib/writeexcel/storage_lite.rb +981 -968
- data/lib/writeexcel/workbook.rb +94 -73
- data/lib/writeexcel/worksheet.rb +230 -210
- data/test/helper.rb +19 -0
- data/test/test_00_IEEE_double.rb +1 -0
- data/test/test_01_add_worksheet.rb +1 -0
- data/test/test_02_merge_formats.rb +3 -5
- data/test/test_04_dimensions.rb +3 -5
- data/test/test_05_rows.rb +6 -6
- data/test/test_06_extsst.rb +8 -8
- data/test/test_11_date_time.rb +3 -5
- data/test/test_12_date_only.rb +3 -5
- data/test/test_13_date_seconds.rb +4 -6
- data/test/test_21_escher.rb +3 -5
- data/test/test_22_mso_drawing_group.rb +20 -22
- data/test/test_23_note.rb +5 -7
- data/test/test_24_txo.rb +3 -5
- data/test/test_25_position_object.rb +84 -79
- data/test/test_26_autofilter.rb +3 -13
- data/test/test_27_autofilter.rb +3 -13
- data/test/test_28_autofilter.rb +3 -13
- data/test/test_29_process_jpg.rb +5 -0
- data/test/test_30_validation_dval.rb +3 -5
- data/test/test_31_validation_dv_strings.rb +3 -5
- data/test/test_32_validation_dv_formula.rb +3 -5
- data/test/test_40_property_types.rb +10 -9
- data/test/test_41_properties.rb +1 -0
- data/test/test_42_set_properties.rb +14 -15
- data/test/test_50_name_stored.rb +299 -302
- data/test/test_51_name_print_area.rb +357 -360
- data/test/test_52_name_print_titles.rb +454 -457
- data/test/test_53_autofilter.rb +203 -206
- data/test/test_60_chart_generic.rb +5 -0
- data/test/test_61_chart_subclasses.rb +95 -94
- data/test/test_62_chart_formats.rb +272 -267
- data/test/test_63_chart_area_formats.rb +649 -644
- data/test/test_biff.rb +12 -38
- data/test/test_compatibility.rb +627 -0
- data/test/test_example_match.rb +3 -18
- data/test/test_format.rb +46 -105
- data/test/test_formula.rb +1 -0
- data/test/test_ole.rb +3 -4
- data/test/test_storage_lite.rb +125 -146
- data/test/test_workbook.rb +2 -23
- data/test/test_worksheet.rb +4 -5
- data/utils/add_magic_comment.rb +80 -0
- data/writeexcel.gemspec +8 -2
- metadata +10 -4
@@ -1,968 +1,981 @@
|
|
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
|
-
info
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
def
|
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
|
-
info[:
|
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
|
-
info
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
end
|
164
|
-
private :
|
165
|
-
|
166
|
-
def
|
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
|
-
if
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
end
|
258
|
-
private :
|
259
|
-
|
260
|
-
def
|
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
|
-
end
|
306
|
-
private :
|
307
|
-
|
308
|
-
def
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
end
|
331
|
-
private :
|
332
|
-
|
333
|
-
def
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
info
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
@
|
441
|
-
@
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
rh_info
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
if
|
572
|
-
rh_info[:
|
573
|
-
else
|
574
|
-
rh_info[:
|
575
|
-
end
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
#
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
[
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
[
|
701
|
-
[
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
#
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
#1.
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
pps_array[
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
pps_array[
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
pps_array[
|
832
|
-
|
833
|
-
pps_array[
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
#1.
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
|
898
|
-
|
899
|
-
|
900
|
-
#1.
|
901
|
-
|
902
|
-
file.write([
|
903
|
-
end
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
|
952
|
-
|
953
|
-
|
954
|
-
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
|
959
|
-
|
960
|
-
|
961
|
-
|
962
|
-
|
963
|
-
@pps_file
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
#
|
3
|
+
# OLE::Storage_Lite
|
4
|
+
# by Kawai, Takanori (Hippo2000) 2000.11.4, 8, 14
|
5
|
+
# This Program is Still ALPHA version.
|
6
|
+
#//////////////////////////////////////////////////////////////////////////////
|
7
|
+
#
|
8
|
+
# converted from CPAN's OLE::Storage_Lite.
|
9
|
+
# converted to Ruby by Hideo Nakamura, cxn03651@msj.biglobe.ne.jp
|
10
|
+
#
|
11
|
+
|
12
|
+
require 'tempfile'
|
13
|
+
require 'stringio'
|
14
|
+
|
15
|
+
class OLEStorageLite #:nodoc:
|
16
|
+
PPS_TYPE_ROOT = 5
|
17
|
+
PPS_TYPE_DIR = 1
|
18
|
+
PPS_TYPE_FILE = 2
|
19
|
+
DATA_SIZE_SMALL = 0x1000
|
20
|
+
LONG_INT_SIZE = 4
|
21
|
+
PPS_SIZE = 0x80
|
22
|
+
|
23
|
+
attr_reader :file
|
24
|
+
|
25
|
+
def initialize(file = nil)
|
26
|
+
@file = file
|
27
|
+
end
|
28
|
+
|
29
|
+
def getPpsTree(data)
|
30
|
+
info = _initParse(file)
|
31
|
+
info ? _getPpsTree(0, info, data) : nil
|
32
|
+
end
|
33
|
+
|
34
|
+
def getPpsSearch(name, data, icase)
|
35
|
+
info = _initParse(file)
|
36
|
+
info ? _getPpsSearch(0, info, name, data, icase) : nil
|
37
|
+
end
|
38
|
+
|
39
|
+
def getNthPps(no, data)
|
40
|
+
info = _initParse(file)
|
41
|
+
info ? _getNthPps(no, info, data) : nil
|
42
|
+
end
|
43
|
+
|
44
|
+
def _initParse(file)
|
45
|
+
io = file.kind_of?(String) ? open(file, 'rb') : file
|
46
|
+
_getHeaderInfo(io)
|
47
|
+
end
|
48
|
+
private :_initParse
|
49
|
+
|
50
|
+
def _getPpsTree(no, info, data, done)
|
51
|
+
if done
|
52
|
+
return [] if done.include?(no)
|
53
|
+
else
|
54
|
+
done = []
|
55
|
+
end
|
56
|
+
done << no
|
57
|
+
|
58
|
+
rootblock = info[:root_start]
|
59
|
+
|
60
|
+
#1. Get Information about itself
|
61
|
+
pps = _getNthPps(no, info, data)
|
62
|
+
|
63
|
+
#2. Child
|
64
|
+
if pps.dir_pps != 0xFFFFFFFF
|
65
|
+
pps.child = _getPpsTree(pps.dir_pps, info, data, done)
|
66
|
+
else
|
67
|
+
pps.child = nil
|
68
|
+
end
|
69
|
+
|
70
|
+
#3. Previous,Next PPSs
|
71
|
+
list = []
|
72
|
+
list << _getPpsTree(pps.prev_pps, info, data, done) if pps.prev_pps != 0xFFFFFFFF
|
73
|
+
list << pps
|
74
|
+
list << _getPpsTree(pps.next_pps, info, data, done) if pps.next_pps != 0xFFFFFFFF
|
75
|
+
end
|
76
|
+
private :_getPpsTree
|
77
|
+
|
78
|
+
def _getPpsSearch(no, info, name, data, icase, done = nil)
|
79
|
+
rootblock = info[:root_start]
|
80
|
+
#1. Check it self
|
81
|
+
if done
|
82
|
+
return [] if done.include?(no)
|
83
|
+
else
|
84
|
+
done = []
|
85
|
+
end
|
86
|
+
done << no
|
87
|
+
pps = _getNthPps(no, info, nil)
|
88
|
+
|
89
|
+
re = Regexp.new("^\Q#{pps.name}\E$", Regexp::IGNORECASE)
|
90
|
+
if (icase && !name.select { |v| v =~ re }.empty?) || name.include?(pps.name)
|
91
|
+
pps = _getNthPps(no, info, data) if data
|
92
|
+
res = [pps]
|
93
|
+
else
|
94
|
+
res = []
|
95
|
+
end
|
96
|
+
|
97
|
+
#2. Check Child, Previous, Next PPSs
|
98
|
+
res +=
|
99
|
+
_getPpsSearch(pps.dir_pps, info, name, data, icase, done) if pps.dir_pps != 0xFFFFFFFF
|
100
|
+
res +=
|
101
|
+
_getPpsSearch(pps.prev_pps, info, name, data, icase, done) if pps.prev_pps != 0xFFFFFFFF
|
102
|
+
res +=
|
103
|
+
_getPpsSearch(pps.next_pps, info, name, data, icase, done) if pps.next_pps != 0xFFFFFFFF
|
104
|
+
res
|
105
|
+
end
|
106
|
+
private :_getPpsSearch
|
107
|
+
|
108
|
+
def _getHeaderInfo(io)
|
109
|
+
info = { :fileh => io }
|
110
|
+
|
111
|
+
#0. Check ID
|
112
|
+
info[:fileh].seek(0, 0)
|
113
|
+
return nil unless info[:fileh].read(8) == "\xD0\xCF\x11\xE0\xA1\xB1\x1A\xE1"
|
114
|
+
|
115
|
+
# BIG BLOCK SIZE
|
116
|
+
val = _getInfoFromFile(info[:fileh], 0x1E, 2, "v")
|
117
|
+
return nil if val.nil?
|
118
|
+
info[:big_block_size] = 2 ** val
|
119
|
+
|
120
|
+
# SMALL BLOCK SIZE
|
121
|
+
val = _getInfoFromFile(info[:fileh], 0x20, 2, "v")
|
122
|
+
return nil if val.nil?
|
123
|
+
info[:small_block_size] = 2 ** val
|
124
|
+
|
125
|
+
# BDB Count
|
126
|
+
val = _getInfoFromFile(info[:fileh], 0x2C, 4, "V")
|
127
|
+
return nil if val.nil?
|
128
|
+
info[:bdb_count] = val
|
129
|
+
|
130
|
+
# START BLOCK
|
131
|
+
val = _getInfoFromFile(info[:fileh], 0x30, 4, "V")
|
132
|
+
return nil if val.nil?
|
133
|
+
info[:root_start] = val
|
134
|
+
|
135
|
+
# SMALL BD START
|
136
|
+
val = _getInfoFromFile(info[:fileh], 0x3C, 4, "V")
|
137
|
+
return nil if val.nil?
|
138
|
+
info[:sbd_start] = val
|
139
|
+
|
140
|
+
# SMALL BD COUNT
|
141
|
+
val = _getInfoFromFile(info[:fileh], 0x40, 4, "V")
|
142
|
+
return nil if val.nil?
|
143
|
+
info[:sbd_count] = val
|
144
|
+
|
145
|
+
# EXTRA BBD START
|
146
|
+
val = _getInfoFromFile(info[:fileh], 0x44, 4, "V")
|
147
|
+
return nil if val.nil?
|
148
|
+
info[:extra_bbd_start] = val
|
149
|
+
|
150
|
+
# EXTRA BBD COUNT
|
151
|
+
val = _getInfoFromFile(info[:fileh], 0x48, 4, "V")
|
152
|
+
return nil if val.nil?
|
153
|
+
info[:extra_bbd_count] = val
|
154
|
+
|
155
|
+
#GET BBD INFO
|
156
|
+
info[:bbd_info] = _getBbdInfo(info)
|
157
|
+
|
158
|
+
# GET ROOT PPS
|
159
|
+
root = _getNthPps(0, info, nil)
|
160
|
+
info[:sb_start] = root.start_block
|
161
|
+
info[:sb_size] = root.size
|
162
|
+
info
|
163
|
+
end
|
164
|
+
private :_getHeaderInfo
|
165
|
+
|
166
|
+
def _getInfoFromFile(io, pos, len, fmt)
|
167
|
+
io.seek(pos, 0)
|
168
|
+
str = io.read(len)
|
169
|
+
if str.bytesize != len
|
170
|
+
nil
|
171
|
+
else
|
172
|
+
str.unpack(fmt)[0]
|
173
|
+
end
|
174
|
+
end
|
175
|
+
private :_getInfoFromFile
|
176
|
+
|
177
|
+
def _getBbdInfo(info)
|
178
|
+
bdlist = []
|
179
|
+
iBdbCnt = info[:bdb_count]
|
180
|
+
i1stCnt = (info[:big_block_size] - 0x4C) / LONG_INT_SIZE
|
181
|
+
iBdlCnt = info[:big_block_size] / LONG_INT_SIZE - 1
|
182
|
+
|
183
|
+
#1. 1st BDlist
|
184
|
+
info[:fileh].seek(0x4C, 0)
|
185
|
+
iGetCnt = iBdbCnt < i1stCnt ? iBdbCnt : i1stCnt
|
186
|
+
str = info[:fileh].read(LONG_INT_SIZE * iGetCnt)
|
187
|
+
bdlist += str.unpack("V#{iGetCnt}")
|
188
|
+
iBdbCnt -= iGetCnt
|
189
|
+
|
190
|
+
#2. Extra BDList
|
191
|
+
iBlock = info[:extra_bbd_start]
|
192
|
+
while iBdbCnt> 0 && _isNormalBlock(iBlock)
|
193
|
+
_setFilePos(iBlock, 0, info)
|
194
|
+
iGetCnt = iBdbCnt < iBdlCnt ? iBdbCnt : iBdlCnt
|
195
|
+
str = info[:fileh].read(LONG_INT_SIZE * iGetCnt)
|
196
|
+
bdlist += str.unpack("V#{iGetCnt}")
|
197
|
+
iBdbCnt -= iGetCnt
|
198
|
+
str = info[:fileh].read(LONG_INT_SIZE)
|
199
|
+
iBlock = str.unpack("V")
|
200
|
+
end
|
201
|
+
|
202
|
+
#3.Get BDs
|
203
|
+
hBd = Hash.new
|
204
|
+
iBlkNo = 0
|
205
|
+
iBdCnt = info[:big_block_size] / LONG_INT_SIZE
|
206
|
+
bdlist.each do |iBdL|
|
207
|
+
_setFilePos(iBdL, 0, info)
|
208
|
+
str = info[:fileh].read(info[:big_block_size])
|
209
|
+
arr = str.unpack("V#{iBdCnt}")
|
210
|
+
(0...iBdCnt).each do |i|
|
211
|
+
hBd[iBlkNo] = arr[i] if arr[i] != iBlkNo + 1
|
212
|
+
iBlkNo += 1
|
213
|
+
end
|
214
|
+
end
|
215
|
+
hBd
|
216
|
+
end
|
217
|
+
private :_getBbdInfo
|
218
|
+
|
219
|
+
def _getNthPps(pos, info, data)
|
220
|
+
ppsstart = info[:root_start]
|
221
|
+
|
222
|
+
basecnt = info[:big_block_size] / PPS_SIZE
|
223
|
+
ppsblock = pos / basecnt
|
224
|
+
ppspos = pos % basecnt
|
225
|
+
|
226
|
+
block = _getNthBlockNo(ppsstart, ppsblock, info)
|
227
|
+
return nil if block.nil?
|
228
|
+
|
229
|
+
_setFilePos(block, PPS_SIZE * ppspos, info)
|
230
|
+
str = info[:fileh].read(PPS_SIZE)
|
231
|
+
return nil if str.nil? || str == ''
|
232
|
+
nmsize = str[0x40, 2].unpack('v')[0]
|
233
|
+
nmsize -= 2 if nmsize > 2
|
234
|
+
nm = str[0, nmsize]
|
235
|
+
type = str[0x42, 2].unpack('C')[0]
|
236
|
+
ppsprev = str[0x44, LONG_INT_SIZE].unpack('V')[0]
|
237
|
+
ppsnext = str[0x48, LONG_INT_SIZE].unpack('V')[0]
|
238
|
+
dirpps = str[0x4C, LONG_INT_SIZE].unpack('V')[0]
|
239
|
+
time1st =
|
240
|
+
(type == PPS_TYPE_ROOT || type == PPS_TYPE_DIR) ? oleData2Local(str[0x64, 8]) : nil
|
241
|
+
time2nd =
|
242
|
+
(type == PPS_TYPE_ROOT || type == PPS_TYPE_DIR) ? oleData2Local(str[0x6C, 8]) : nil
|
243
|
+
start, size = str[0x74, 8].unpack('VV')
|
244
|
+
if data
|
245
|
+
sdata = _getData(type, start, size, info)
|
246
|
+
OLEStorageLitePPS.new(pos, nm, type, ppsprev, ppsnext, dirpps,
|
247
|
+
time1st, time2nd, start, size, sdata, nil)
|
248
|
+
else
|
249
|
+
OLEStorageLitePPS.new(pos, nm, type, ppsprev, ppsnext, dirpps,
|
250
|
+
time1st, time2nd, start, size, nil, nil)
|
251
|
+
end
|
252
|
+
end
|
253
|
+
private :_getNthPps
|
254
|
+
|
255
|
+
def _setFilePos(iBlock, iPos, info)
|
256
|
+
info[:fileh].seek((iBlock + 1) * info[:big_block_size] + iPos, 0)
|
257
|
+
end
|
258
|
+
private :_setFilePos
|
259
|
+
|
260
|
+
def _getNthBlockNo(stblock, nth, info)
|
261
|
+
inext = stblock
|
262
|
+
(0...nth).each do |i|
|
263
|
+
sv = inext
|
264
|
+
inext = _getNextBlockNo(sv, info)
|
265
|
+
return nil unless _isNormalBlock(inext)
|
266
|
+
end
|
267
|
+
inext
|
268
|
+
end
|
269
|
+
private :_getNthBlockNo
|
270
|
+
|
271
|
+
def _getData(iType, iBlock, iSize, info)
|
272
|
+
if iType == PPS_TYPE_FILE
|
273
|
+
if iSize < DATA_SIZE_SMALL
|
274
|
+
return _getSmallData(iBlock, iSize, info)
|
275
|
+
else
|
276
|
+
return _getBigData(iBlock, iSize, info)
|
277
|
+
end
|
278
|
+
elsif iType == PPS_TYPE_ROOT # Root
|
279
|
+
return _getBigData(iBlock, iSize, info)
|
280
|
+
elsif iType == PPS_TYPE_DIR # Directory
|
281
|
+
return nil
|
282
|
+
end
|
283
|
+
end
|
284
|
+
private :_getData
|
285
|
+
|
286
|
+
def _getBigData(iBlock, iSize, info)
|
287
|
+
return '' unless _isNormalBlock(iBlock)
|
288
|
+
iRest = iSize
|
289
|
+
sRes = ''
|
290
|
+
aKeys = info[:bbd_info].keys.sort
|
291
|
+
|
292
|
+
while iRest > 0
|
293
|
+
aRes = aKeys.select { |key| key >= iBlock }
|
294
|
+
iNKey = aRes[0]
|
295
|
+
i = iNKey - iBlock
|
296
|
+
iNext = info[:bbd_info][iNKey]
|
297
|
+
_setFilePos(iBlock, 0, info)
|
298
|
+
iGetSize = info[:big_block_size] * (i + 1)
|
299
|
+
iGetSize = iRest if iRest < iGetSize
|
300
|
+
sRes += info[:fileh].read(iGetSize)
|
301
|
+
iRest -= iGetSize
|
302
|
+
iBlock = iNext
|
303
|
+
end
|
304
|
+
sRes
|
305
|
+
end
|
306
|
+
private :_getBigData
|
307
|
+
|
308
|
+
def _getNextBlockNo(iBlockNo, info)
|
309
|
+
iRes = info[:bbd_info][iBlockNo]
|
310
|
+
iRes ? iRes : iBlockNo + 1
|
311
|
+
end
|
312
|
+
private :_getNextBlockNo
|
313
|
+
|
314
|
+
def _isNormalBlock(iBlock)
|
315
|
+
iBlock < 0xFFFFFFFC ? 1 : nil
|
316
|
+
end
|
317
|
+
private :_isNormalBlock
|
318
|
+
|
319
|
+
def _getSmallData(iSmBlock, iSize, info)
|
320
|
+
iRest = iSize
|
321
|
+
sRes = ''
|
322
|
+
while iRest > 0
|
323
|
+
_setFilePosSmall(iSmBlock, info)
|
324
|
+
sRes += info[:fileh].read(
|
325
|
+
iRest >= info[:small_block_size] ? info[:small_block_size] : iRest)
|
326
|
+
iRest -= info[:small_block_size]
|
327
|
+
iSmBlock = _getNextSmallBlockNo(iSmBlock, info)
|
328
|
+
end
|
329
|
+
sRes
|
330
|
+
end
|
331
|
+
private :_getSmallData
|
332
|
+
|
333
|
+
def _setFilePosSmall(iSmBlock, info)
|
334
|
+
iSmStart = info[:sb_start]
|
335
|
+
iBaseCnt = info[:big_block_size] / info[:small_block_size]
|
336
|
+
iNth = iSmBlock / iBaseCnt
|
337
|
+
iPos = iSmBlock % iBaseCnt
|
338
|
+
|
339
|
+
iBlk = _getNthBlockNo(iSmStart, iNth, info)
|
340
|
+
_setFilePos(iBlk, iPos * info[:small_block_size], info)
|
341
|
+
end
|
342
|
+
private :_setFilePosSmall
|
343
|
+
|
344
|
+
def _getNextSmallBlockNo(iSmBlock, info)
|
345
|
+
iBaseCnt = info[:big_block_size] / LONG_INT_SIZE
|
346
|
+
iNth = iSmBlock / iBaseCnt
|
347
|
+
iPos = iSmBlock % iBaseCnt
|
348
|
+
iBlk = _getNthBlockNo(info[:sbd_start], iNth, info)
|
349
|
+
_setFilePos(iBlk, iPos * LONG_INT_SIZE, info)
|
350
|
+
info[:fileh].read(LONG_INT_SIZE).unpack('V')
|
351
|
+
end
|
352
|
+
private :_getNextSmallBlockNo
|
353
|
+
|
354
|
+
def asc2ucs(str)
|
355
|
+
str.split(//).join("\0") + "\0"
|
356
|
+
end
|
357
|
+
|
358
|
+
def ucs2asc(str)
|
359
|
+
ary = str.unpack('v*').map { |s| [s].pack('c')}
|
360
|
+
ary.join('')
|
361
|
+
end
|
362
|
+
|
363
|
+
#------------------------------------------------------------------------------
|
364
|
+
# OLEDate2Local()
|
365
|
+
#
|
366
|
+
# Convert from a Window FILETIME structure to a localtime array. FILETIME is
|
367
|
+
# a 64-bit value representing the number of 100-nanosecond intervals since
|
368
|
+
# January 1 1601.
|
369
|
+
#
|
370
|
+
# We first convert the FILETIME to seconds and then subtract the difference
|
371
|
+
# between the 1601 epoch and the 1970 Unix epoch.
|
372
|
+
#
|
373
|
+
def oleData2Local(oletime)
|
374
|
+
# Unpack the FILETIME into high and low longs.
|
375
|
+
lo, hi = oletime.unpack('V2')
|
376
|
+
|
377
|
+
# Convert the longs to a double.
|
378
|
+
nanoseconds = hi * 2 ** 32 + lo
|
379
|
+
|
380
|
+
# Convert the 100 nanosecond units into seconds.
|
381
|
+
time = nanoseconds / 1e7
|
382
|
+
|
383
|
+
# Subtract the number of seconds between the 1601 and 1970 epochs.
|
384
|
+
time -= 11644473600
|
385
|
+
|
386
|
+
# Convert to a localtime (actually gmtime) structure.
|
387
|
+
if time >= 1
|
388
|
+
ltime = Time.at(time).getgm.to_a[0, 9]
|
389
|
+
ltime[4] -= 1 # month
|
390
|
+
ltime[5] -= 1900 # year
|
391
|
+
ltime[7] -= 1 # past from 1, Jan
|
392
|
+
ltime[8] = ltime[8] ? 1 : 0
|
393
|
+
ltime
|
394
|
+
else
|
395
|
+
[]
|
396
|
+
end
|
397
|
+
end
|
398
|
+
|
399
|
+
#------------------------------------------------------------------------------
|
400
|
+
# LocalDate2OLE()
|
401
|
+
#
|
402
|
+
# Convert from a a localtime array to a Window FILETIME structure. FILETIME is
|
403
|
+
# a 64-bit value representing the number of 100-nanosecond intervals since
|
404
|
+
# January 1 1601.
|
405
|
+
#
|
406
|
+
# We first convert the localtime (actually gmtime) to seconds and then add the
|
407
|
+
# difference between the 1601 epoch and the 1970 Unix epoch. We convert that to
|
408
|
+
# 100 nanosecond units, divide it into high and low longs and return it as a
|
409
|
+
# packed 64bit structure.
|
410
|
+
#
|
411
|
+
def localDate2OLE(localtime)
|
412
|
+
return "\x00" * 8 unless localtime
|
413
|
+
|
414
|
+
# Convert from localtime (actually gmtime) to seconds.
|
415
|
+
args = localtime.reverse
|
416
|
+
args[0] += 1900 # year
|
417
|
+
args[1] += 1 # month
|
418
|
+
time = Time.gm(*args)
|
419
|
+
|
420
|
+
# Add the number of seconds between the 1601 and 1970 epochs.
|
421
|
+
time = time.to_i + 11644473600
|
422
|
+
|
423
|
+
# The FILETIME seconds are in units of 100 nanoseconds.
|
424
|
+
nanoseconds = time * 10000000
|
425
|
+
|
426
|
+
# Pack the total nanoseconds into 64 bits...
|
427
|
+
hi, lo = nanoseconds.divmod 1 << 32
|
428
|
+
|
429
|
+
[lo, hi].pack("VV") # oletime
|
430
|
+
end
|
431
|
+
end
|
432
|
+
|
433
|
+
class OLEStorageLitePPS < OLEStorageLite #:nodoc:
|
434
|
+
attr_accessor :no, :name, :type, :prev_pps, :next_pps, :dir_pps
|
435
|
+
attr_accessor :time_1st, :time_2nd, :start_block, :size, :data, :child
|
436
|
+
attr_reader :pps_file
|
437
|
+
|
438
|
+
def initialize(iNo, sNm, iType, iPrev, iNext, iDir,
|
439
|
+
raTime1st, raTime2nd, iStart, iSize, sData, raChild)
|
440
|
+
@no = iNo
|
441
|
+
@name = sNm
|
442
|
+
@type = iType
|
443
|
+
@prev_pps = iPrev
|
444
|
+
@next_pps = iNext
|
445
|
+
@dir_pps = iDir
|
446
|
+
@time_1st = raTime1st
|
447
|
+
@time_2nd = raTime2nd
|
448
|
+
@start_block = iStart
|
449
|
+
@size = iSize
|
450
|
+
@data = sData
|
451
|
+
@child = raChild
|
452
|
+
@pps_file = nil
|
453
|
+
end
|
454
|
+
|
455
|
+
def _datalen
|
456
|
+
return 0 if @data.nil?
|
457
|
+
if @pps_file
|
458
|
+
return @pps_file.lstat.size
|
459
|
+
else
|
460
|
+
return @data.bytesize
|
461
|
+
end
|
462
|
+
end
|
463
|
+
protected :_datalen
|
464
|
+
|
465
|
+
def _makeSmallData(aList, rh_info)
|
466
|
+
file = rh_info[:fileh]
|
467
|
+
iSmBlk = 0
|
468
|
+
sRes = ''
|
469
|
+
|
470
|
+
aList.each do |pps|
|
471
|
+
#1. Make SBD, small data string
|
472
|
+
if pps.type == PPS_TYPE_FILE
|
473
|
+
next if pps.size <= 0
|
474
|
+
if pps.size < rh_info[:small_size]
|
475
|
+
iSmbCnt = pps.size / rh_info[:small_block_size]
|
476
|
+
iSmbCnt += 1 if pps.size % rh_info[:small_block_size] > 0
|
477
|
+
#1.1 Add to SBD
|
478
|
+
0.upto(iSmbCnt-1-1) do |i|
|
479
|
+
file.write([i + iSmBlk+1].pack("V"))
|
480
|
+
end
|
481
|
+
file.write([-2].pack("V"))
|
482
|
+
|
483
|
+
#1.2 Add to Data String(this will be written for RootEntry)
|
484
|
+
#Check for update
|
485
|
+
if pps.pps_file
|
486
|
+
pps.pps_file.seek(0) #To The Top
|
487
|
+
while sBuff = pps.pps_file.read(4096)
|
488
|
+
sRes << sBuff
|
489
|
+
end
|
490
|
+
else
|
491
|
+
sRes << pps.data
|
492
|
+
end
|
493
|
+
if pps.size % rh_info[:small_block_size] > 0
|
494
|
+
cnt = rh_info[:small_block_size] - (pps.size % rh_info[:small_block_size])
|
495
|
+
sRes << "\0" * cnt
|
496
|
+
end
|
497
|
+
#1.3 Set for PPS
|
498
|
+
pps.start_block = iSmBlk
|
499
|
+
iSmBlk += iSmbCnt
|
500
|
+
end
|
501
|
+
end
|
502
|
+
end
|
503
|
+
iSbCnt = rh_info[:big_block_size] / LONG_INT_SIZE
|
504
|
+
file.write([-1].pack("V") * (iSbCnt - (iSmBlk % iSbCnt))) if iSmBlk % iSbCnt > 0
|
505
|
+
#2. Write SBD with adjusting length for block
|
506
|
+
sRes
|
507
|
+
end
|
508
|
+
private :_makeSmallData
|
509
|
+
|
510
|
+
def _savePpsWk(rh_info)
|
511
|
+
#1. Write PPS
|
512
|
+
file = rh_info[:fileh]
|
513
|
+
file.write( [
|
514
|
+
@name,
|
515
|
+
("\x00" * (64 - @name.bytesize)), #64
|
516
|
+
[@name.bytesize + 2].pack("v"), #66
|
517
|
+
[@type].pack("c"), #67
|
518
|
+
[0x00].pack("c"), #UK #68
|
519
|
+
[@prev_pps].pack("V"), #Prev #72
|
520
|
+
[@next_pps].pack("V"), #Next #76
|
521
|
+
[@dir_pps].pack("V"), #Dir #80
|
522
|
+
"\x00\x09\x02\x00", #84
|
523
|
+
"\x00\x00\x00\x00", #88
|
524
|
+
"\xc0\x00\x00\x00", #92
|
525
|
+
"\x00\x00\x00\x46", #96
|
526
|
+
"\x00\x00\x00\x00", #100
|
527
|
+
localDate2OLE(@time_1st), #108
|
528
|
+
localDate2OLE(@time_2nd) #116
|
529
|
+
].collect { |d| d.force_encoding(Encoding::BINARY) }.join('')
|
530
|
+
)
|
531
|
+
if @start_block != 0
|
532
|
+
file.write([@start_block].pack('V'))
|
533
|
+
else
|
534
|
+
file.write([0].pack('V'))
|
535
|
+
end
|
536
|
+
if @size != 0 #124
|
537
|
+
file.write([@size].pack('V'))
|
538
|
+
else
|
539
|
+
file.write([0].pack('V'))
|
540
|
+
end
|
541
|
+
file.write([0].pack('V')) #128
|
542
|
+
end
|
543
|
+
protected :_savePpsWk
|
544
|
+
end
|
545
|
+
|
546
|
+
class OLEStorageLitePPSRoot < OLEStorageLitePPS #:nodoc:
|
547
|
+
def initialize(raTime1st, raTime2nd, raChild)
|
548
|
+
super(
|
549
|
+
nil,
|
550
|
+
asc2ucs('Root Entry'),
|
551
|
+
PPS_TYPE_ROOT,
|
552
|
+
nil,
|
553
|
+
nil,
|
554
|
+
nil,
|
555
|
+
raTime1st,
|
556
|
+
raTime2nd,
|
557
|
+
nil,
|
558
|
+
nil,
|
559
|
+
nil,
|
560
|
+
raChild)
|
561
|
+
end
|
562
|
+
|
563
|
+
def save(sFile, bNoAs = nil, rh_info = nil)
|
564
|
+
#0.Initial Setting for saving
|
565
|
+
rh_info = Hash.new unless rh_info
|
566
|
+
if rh_info[:big_block_size]
|
567
|
+
rh_info[:big_block_size] = 2 ** adjust2(rh_info[:big_block_size])
|
568
|
+
else
|
569
|
+
rh_info[:big_block_size] = 2 ** 9
|
570
|
+
end
|
571
|
+
if rh_info[:small_block_size]
|
572
|
+
rh_info[:small_block_size] = 2 ** adjust2(rh_info[:small_block_size])
|
573
|
+
else
|
574
|
+
rh_info[:small_block_size] = 2 ** 6
|
575
|
+
end
|
576
|
+
rh_info[:small_size] = 0x1000
|
577
|
+
rh_info[:pps_size] = 0x80
|
578
|
+
|
579
|
+
close_file = true
|
580
|
+
|
581
|
+
#1.Open File
|
582
|
+
#1.1 sFile is Ref of scalar
|
583
|
+
if sFile.kind_of?(String)
|
584
|
+
rh_info[:fileh] = open(sFile, "wb")
|
585
|
+
else
|
586
|
+
rh_info[:fileh] = sFile.binmode
|
587
|
+
end
|
588
|
+
|
589
|
+
iBlk = 0
|
590
|
+
#1. Make an array of PPS (for Save)
|
591
|
+
aList=[]
|
592
|
+
if bNoAs
|
593
|
+
_savePpsSetPnt2([self], aList, rh_info)
|
594
|
+
else
|
595
|
+
_savePpsSetPnt([self], aList, rh_info)
|
596
|
+
end
|
597
|
+
iSBDcnt, iBBcnt, iPPScnt = _calcSize(aList, rh_info)
|
598
|
+
|
599
|
+
#2.Save Header
|
600
|
+
_saveHeader(rh_info, iSBDcnt, iBBcnt, iPPScnt)
|
601
|
+
|
602
|
+
#3.Make Small Data string (write SBD)
|
603
|
+
# Small Datas become RootEntry Data
|
604
|
+
@data = _makeSmallData(aList, rh_info)
|
605
|
+
|
606
|
+
#4. Write BB
|
607
|
+
iBBlk = iSBDcnt
|
608
|
+
_saveBigData(iBBlk, aList, rh_info)
|
609
|
+
|
610
|
+
#5. Write PPS
|
611
|
+
_savePps(aList, rh_info)
|
612
|
+
|
613
|
+
#6. Write BD and BDList and Adding Header informations
|
614
|
+
_saveBbd(iSBDcnt, iBBcnt, iPPScnt, rh_info)
|
615
|
+
|
616
|
+
#7.Close File
|
617
|
+
rh_info[:fileh].close if close_file
|
618
|
+
end
|
619
|
+
|
620
|
+
def _calcSize(aList, rh_info)
|
621
|
+
#0. Calculate Basic Setting
|
622
|
+
iSBDcnt, iBBcnt, iPPScnt = [0,0,0]
|
623
|
+
iSmallLen = 0
|
624
|
+
iSBcnt = 0
|
625
|
+
aList.each do |pps|
|
626
|
+
if pps.type == PPS_TYPE_FILE
|
627
|
+
pps.size = pps._datalen #Mod
|
628
|
+
if pps.size < rh_info[:small_size]
|
629
|
+
iSBcnt += pps.size / rh_info[:small_block_size]
|
630
|
+
iSBcnt += 1 if pps.size % rh_info[:small_block_size] > 0
|
631
|
+
else
|
632
|
+
iBBcnt += pps.size / rh_info[:big_block_size]
|
633
|
+
iBBcnt += 1 if pps.size % rh_info[:big_block_size] > 0
|
634
|
+
end
|
635
|
+
end
|
636
|
+
end
|
637
|
+
iSmallLen = iSBcnt * rh_info[:small_block_size]
|
638
|
+
iSlCnt = rh_info[:big_block_size] / LONG_INT_SIZE
|
639
|
+
iSBDcnt = iSBcnt / iSlCnt
|
640
|
+
iSBDcnt += 1 if iSBcnt % iSlCnt > 0
|
641
|
+
iBBcnt += iSmallLen / rh_info[:big_block_size]
|
642
|
+
iBBcnt += 1 if iSmallLen % rh_info[:big_block_size] > 0
|
643
|
+
iCnt = aList.size
|
644
|
+
iBdCnt = rh_info[:big_block_size] / PPS_SIZE
|
645
|
+
iPPScnt = iCnt / iBdCnt
|
646
|
+
iPPScnt += 1 if iCnt % iBdCnt > 0
|
647
|
+
[iSBDcnt, iBBcnt, iPPScnt]
|
648
|
+
end
|
649
|
+
private :_calcSize
|
650
|
+
|
651
|
+
def _adjust2(i2)
|
652
|
+
iWk = Math.log(i2)/Math.log(2)
|
653
|
+
iWk > Integer(iWk) ? Integer(iWk) + 1 : iWk
|
654
|
+
end
|
655
|
+
private :_adjust2
|
656
|
+
|
657
|
+
def _saveHeader(rh_info, iSBDcnt, iBBcnt, iPPScnt)
|
658
|
+
file = rh_info[:fileh]
|
659
|
+
|
660
|
+
#0. Calculate Basic Setting
|
661
|
+
iBlCnt = rh_info[:big_block_size] / LONG_INT_SIZE
|
662
|
+
i1stBdL = (rh_info[:big_block_size] - 0x4C) / LONG_INT_SIZE
|
663
|
+
i1stBdMax = i1stBdL * iBlCnt - i1stBdL
|
664
|
+
iBdExL = 0
|
665
|
+
iAll = iBBcnt + iPPScnt + iSBDcnt
|
666
|
+
iAllW = iAll
|
667
|
+
iBdCntW = iAllW / iBlCnt
|
668
|
+
iBdCntW += 1 if iAllW % iBlCnt > 0
|
669
|
+
iBdCnt = 0
|
670
|
+
#0.1 Calculate BD count
|
671
|
+
iBlCnt -= 1 #the BlCnt is reduced in the count of the last sect is used for a pointer the next Bl
|
672
|
+
iBBleftover = iAll - i1stBdMax
|
673
|
+
if iAll >i1stBdMax
|
674
|
+
while true
|
675
|
+
iBdCnt = iBBleftover / iBlCnt
|
676
|
+
iBdCnt += 1 if iBBleftover % iBlCnt > 0
|
677
|
+
iBdExL = iBdCnt / iBlCnt
|
678
|
+
iBdExL += 1 if iBdCnt % iBlCnt > 0
|
679
|
+
iBBleftover += iBdExL
|
680
|
+
break if iBdCnt == iBBleftover / iBlCnt + (iBBleftover % iBlCnt > 0 ? 1 : 0)
|
681
|
+
end
|
682
|
+
end
|
683
|
+
iBdCnt += i1stBdL
|
684
|
+
#print "iBdCnt = iBdCnt \n"
|
685
|
+
|
686
|
+
#1.Save Header
|
687
|
+
file.write( [
|
688
|
+
"\xD0\xCF\x11\xE0\xA1\xB1\x1A\xE1",
|
689
|
+
"\x00\x00\x00\x00" * 4,
|
690
|
+
[0x3b].pack("v"),
|
691
|
+
[0x03].pack("v"),
|
692
|
+
[-2].pack("v"),
|
693
|
+
[9].pack("v"),
|
694
|
+
[6].pack("v"),
|
695
|
+
[0].pack("v"),
|
696
|
+
"\x00\x00\x00\x00" * 2,
|
697
|
+
[iBdCnt].pack("V"),
|
698
|
+
[iBBcnt+iSBDcnt].pack("V"), #ROOT START
|
699
|
+
[0].pack("V"),
|
700
|
+
[0x1000].pack("V"),
|
701
|
+
[0].pack("V"), #Small Block Depot
|
702
|
+
[1].pack("V")
|
703
|
+
].collect { |d| d.force_encoding(Encoding::BINARY) }.join('')
|
704
|
+
)
|
705
|
+
#2. Extra BDList Start, Count
|
706
|
+
if iAll <= i1stBdMax
|
707
|
+
file.write(
|
708
|
+
[-2].pack("V") + #Extra BDList Start
|
709
|
+
[0].pack("V") #Extra BDList Count
|
710
|
+
)
|
711
|
+
else
|
712
|
+
file.write(
|
713
|
+
[iAll + iBdCnt].pack("V") +
|
714
|
+
[iBdExL].pack("V")
|
715
|
+
)
|
716
|
+
end
|
717
|
+
|
718
|
+
#3. BDList
|
719
|
+
cnt = i1stBdL
|
720
|
+
cnt = iBdCnt if iBdCnt < i1stBdL
|
721
|
+
0.upto(cnt-1) do |i|
|
722
|
+
file.write([iAll + i].pack("V"))
|
723
|
+
end
|
724
|
+
file.write([-1].pack("V") * (i1stBdL - cnt)) if cnt < i1stBdL
|
725
|
+
end
|
726
|
+
private :_saveHeader
|
727
|
+
|
728
|
+
def _saveBigData(iStBlk, aList, rh_info)
|
729
|
+
iRes = 0
|
730
|
+
file = rh_info[:fileh]
|
731
|
+
|
732
|
+
#1.Write Big (ge 0x1000) Data into Block
|
733
|
+
aList.each do |pps|
|
734
|
+
if pps.type != PPS_TYPE_DIR
|
735
|
+
#print "PPS: pps DEF:", defined(pps->{Data}), "\n"
|
736
|
+
pps.size = pps._datalen #Mod
|
737
|
+
if (pps.size >= rh_info[:small_size]) ||
|
738
|
+
((pps.type == PPS_TYPE_ROOT) && !pps.data.nil?)
|
739
|
+
#1.1 Write Data
|
740
|
+
#Check for update
|
741
|
+
if pps.pps_file
|
742
|
+
iLen = 0
|
743
|
+
pps.pps_file.seek(0, 0) #To The Top
|
744
|
+
while sBuff = pps.pps_file.read(4096)
|
745
|
+
iLen += sBuff.bytesize
|
746
|
+
file.write(sBuff) #Check for update
|
747
|
+
end
|
748
|
+
else
|
749
|
+
file.write(pps.data)
|
750
|
+
end
|
751
|
+
if pps.size % rh_info[:big_block_size] > 0
|
752
|
+
file.write(
|
753
|
+
"\x00" *
|
754
|
+
(rh_info[:big_block_size] -
|
755
|
+
(pps.size % rh_info[:big_block_size]))
|
756
|
+
)
|
757
|
+
end
|
758
|
+
#1.2 Set For PPS
|
759
|
+
pps.start_block = iStBlk
|
760
|
+
iStBlk += pps.size / rh_info[:big_block_size]
|
761
|
+
iStBlk += 1 if pps.size % rh_info[:big_block_size] > 0
|
762
|
+
end
|
763
|
+
end
|
764
|
+
end
|
765
|
+
end
|
766
|
+
|
767
|
+
def _savePps(aList, rh_info)
|
768
|
+
#0. Initial
|
769
|
+
file = rh_info[:fileh]
|
770
|
+
#2. Save PPS
|
771
|
+
aList.each do |oItem|
|
772
|
+
oItem._savePpsWk(rh_info)
|
773
|
+
end
|
774
|
+
#3. Adjust for Block
|
775
|
+
iCnt = aList.size
|
776
|
+
iBCnt = rh_info[:big_block_size] / rh_info[:pps_size]
|
777
|
+
if iCnt % iBCnt > 0
|
778
|
+
file.write("\x00" * ((iBCnt - (iCnt % iBCnt)) * rh_info[:pps_size]))
|
779
|
+
end
|
780
|
+
(iCnt / iBCnt) + ((iCnt % iBCnt) > 0 ? 1: 0)
|
781
|
+
end
|
782
|
+
private :_savePps
|
783
|
+
|
784
|
+
def _savePpsSetPnt(pps_array, aList, rh_info)
|
785
|
+
#1. make Array as Children-Relations
|
786
|
+
#1.1 if No Children
|
787
|
+
bpp=1
|
788
|
+
if pps_array.nil? || pps_array.size == 0
|
789
|
+
return 0xFFFFFFFF
|
790
|
+
#1.2 Just Only one
|
791
|
+
elsif pps_array.size == 1
|
792
|
+
aList << pps_array[0]
|
793
|
+
pps_array[0].no = aList.size - 1
|
794
|
+
pps_array[0].prev_pps = 0xFFFFFFFF
|
795
|
+
pps_array[0].next_pps = 0xFFFFFFFF
|
796
|
+
pps_array[0].dir_pps = _savePpsSetPnt(pps_array[0].child, aList, rh_info)
|
797
|
+
return pps_array[0].no
|
798
|
+
#1.3 Array
|
799
|
+
else
|
800
|
+
iCnt = pps_array.size
|
801
|
+
#1.3.1 Define Center
|
802
|
+
iPos = Integer(iCnt / 2.0) #$iCnt
|
803
|
+
|
804
|
+
aList.push(pps_array[iPos])
|
805
|
+
pps_array[iPos].no = aList.size - 1
|
806
|
+
|
807
|
+
aWk = pps_array.dup
|
808
|
+
#1.3.2 Devide a array into Previous,Next
|
809
|
+
aPrev = aWk[0, iPos]
|
810
|
+
aWk[0..iPos-1] = nil
|
811
|
+
aNext = aWk[1, iCnt - iPos - 1]
|
812
|
+
aWk[1..(1 + iCnt - iPos -1 -1)] = nil
|
813
|
+
pps_array[iPos].prev_pps = _savePpsSetPnt(aPrev, aList, rh_info)
|
814
|
+
pps_array[iPos].next_pps = _savePpsSetPnt(aNext, aList, rh_info)
|
815
|
+
pps_array[iPos].dir_pps = _savePpsSetPnt(pps_array[iPos].child, aList, rh_info)
|
816
|
+
return pps_array[iPos].no
|
817
|
+
end
|
818
|
+
end
|
819
|
+
private :_savePpsSetPnt
|
820
|
+
|
821
|
+
def _savePpsSetPnt2(pps_array, aList, rh_info)
|
822
|
+
#1. make Array as Children-Relations
|
823
|
+
#1.1 if No Children
|
824
|
+
if pps_array.nil? || pps_array.size == 0
|
825
|
+
return 0xFFFFFFFF
|
826
|
+
#1.2 Just Only one
|
827
|
+
elsif pps_array.size == 1
|
828
|
+
aList << pps_array[0]
|
829
|
+
pps_array[0].no = aList.size - 1
|
830
|
+
pps_array[0].prev_pps = 0xFFFFFFFF
|
831
|
+
pps_array[0].next_pps = 0xFFFFFFFF
|
832
|
+
pps_array[0].dir_pps = _savePpsSetPnt2(pps_array[0].child, aList, rh_info)
|
833
|
+
return pps_array[0].no
|
834
|
+
#1.3 Array
|
835
|
+
else
|
836
|
+
iCnt = pps_array.size
|
837
|
+
#1.3.1 Define Center
|
838
|
+
iPos = 0 #int($iCnt/ 2); #$iCnt
|
839
|
+
|
840
|
+
aWk = pps_array.dup
|
841
|
+
aPrev = aWk[1, 1]
|
842
|
+
aWk[1..1] = nil
|
843
|
+
aNext = aWk[1..aWk.size] #, $iCnt - $iPos -1);
|
844
|
+
pps_array[iPos].prev_pps = _savePpsSetPnt2(pps_array, aList, rh_info)
|
845
|
+
aList.push(pps_array[iPos])
|
846
|
+
pps_array[iPos].no = aList.size
|
847
|
+
|
848
|
+
#1.3.2 Devide a array into Previous,Next
|
849
|
+
pps_array[iPos].next_pps = _savePpsSetPnt2(aNext, aList, rh_info)
|
850
|
+
pps_array[iPos].dir_pps = _savePpsSetPnt2(pps_array[iPos].child, aList, rh_info)
|
851
|
+
return pps_array[iPos].no
|
852
|
+
end
|
853
|
+
end
|
854
|
+
private :_savePpsSetPnt2
|
855
|
+
|
856
|
+
def _saveBbd(iSbdSize, iBsize, iPpsCnt, rh_info)
|
857
|
+
file = rh_info[:fileh]
|
858
|
+
#0. Calculate Basic Setting
|
859
|
+
iBbCnt = rh_info[:big_block_size] / LONG_INT_SIZE
|
860
|
+
iBlCnt = iBbCnt - 1
|
861
|
+
i1stBdL = (rh_info[:big_block_size] - 0x4C) / LONG_INT_SIZE
|
862
|
+
i1stBdMax = i1stBdL * iBbCnt - i1stBdL
|
863
|
+
iBdExL = 0
|
864
|
+
iAll = iBsize + iPpsCnt + iSbdSize
|
865
|
+
iAllW = iAll
|
866
|
+
iBdCntW = iAllW / iBbCnt
|
867
|
+
iBdCntW += 1 if iAllW % iBbCnt > 0
|
868
|
+
iBdCnt = 0
|
869
|
+
#0.1 Calculate BD count
|
870
|
+
iBBleftover = iAll - i1stBdMax
|
871
|
+
if iAll >i1stBdMax
|
872
|
+
while true
|
873
|
+
iBdCnt = iBBleftover / iBlCnt
|
874
|
+
iBdCnt += 1 if iBBleftover % iBlCnt > 0
|
875
|
+
|
876
|
+
iBdExL = iBdCnt / iBlCnt
|
877
|
+
iBdExL += 1 if iBdCnt % iBlCnt > 0
|
878
|
+
iBBleftover += iBdExL
|
879
|
+
break if iBdCnt == (iBBleftover / iBlCnt + ((iBBleftover % iBlCnt) > 0 ? 1: 0))
|
880
|
+
end
|
881
|
+
end
|
882
|
+
iAllW += iBdExL
|
883
|
+
iBdCnt += i1stBdL
|
884
|
+
#print "iBdCnt = iBdCnt \n"
|
885
|
+
|
886
|
+
#1. Making BD
|
887
|
+
#1.1 Set for SBD
|
888
|
+
if iSbdSize > 0
|
889
|
+
0.upto(iSbdSize-1-1) do |i|
|
890
|
+
file.write([i + 1].pack('V'))
|
891
|
+
end
|
892
|
+
file.write([-2].pack('V'))
|
893
|
+
end
|
894
|
+
#1.2 Set for B
|
895
|
+
0.upto(iBsize-1-1) do |i|
|
896
|
+
file.write([i + iSbdSize + 1].pack('V'))
|
897
|
+
end
|
898
|
+
file.write([-2].pack('V'))
|
899
|
+
|
900
|
+
#1.3 Set for PPS
|
901
|
+
0.upto(iPpsCnt-1-1) do |i|
|
902
|
+
file.write([i+iSbdSize+iBsize+1].pack("V"))
|
903
|
+
end
|
904
|
+
file.write([-2].pack('V'))
|
905
|
+
#1.4 Set for BBD itself ( 0xFFFFFFFD : BBD)
|
906
|
+
0.upto(iBdCnt-1) do |i|
|
907
|
+
file.write([0xFFFFFFFD].pack("V"))
|
908
|
+
end
|
909
|
+
#1.5 Set for ExtraBDList
|
910
|
+
0.upto(iBdExL-1) do |i|
|
911
|
+
file.write([0xFFFFFFFC].pack("V"))
|
912
|
+
end
|
913
|
+
#1.6 Adjust for Block
|
914
|
+
if (iAllW + iBdCnt) % iBbCnt > 0
|
915
|
+
file.write([-1].pack('V') * (iBbCnt - ((iAllW + iBdCnt) % iBbCnt)))
|
916
|
+
end
|
917
|
+
#2.Extra BDList
|
918
|
+
if iBdCnt > i1stBdL
|
919
|
+
iN = 0
|
920
|
+
iNb = 0
|
921
|
+
i1stBdL.upto(iBdCnt-1) do |i|
|
922
|
+
if iN >= iBbCnt-1
|
923
|
+
iN = 0
|
924
|
+
iNb += 1
|
925
|
+
file.write([iAll+iBdCnt+iNb].pack("V"))
|
926
|
+
end
|
927
|
+
file.write([iBsize+iSbdSize+iPpsCnt+i].pack("V"))
|
928
|
+
iN += 1
|
929
|
+
end
|
930
|
+
if (iBdCnt-i1stBdL) % (iBbCnt-1) > 0
|
931
|
+
file.write([-1].pack("V") * ((iBbCnt-1) - ((iBdCnt-i1stBdL) % (iBbCnt-1))))
|
932
|
+
end
|
933
|
+
file.write([-2].pack('V'))
|
934
|
+
end
|
935
|
+
end
|
936
|
+
end
|
937
|
+
|
938
|
+
class OLEStorageLitePPSFile < OLEStorageLitePPS #:nodoc:
|
939
|
+
def initialize(sNm, data = '')
|
940
|
+
super(
|
941
|
+
nil,
|
942
|
+
sNm || '',
|
943
|
+
PPS_TYPE_FILE,
|
944
|
+
nil,
|
945
|
+
nil,
|
946
|
+
nil,
|
947
|
+
nil,
|
948
|
+
nil,
|
949
|
+
nil,
|
950
|
+
nil,
|
951
|
+
data || '',
|
952
|
+
nil
|
953
|
+
)
|
954
|
+
end
|
955
|
+
|
956
|
+
def set_file(sFile = '')
|
957
|
+
if sFile.nil? or sFile == ''
|
958
|
+
@pps_file = Tempfile.new('OLEStorageLitePPSFile')
|
959
|
+
elsif sFile.kind_of?(IO) || sFile.kind_of?(StringIO)
|
960
|
+
@pps_file = sFile
|
961
|
+
elsif sFile.kind_of?(String)
|
962
|
+
#File Name
|
963
|
+
@pps_file = open(sFile, "r+")
|
964
|
+
return nil unless @pps_file
|
965
|
+
else
|
966
|
+
return nil
|
967
|
+
end
|
968
|
+
@pps_file.seek(0, IO::SEEK_END)
|
969
|
+
@pps_file.binmode
|
970
|
+
end
|
971
|
+
|
972
|
+
def append (data)
|
973
|
+
return if data.nil?
|
974
|
+
if @pps_file
|
975
|
+
@pps_file << data
|
976
|
+
@pps_file.flush
|
977
|
+
else
|
978
|
+
@data << data
|
979
|
+
end
|
980
|
+
end
|
981
|
+
end
|