/usr/share/octave/packages/io-2.4.0/xlsopen.m is in octave-io 2.4.0-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 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 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 | ## Copyright (C) 2009-2015 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 2 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 Octave; see the file COPYING. If not, see
## <http://www.gnu.org/licenses/>.
## -*- texinfo -*-
## @deftypefn {Function File} @var{xls} = xlsopen (@var{filename})
## @deftypefnx {Function File} @var{xls} = xlsopen (@var{filename}, @var{readwrite})
## @deftypefnx {Function File} @var{xls} = xlsopen (@var{filename}, @var{readwrite}, @var{reqintf})
## Get a pointer to an Excel spreadsheet in the form of return argument
## (file pointer struct) @var{xls}. After processing the spreadsheet,
## the file pointer must be explicitly closed by calling xlsclose().
##
## Calling xlsopen without specifying a return argument is fairly useless!
##
## xlsopen works with interfaces, which are links to external software.
## For I/O from/to OOXML (Excel 2007 and up), ODS 1.2 and Gnumeric, no
## additional software is required when the OCT interface is used (see below).
## For all other spreadsheet formats, you need one or more of MS-Excel
## (95 - 2013), or a Java JRE plus Apache POI >= 3.5 and/or JExcelAPI
## and/or OpenXLS and/or OpenOffice.org (or clones) installed on your computer
## + proper javaclasspath set. These interfaces are referred to as COM, POI,
## JXL, OXS, and UNO, resp., and are preferred in that order by default
## (depending on their presence). Currently the OCT interface has the lowest
## priority as it is still experimental.
## For OOXML read/write support in principle no additional SW is needed.
## However, the COM, POI and UNO interfaces may provide better OOXML write
## performance and/or more flexibility.
## Excel'95 spreadsheets (BIFF5) can only be read using the COM (Excel-ActiveX),
## JXL (JExcelAPI), and UNO (Open-/LibreOffice) interfaces.
##
## @var{filename} should be a valid .xls or .xlsx Excel file name (including
## extension). But if you use the COM interface you can specify any extension
## that your installed Excel version can read AND write; the same goes for UNO
## (OpenOffice.org). Using the other Java interfaces, only .xls or .xlsx are
## allowed. If @var{filename} does not contain any directory path, the file
## is saved in the current directory. Reading/writing .xlsm and .xlsb files
## may be possible using the COM and UNO interfaces only, but is untested.
##
## If @var{readwrite} is set to 0 (default value) or omitted, the spreadsheet
## file is opened for reading. If @var{readwrite} is set to true or 1, a
## spreadsheet file is opened (or created) for reading & writing.
##
## Optional input argument @var{reqintf} can be used to override the Excel
## interface that otherwise is automatically selected by xlsopen. Currently
## implemented interfaces (in order of preference) are 'COM' (Excel/COM),
## 'POI' (Java/Apache POI), 'JXL' (Java/JExcelAPI), 'OXS' (Java/OpenXLS),
## 'UNO' (Java/OpenOffice.org - EXPERIMENTAL!), or 'OCT' (native Octave).
## In most situations this parameter is unneeded as xlsopen automatically
## selects the most useful interface present.
##
## Beware: Excel invocations may be left running invisibly in case of COM
## errors or forgetting to close the file pointer. Similarly for OpenOffice.org
## which may even prevent Octave from being closed.
##
## Examples:
##
## @example
## xls = xlsopen ('test1.xls');
## (get a pointer for reading from spreadsheet test1.xls)
##
## xls = xlsopen ('test2.xls', 1, 'POI');
## (as above, indicate test2.xls will be written to; in this case using Java
## and the Apache POI interface are requested)
## @end example
##
## @seealso {xlsclose, xlsread, xlswrite, xls2oct, oct2xls, xlsfinfo}
##
## @end deftypefn
## Author: Philip Nienhuis <prnienhuis at users.sf.net>
## Created: 2009-11-29
function [ xls ] = xlsopen (filename, xwrite=0, reqinterface=[])
persistent xlsinterfaces; persistent chkintf; persistent lastintf;
## xlsinterfaces.<intf> = [] (not yet checked), 0 (found to be unsupported) or 1 (OK)
if (isempty (chkintf));
chkintf = 1;
xlsinterfaces = struct ('COM', [], 'POI', [], 'JXL', [], 'OXS', [], 'UNO', [], "OCT", 1);
endif
if (isempty (lastintf))
lastintf = "---";
endif
xlsintf_cnt = 1;
xlssupport = 0;
if (nargout < 1)
error ("xlsopen.m: no return argument specified!\n usage: XLS = xlsopen (Xlfile [, Rw] [, reqintf])\n");
endif
if (! (islogical (xwrite) || isnumeric (xwrite)))
error ("xlsopen.m: numerical or logical value expected for arg ## 2 (readwrite)\n")
endif
if (! isempty (reqinterface))
intfmsg = "requested";
if (! (ischar (reqinterface) || iscell (reqinterface)))
error ("Arg ## 3 (interface) not recognized - character value required\n");
endif
## Turn arg3 into cell array if needed
if (! iscell (reqinterface))
reqinterface = {reqinterface};
endif
## Check if previously used interface matches a requested interface
if (isempty (regexpi (reqinterface, lastintf, 'once'){1}) ||
! xlsinterfaces.(upper (reqinterface{1})))
## New interface requested
xlsinterfaces.COM = 0; xlsinterfaces.POI = 0; xlsinterfaces.JXL = 0;
xlsinterfaces.OXS = 0; xlsinterfaces.UNO = 0; xlsinterfaces.OCT = 0;
for ii=1:numel (reqinterface)
reqintf = toupper (reqinterface {ii});
## Try to invoke requested interface(s) for this call. Check if it
## is supported anyway by emptying the corresponding var.
if (strcmpi (reqintf, 'COM'))
xlsinterfaces.COM = [];
elseif (strcmpi (reqintf, 'POI'))
xlsinterfaces.POI = [];
elseif (strcmpi (reqintf, 'JXL'))
xlsinterfaces.JXL = [];
elseif (strcmpi (reqintf, 'OXS'))
xlsinterfaces.OXS = [];
elseif (strcmpi (reqintf, 'UNO'))
xlsinterfaces.UNO = [];
elseif (strcmpi (reqintf, 'OCT'))
xlsinterfaces.OCT = [];
else
error (sprintf (["xlsopen.m: unknown .xls interface \"%s\" requested.\n"
"Only COM, POI, JXL, OXS, UNO, or OCT) supported\n"], reqinterface{}));
endif
endfor
printf ("Checking requested interface(s):\n");
xlsinterfaces = getxlsinterfaces (xlsinterfaces);
## Well, is/are the requested interface(s) supported on the system?
xlsintf_cnt = 0;
for ii=1:numel (reqinterface)
if (! xlsinterfaces.(toupper (reqinterface{ii})))
## No it aint
printf ("%s is not supported.\n", upper (reqinterface{ii}));
else
++xlsintf_cnt;
endif
endfor
## Reset interface check indicator if no requested support found
if (! xlsintf_cnt)
chkintf = [];
xls = [];
return
endif
endif
else
intfmsg = "available";
endif
## Check if Excel file exists. First check for (supported) file name suffix:
ftype = 0;
has_suffix = 1;
[sfxpos, ~, ~, ext] = regexpi (filename, '(\.xlsx?|\.gnumeric|\.ods|\.csv)');
if (! isempty (sfxpos))
ext = lower (ext{end});
## .xls or .xls[x,m,b] or .gnumeric is there, but at the right(most) position?
if (sfxpos(end) <= length (filename) - length (ext))
## Apparently not, or it is an unrecognized extension
## If xwrite = 0, check file suffix, else add .xls
has_suffix = 0;
else
switch ext
case ".xls" ## Regular (binary) BIFF
ftype = 1;
case {".xlsx", ".xlsm", ".xlsb"} ## Zipped XML / OOXML. Catches xlsx, xlsb, xlsm
ftype = 2;
case ".ods" ## ODS 1.2 (Excel 2007+ & OOo/LO can read ODS)
ftype = 3;
case ".gnumeric" ## Zipped XML / gnumeric
ftype = 5;
case ".csv" ## csv. Detected for xlsread afficionados
ftype = 6;
otherwise
warning ("xlsopen: file type ('%s' extension) not supported", ext);
endswitch
endif
else
has_suffix = 0;
endif
## Var readwrite is really used to avoid creating files when wanting to read,
## or not finding not-yet-existing files when wanting to write a new one.
## Adapt file open mode for readwrite argument
if (xwrite)
fmode = 'r+b';
if (! has_suffix)
## Provisionally add .xls suffix to filename (most used format)
filename = [filename ".xls"];
ext = ".xls";
ftype = 1
endif
else
fmode = 'rb';
if (! has_suffix)
## Try to find find existing file name. We ignore .gnumeric
filnm = dir ([filename ".xls*"]);
if (! isempty (filnm))
## Simply choose the first one
if (isstruct (filnm))
filename = filnm(1).name;
else
filename = filnm;
endif
endif
endif
endif
fid = fopen (filename, fmode);
if (fid < 0) ## File doesn't exist...
if (! xwrite) ## ...which obviously is fatal for reading...
## FIXME process open apps (Excel, LibreOffice, etc) before hard crash
error ( sprintf ("xlsopen.m: file %s not found\n", filename));
else ## ...but for writing, we need more info:
fid = fopen (filename, 'rb'); ## Check if it exists at all...
if (fid < 0) ## File didn't exist yet. Simply create it
xwrite = 3;
else ## File exists, but isn't writable => Error
fclose (fid); ## Do not forget to close the handle neatly
error (sprintf ("xlsopen.m: write mode requested but file %s is not writable\n", filename))
endif
endif
else
## Close file anyway to avoid COM or Java errors
fclose (fid);
endif
## Check for the various Excel interfaces. No problem if they've already
## been checked, getxlsinterfaces (far below) just returns immediately then.
xlsinterfaces = getxlsinterfaces (xlsinterfaces);
## If no external interface was detected and no suffix was given, use .xlsx
if (! has_suffix && ! (xlsinterfaces.COM + xlsinterfaces.POI + ...
xlsinterfaces.JXL + xlsinterfaces.OXS + ...
xlsinterfaces.UNO))
## Just add 'x' - .xls was already added higher up
filename = [filename "x"];
ftype = 2;
endif
## Initialize file ptr struct
xls = struct ("xtype", 'NONE',
"app", [],
"filename", [],
"workbook", [],
"changed", 0,
"limits", []);
## Keep track of which interface is selected
xlssupport = 0;
## Interface preference order is defined below: currently COM -> POI -> JXL -> OXS -> UNO -> OCT
## ftype (file type) is conveyed depending on interface capabilities
if ((! xlssupport) && xlsinterfaces.COM && (ftype != 5))
## Excel functioning has been tested above & file exists, so we just invoke it.
[ xls, xlssupport, lastintf ] = __COM_spsh_open__ (xls, xwrite, filename, xlssupport);
endif
if ((! xlssupport) && xlsinterfaces.POI && (ftype <= 2))
[ xls, xlssupport, lastintf ] = __POI_spsh_open__ (xls, xwrite, filename, xlssupport, ftype, xlsinterfaces);
endif
if ((! xlssupport) && xlsinterfaces.JXL && ftype == 1)
[ xls, xlssupport, lastintf ] = __JXL_spsh_open__ (xls, xwrite, filename, xlssupport, ftype);
endif
if ((! xlssupport) && xlsinterfaces.OXS && ftype == 1)
[ xls, xlssupport, lastintf ] = __OXS_spsh_open__ (xls, xwrite, filename, xlssupport, ftype);
endif
if ((! xlssupport) && xlsinterfaces.UNO && (ftype != 5))
## Warn for LO / OOo stubbornness
if (ftype == 0 || ftype == 5 || ftype == 6)
warning ("UNO interface will write ODS format for unsupported file extensions\n")
endif
[ xls, xlssupport, lastintf ] = __UNO_spsh_open__ (xls, xwrite, filename, xlssupport);
endif
if ((! xlssupport) && xlsinterfaces.OCT && ...
(ftype == 2 || ftype == 3 || ftype == 5))
[ xls, xlssupport, lastintf ] = __OCT_spsh_open__ (xls, xwrite, filename, xlssupport, ftype);
endif
## if
## ---- other interfaces
## endif
## Rounding up. If none of the xlsinterfaces is supported we're out of luck.
if (! xlssupport)
if (isempty (reqinterface))
## If no suitable interface was detected (COM or UNO can read .csv), handle
## .csv in xlsread (as that's where Matlab n00bs would expect .csv support)
if (ftype != 6)
## This message is appended after message from getxlsinterfaces()
printf ("None.\n");
warning ("xlsopen.m: no'%s' spreadsheet I/O support with %s interfaces.\n", ...
ext, intfmsg);
endif
else
## No match between file type & interface found
warning ("xlsopen.m: file type not supported by %s %s %s %s %s %s\n", reqinterface{:});
endif
xls = [];
## Reset found interfaces for re-testing in the next call. Add interfaces if needed.
chkintf = [];
else
## From here on xwrite is tracked via xls.changed in the various lower
## level r/w routines
xls.changed = xwrite;
## xls.changed = 0 (existing/only read from), 1 (existing/data added), 2 (new,
## data added) or 3 (pristine, no data added).
## Until something was written to existing files we keep status "unchanged".
if (xls.changed == 1)
xls.changed = 0;
endif
endif
endfunction
|