/usr/share/octave/packages/io-2.4.5/ods2oct.m is in octave-io 2.4.5-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | ## Copyright (C) 2009-2016 Philip Nienhuis
##
## This program is free software; you can redistribute it and/or modify it under
## the terms of the GNU General Public License as published by the Free Software
## Foundation; either version 3 of the License, or (at your option) any later
## version.
##
## This program is distributed in the hope that it will be useful, but WITHOUT
## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
## details.
##
## You should have received a copy of the GNU General Public License along with
## this program; if not, see <http://www.gnu.org/licenses/>.
## -*- texinfo -*-
## @deftypefn {Function File} [ @var{rawarr}, @var{ods}, @var{rstatus} ] = ods2oct (@var{ods})
## @deftypefnx {Function File} [ @var{rawarr}, @var{ods}, @var{rstatus} ] = ods2oct (@var{ods}, @var{wsh})
## @deftypefnx {Function File} [ @var{rawarr}, @var{ods}, @var{rstatus} ] = ods2oct (@var{ods}, @var{wsh}, @var{range})
## @deftypefnx {Function File} [ @var{rawarr}, @var{ods}, @var{rstatus} ] = ods2oct (@var{ods}, @var{wsh}, @var{range}, @var{options})
##
## Read data contained within cell range @var{range} from worksheet @var{wsh}
## in an OpenOffice_org Calc or Gnumeric spreadsheet file pointed to
## in struct @var{ods}.
##
## @var{ods} is supposed to have been created earlier by odsopen() in the
## same octave session.
##
## @var{wsh} is either numerical or text, in the latter case it is
## case-sensitive.
## Note that in case of a numerical @var{wsh} this number refers to the
## position in the worksheet stack, counted from the left in a Calc
## window. The default is numerical 1, i.e. the leftmost worksheet
## in the ODS or gnumeric file.
##
## @var{range} is expected to be a regular spreadsheet range format,
## "" (empty string, indicating all data in a worksheet), or a
## "Named range" defined in the spreadsheet file. In case of a Named
## range, the worksheet associated with that Named range will be used
## instead of the one specified in @var{wsh}.
## If no range is specified the occupied cell range will have to be
## determined behind the scenes first; this can take some time.
##
## Optional argument @var{options}, a structure, can be used to
## specify various read modes by setting option fields in the struct
## to true (1) or false (0). Currently recognized option fields are:
##
## @table @asis
## @item "formulas_as_text"
## If set to TRUE or 1, spreadsheet formulas (if at all present)
## are read as formula strings rather than the evaluated formula
## result values. This only works for the OTK, UNO and OCT interfaces.
## The default value is 0 (FALSE).
##
## @item 'strip_array'
## Set the value of this field set to TRUE or 1 to strip the returned
## output array @var{rawarr} from empty outer columns and rows. The
## spreadsheet cell rectangle limits from where the data actually
## came will be updated. The default value is FALSE or 0 (no cropping).
##
## @item 'convert_utf'
## If set to 1 or TRUE, ods2oct tries to do a best job of converting
## UTF-8 characters to one-byte characters so that they display
## properly in Octave if that uses a terminal that does not support
## UTF-8 encoding (e.g., Windows 7 and below).
## @end table
##
## If only the first argument @var{ods} is specified, ods2oct will
## try to read all contents from the first = leftmost (or the only)
## worksheet (as if a range of @'' (empty string) was specified).
##
## If only two arguments are specified, ods2oct assumes the second
## argument to be @var{wsh}. In that case ods2oct will try to read
## all data contained in that worksheet.
##
## Return argument @var{rawarr} contains the raw spreadsheet cell data.
## Use parsecell() to separate numeric and text values from @var{rawarr}.
##
## Optional return argument @var{ods} contains the pointer struct. Field
## @var{ods}.limits contains the outermost column and row numbers of the
## actually read cell range.
##
## Optional return argument @var{rstatus} will be set to 1 if the
## requested data have been read successfully, 0 otherwise.
##
## Erroneous data and empty cells turn up empty in @var{rawarr}.
## Date/time values in OpenOffice.org or Gnumeric are returned as numerical
## values with base 1-1-0000 (same as octave). But beware that Excel
## spreadsheets rewritten by OpenOffice.org into .ods format may have
## numerical date cells with epoch (base) 01-01-1900 (same as MS-Excel).
##
## When reading from merged cells, all array elements NOT corresponding
## to the leftmost or upper OpenOffice.org Calc or Gnumeric cell will be
## treated as if the "corresponding" cells are empty.
##
## Examples:
##
## @example
## A = ods2oct (ods1, '2nd_sheet', 'C3:ABS40000');
## (which returns the numeric contents in range C3:ABS40000 in worksheet
## '2nd_sheet' from a spreadsheet file pointed to in pointer struct ods1,
## into numeric array A)
## @end example
##
## @example
## [An, ods2, status] = ods2oct (ods2, 'Third_sheet');
## @end example
##
## @seealso {odsopen, odsclose, parsecell, odsread, odsfinfo, oct2ods, odswrite}
##
## @end deftypefn
## Author: Philip Nienhuis <pr.nienhuis at users.sf.net>
## Created: 2009-12-13
function [ rawarr, ods, rstatus ] = ods2oct (ods, wsh=1, datrange=[], spsh_opts=[])
## Check if ods struct pointer seems valid
if (! isstruct (ods))
error ("File ptr struct expected for arg @ 1");
endif
test1 = ! isfield (ods, "xtype");
test1 = test1 || ! isfield (ods, "workbook");
test1 = test1 || isempty (ods.workbook);
test1 = test1 || isempty (ods.app);
if (test1)
error ("Arg #1 is an invalid ods file struct\n");
endif
## Check worksheet ptr
if (! (ischar (wsh) || isnumeric (wsh)))
error ("Integer (index) or text (wsh name) expected for arg # 2\n");
endif
## Check range
if (! (isempty (datrange) || ischar (datrange)))
error ("Character string (range) expected for arg # 3\n");
elseif (! isempty (datrange))
## Check for range name and convert it to range & optionally sheet
## 1. Check if it matches a range
[datrange, wsh, ods] = chknmrange (ods, datrange, wsh);
endif
## Check & setup options struct
if (nargin < 4 || isempty (spsh_opts))
spsh_opts.formulas_as_text = 0;
spsh_opts.strip_array = 1;
spsh_opts.convert_utf = 0;
## Other options here:
elseif (! isstruct (spsh_opts))
error ("struct expected for OPTIONS argument (# 4)\n");
else
if (! isfield (spsh_opts, "formulas_as_text"))
spsh_opts.formulas_as_text = 0;
endif
if (! isfield (spsh_opts, "strip_array"))
spsh_opts.strip_array = 1;
endif
if (! isfield (spsh_opts, "convert_utf"))
spsh_opts.convert_utf = 0;
endif
## Future options:
endif
## Select the proper interfaces
if (strcmp (ods.xtype, "OTK"))
## Read ods file tru Java & ODF toolkit
switch ods.odfvsn
case "0.7.5"
[rawarr, ods, rstatus] = __OTK_ods2oct__ (ods, wsh, datrange, spsh_opts);
case {"0.8.6", "0.8.7", "0.8.8"}
[rawarr, ods, rstatus] = __OTK_spsh2oct__ (ods, wsh, datrange, spsh_opts);
otherwise
error ("Unsupported odfdom version or invalid ods file pointer.\n");
endswitch
elseif (strcmp (ods.xtype, "JOD"))
## Read ods file tru Java & jOpenDocument. First check for formula support
if ((ods.odfvsn < 4) && spsh_opts.formulas_as_text)
## Not supported in jOpenDucument < 1.3
warning (["ods2oct.m: option 'formulas_as_text' not supported\n", ...
"in jOpenDocument < 1.3; please upgrade. Option ignored.\n"]);
spsh_opts.formulas_as_text = 0;
endif
[rawarr, ods, rstatus] = __JOD_spsh2oct__ (ods, wsh, datrange, spsh_opts);
elseif (strcmp (ods.xtype, "UNO"))
## Read ods file tru Java & UNO
[rawarr, ods, rstatus] = __UNO_spsh2oct__ (ods, wsh, datrange, spsh_opts);
elseif (strcmp (ods.xtype, "OCT"))
if (strcmpi (ods.app, 'ods'))
## Read ods file tru native Octave
[rawarr, ods, rstatus] = __OCT_ods2oct__ (ods, wsh, datrange, spsh_opts);
elseif (strcmpi (ods.app, 'gnumeric'))
## Read gnumeric. Gnumeric does not support formula evaluation nor supports
## cached values. Stripping output is processed below, spsh_opts is ignored
[rawarr, ods, rstatus] = __OCT_gnm2oct__ (ods, wsh, datrange);
endif
## Replace XML escape sequences by regular characters
idx = cellfun (@ischar, rawarr);
rawarr(idx) = strrep (rawarr(idx), "&", "&");
rawarr(idx) = strrep (rawarr(idx), "<", "<");
rawarr(idx) = strrep (rawarr(idx), ">", ">");
rawarr(idx) = strrep (rawarr(idx), "'", "'");
rawarr(idx) = strrep (rawarr(idx), """, '"');
##elseif
## ---- < Other interfaces here >
else
error (sprintf ("ods2oct: unknown OpenOffice.org .ods interface - %s.\n", ods.xtype));
endif
## Convert from UTF-8 and strip characters that are not supported by Octave
## (any chars < 32 or > 255).
## FIXME: Replace with the following when native2unicode is available:
## rawarr = tidyxml (rawarr, @(str) native2unicode (str, "UTF-8"));
if (spsh_opts.convert_utf)
rawarr = tidyxml (rawarr, @utf82unicode);
endif
rstatus = ! isempty (rawarr);
## Optionally strip empty outer rows and columns & keep track of original data location
if (spsh_opts.strip_array && rstatus)
emptr = cellfun ("isempty", rawarr);
if (all (all (emptr)))
rawarr = {};
ods.limits= [];
else
nrows = size (rawarr, 1); ncols = size (rawarr, 2);
irowt = 1;
while (all (emptr(irowt, :))); irowt++; endwhile
irowb = nrows;
while (all (emptr(irowb, :))); irowb--; endwhile
icoll = 1;
while (all (emptr(:, icoll))); icoll++; endwhile
icolr = ncols;
while (all (emptr(:, icolr))); icolr--; endwhile
# Crop outer rows and columns and update limits
rawarr = rawarr(irowt:irowb, icoll:icolr);
ods.limits = ods.limits + [icoll-1, icolr-ncols; irowt-1, irowb-nrows];
endif
endif
endfunction
|