Updated gui for user facility settings (#1327)
[openemr.git] / vendor / phpoffice / phpexcel / Classes / PHPExcel / Writer / Excel5 / BIFFwriter.php
blob86201134d0fe068d5e0906a644199d8f8632cc9e
1 <?php
2 /**
3 * PHPExcel
5 * Copyright (c) 2006 - 2014 PHPExcel
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 * @category PHPExcel
22 * @package PHPExcel_Writer_Excel5
23 * @copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)
24 * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
25 * @version ##VERSION##, ##DATE##
28 // Original file header of PEAR::Spreadsheet_Excel_Writer_BIFFwriter (used as the base for this class):
29 // -----------------------------------------------------------------------------------------
30 // * Module written/ported by Xavier Noguer <xnoguer@rezebra.com>
31 // *
32 // * The majority of this is _NOT_ my code. I simply ported it from the
33 // * PERL Spreadsheet::WriteExcel module.
34 // *
35 // * The author of the Spreadsheet::WriteExcel module is John McNamara
36 // * <jmcnamara@cpan.org>
37 // *
38 // * I _DO_ maintain this code, and John McNamara has nothing to do with the
39 // * porting of this code to PHP. Any questions directly related to this
40 // * class library should be directed to me.
41 // *
42 // * License Information:
43 // *
44 // * Spreadsheet_Excel_Writer: A library for generating Excel Spreadsheets
45 // * Copyright (c) 2002-2003 Xavier Noguer xnoguer@rezebra.com
46 // *
47 // * This library is free software; you can redistribute it and/or
48 // * modify it under the terms of the GNU Lesser General Public
49 // * License as published by the Free Software Foundation; either
50 // * version 2.1 of the License, or (at your option) any later version.
51 // *
52 // * This library is distributed in the hope that it will be useful,
53 // * but WITHOUT ANY WARRANTY; without even the implied warranty of
54 // * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
55 // * Lesser General Public License for more details.
56 // *
57 // * You should have received a copy of the GNU Lesser General Public
58 // * License along with this library; if not, write to the Free Software
59 // * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
60 // */
63 /**
64 * PHPExcel_Writer_Excel5_BIFFwriter
66 * @category PHPExcel
67 * @package PHPExcel_Writer_Excel5
68 * @copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)
70 class PHPExcel_Writer_Excel5_BIFFwriter
72 /**
73 * The byte order of this architecture. 0 => little endian, 1 => big endian
74 * @var integer
76 private static $_byte_order;
78 /**
79 * The string containing the data of the BIFF stream
80 * @var string
82 public $_data;
84 /**
85 * The size of the data in bytes. Should be the same as strlen($this->_data)
86 * @var integer
88 public $_datasize;
90 /**
91 * The maximum length for a BIFF record (excluding record header and length field). See _addContinue()
92 * @var integer
93 * @see _addContinue()
95 public $_limit = 8224;
97 /**
98 * Constructor
100 public function __construct()
102 $this->_data = '';
103 $this->_datasize = 0;
104 // $this->_limit = 8224;
108 * Determine the byte order and store it as class data to avoid
109 * recalculating it for each call to new().
111 * @return int
113 public static function getByteOrder()
115 if (!isset(self::$_byte_order)) {
116 // Check if "pack" gives the required IEEE 64bit float
117 $teststr = pack("d", 1.2345);
118 $number = pack("C8", 0x8D, 0x97, 0x6E, 0x12, 0x83, 0xC0, 0xF3, 0x3F);
119 if ($number == $teststr) {
120 $byte_order = 0; // Little Endian
121 } elseif ($number == strrev($teststr)){
122 $byte_order = 1; // Big Endian
123 } else {
124 // Give up. I'll fix this in a later version.
125 throw new PHPExcel_Writer_Exception("Required floating point format not supported on this platform.");
127 self::$_byte_order = $byte_order;
130 return self::$_byte_order;
134 * General storage function
136 * @param string $data binary data to append
137 * @access private
139 function _append($data)
141 if (strlen($data) - 4 > $this->_limit) {
142 $data = $this->_addContinue($data);
144 $this->_data .= $data;
145 $this->_datasize += strlen($data);
149 * General storage function like _append, but returns string instead of modifying $this->_data
151 * @param string $data binary data to write
152 * @return string
154 public function writeData($data)
156 if (strlen($data) - 4 > $this->_limit) {
157 $data = $this->_addContinue($data);
159 $this->_datasize += strlen($data);
161 return $data;
165 * Writes Excel BOF record to indicate the beginning of a stream or
166 * sub-stream in the BIFF file.
168 * @param integer $type Type of BIFF file to write: 0x0005 Workbook,
169 * 0x0010 Worksheet.
170 * @access private
172 function _storeBof($type)
174 $record = 0x0809; // Record identifier (BIFF5-BIFF8)
175 $length = 0x0010;
177 // by inspection of real files, MS Office Excel 2007 writes the following
178 $unknown = pack("VV", 0x000100D1, 0x00000406);
180 $build = 0x0DBB; // Excel 97
181 $year = 0x07CC; // Excel 97
183 $version = 0x0600; // BIFF8
185 $header = pack("vv", $record, $length);
186 $data = pack("vvvv", $version, $type, $build, $year);
187 $this->_append($header . $data . $unknown);
191 * Writes Excel EOF record to indicate the end of a BIFF stream.
193 * @access private
195 function _storeEof()
197 $record = 0x000A; // Record identifier
198 $length = 0x0000; // Number of bytes to follow
200 $header = pack("vv", $record, $length);
201 $this->_append($header);
205 * Writes Excel EOF record to indicate the end of a BIFF stream.
207 * @access private
209 public function writeEof()
211 $record = 0x000A; // Record identifier
212 $length = 0x0000; // Number of bytes to follow
213 $header = pack("vv", $record, $length);
214 return $this->writeData($header);
218 * Excel limits the size of BIFF records. In Excel 5 the limit is 2084 bytes. In
219 * Excel 97 the limit is 8228 bytes. Records that are longer than these limits
220 * must be split up into CONTINUE blocks.
222 * This function takes a long BIFF record and inserts CONTINUE records as
223 * necessary.
225 * @param string $data The original binary data to be written
226 * @return string A very convenient string of continue blocks
227 * @access private
229 function _addContinue($data)
231 $limit = $this->_limit;
232 $record = 0x003C; // Record identifier
234 // The first 2080/8224 bytes remain intact. However, we have to change
235 // the length field of the record.
236 $tmp = substr($data, 0, 2) . pack("v", $limit) . substr($data, 4, $limit);
238 $header = pack("vv", $record, $limit); // Headers for continue records
240 // Retrieve chunks of 2080/8224 bytes +4 for the header.
241 $data_length = strlen($data);
242 for ($i = $limit + 4; $i < ($data_length - $limit); $i += $limit) {
243 $tmp .= $header;
244 $tmp .= substr($data, $i, $limit);
247 // Retrieve the last chunk of data
248 $header = pack("vv", $record, strlen($data) - $i);
249 $tmp .= $header;
250 $tmp .= substr($data, $i, strlen($data) - $i);
252 return $tmp;