/usr/share/octave/packages/io-2.4.5/oct2xls.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 | ## 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{xls}, @var{rstatus} ] = oct2xls (@var{arr}, @var{xls})
## @deftypefnx {Function File} [ @var{xls}, @var{rstatus} ] = oct2xls (@var{arr}, @var{xls}, @var{wsh})
## @deftypefnx {Function File} [ @var{xls}, @var{rstatus} ] = oct2xls (@var{arr}, @var{xls}, @var{wsh}, @var{range})
## @deftypefnx {Function File} [ @var{xls}, @var{rstatus} ] = oct2xls (@var{arr}, @var{xls}, @var{wsh}, @var{range}, @var{options})
##
## Add data in 1D/2D CELL array @var{arr} into a cell range @var{range}
## in worksheet @var{wsh} in an Excel (or gnumeric) spreadsheet file
## pointed to in structure @var{xls}.
## Return argument @var{xls} equals supplied argument @var{xls} and is
## updated by oct2xls.
##
## A subsequent call to xlsclose is needed to write the updated spreadsheet
## to disk (and -if needed- close the Excel or Java invocation).
##
## @var{arr} can be any 1D or 2D array containing numerical, logical and/or
## character data (cellstr) except complex. Mixed type arrays can
## only be cell arrays.
##
## @var{xls} must be a valid pointer struct created earlier by xlsopen.
##
## @var{wsh} can be a number or string (max. 31 chars).
## In case of a yet non-existing Excel file, the first worksheet will be
## used & named according to @var{wsh} - extra empty worksheets that Excel
## creates by default are deleted.
## In case of existing files, some checks are made for existing worksheet
## names or numbers, or whether @var{wsh} refers to an existing sheet with
## a type other than worksheet (e.g., chart).
## When new worksheets are to be added to the Excel file, they are
## inserted to the right of all existing worksheets. The pointer to the
## "active" sheet (shown when Excel opens the file) remains untouched.
##
## If @var{range} is omitted or just the top left cell of the range is
## specified, the actual range to be used is determined by the size of
## @var{arr}. If nothing is specified for @var{range} the top left cell
## is assumed to be 'A1'. If defined in the spreadsheet file, a "Named
## range" can also be specified. In that case @var{wsh} will be ignored
## and the worksheet associated with the specified Named range will be
## used.
##
## Data are added to the worksheet, ignoring other data already present;
## existing data in the range to be used will be overwritten.
##
## If @var{range} contains merged cells, only the elements of @var{arr}
## corresponding to the top or left Excel cells of those merged cells
## will be written, other array cells corresponding to that cell will be
## ignored.
##
## Optional argument @var{options}, a structure, can be used to specify
## various write modes.
## @table @asis
## @item "formulas_as_text"
## If set to 1 or TRUE formula strings ( i.e., text strings (assumed to
## start with "=" and end in a ")" ) are to be written as litteral
## text strings rather than as spreadsheet formulas (the latter is the
## default).
##
## @item 'convert_utf'
## If set to 1 or TRUE, oct2xls converts one-byte characters outside the
## range [32:127] to UTF-8 so that they are properly entered as UTF-8
## encoded text in spreadsheets. The default value is 0.
## This setting has no effect for the COM interface as that does the
## encoding automatically using libraries outside Octave.
## @end table
##
## Beware that -if invoked- Excel invocations may be left running silently
## in case of COM errors. Invoke xlsclose with proper pointer struct to
## close them.
## When using Java, note that large data array sizes elements may exhaust
## the Java shared memory space for the default java memory settings.
## For larger arrays, appropriate memory settings are needed in the file
## java.opts; then the maximum array size for the Java-based spreadsheet
## options may be in the order of 10^6 elements. In caso of UNO this
## limit is not applicable and spreadsheets may be much larger.
##
## Examples:
##
## @example
## [xlso, status] = oct2xls ('arr', xlsi, 'Third_sheet', 'AA31:AB278');
## @end example
##
## @seealso {xls2oct, xlsopen, xlsclose, xlsread, xlswrite, xlsfinfo}
##
## @end deftypefn
## Author: Philip Nienhuis <prnienhuis at users sf net>
## Created: 2009-12-01
function [ xls, rstatus ] = oct2xls (obj, xls, wsh=1, crange="", spsh_opts=[])
if (nargin < 2) error ("oct2xls needs a minimum of 2 arguments."); endif
## Validate input array, make sure it is a cell array
if (isempty (obj))
warning ("oct2xls: request to write empty matrix - ignored.");
rstatus = 1;
return;
elseif (isnumeric (obj))
obj = num2cell (obj);
elseif (ischar (obj))
obj = {obj};
printf ("(oct2xls: input character array converted to 1x1 cell)\n");
elseif (! iscell (obj))
error ("oct2xls: input array neither cell nor numeric array\n");
endif
if (ndims (obj) > 2)
error ("oct2xls: only 2-dimensional arrays can be written to spreadsheet\n");
endif
## Cast all numerical values to double as spreadsheets only have double/boolean/text type
idx = cellfun (@isnumeric, obj, "UniformOutput", true);
obj(idx) = cellfun (@double, obj(idx), "UniformOutput", false);
## Check xls file pointer struct
test1 = ! isfield (xls, "xtype");
test1 = test1 || ! isfield (xls, "workbook");
test1 = test1 || isempty (xls.workbook);
test1 = test1 || isempty (xls.app);
test1 = test1 || ! ischar (xls.xtype);
if (test1)
error ("oct2xls: invalid xls file pointer struct\n");
endif
## Check worksheet ptr
if (! (ischar (wsh) || isnumeric (wsh)))
error ("Integer (index) or text (wsh name) expected for arg # 3\n");
endif
## Check range
if (! isempty (crange) && ! ischar (crange))
error ("oct2xls: character string expected for arg # 4 (range)\n");
elseif (isempty (crange))
crange = "";
elseif (! isempty (crange))
## Check for range name and convert it to range & optionally sheet
## 1. Check if it matches a range
[crange, wsh, xls] = chknmrange (xls, crange, wsh);
endif
## Various options
if (isempty (spsh_opts))
spsh_opts.formulas_as_text = 0;
spsh_opts.convert_utf = 0;
## other options to be implemented here
elseif (isstruct (spsh_opts))
if (! isfield (spsh_opts, "formulas_as_text"))
spsh_opts.formulas_as_text = 0;
endif
if (! isfield (spsh_opts, "convert_utf"))
spsh_opts.convert_utf = 0;
endif
## other options to be implemented here
else
error ("oct2xls: structure expected for arg # 5\n");
endif
if (nargout < 1)
printf ("oct2xls: warning: no output spreadsheet file pointer specified.\n");
endif
## Convert to UTF-8
## FIXME: Replace with the following when unicode2native is available:
## obj = tidyxml (obj, @(str) unicode2native (str, "UTF-8"));
if (! strcmp (xls.xtype, "COM") && (spsh_opts.convert_utf))
obj = tidyxml (obj, @unicode2utf8);
endif
## Select interface to be used
if (strcmpi (xls.xtype, "COM"))
## ActiveX / COM
[xls, rstatus] = __COM_oct2spsh__ (obj, xls, wsh, crange, spsh_opts);
elseif (strcmpi (xls.xtype, "POI"))
## Invoke Java and Apache POI
[xls, rstatus] = __POI_oct2spsh__ (obj, xls, wsh, crange, spsh_opts);
elseif (strcmpi (xls.xtype, "JXL"))
## Invoke Java and JExcelAPI
[xls, rstatus] = __JXL_oct2spsh__ (obj, xls, wsh, crange, spsh_opts);
elseif (strcmpi (xls.xtype, "OXS"))
## Invoke Java and OpenXLS
[xls, rstatus] = __OXS_oct2spsh__ (obj, xls, wsh, crange, spsh_opts);
elseif (strcmpi (xls.xtype, "UNO"))
## Invoke Java and UNO bridge (OpenOffice.org)
[xls, rstatus] = __UNO_oct2spsh__ (obj, xls, wsh, crange, spsh_opts);
elseif (strcmpi (xls.xtype, "OCT"))
## Replace illegal XML characters by XML escape sequences
idx = cellfun (@ischar, obj);
obj(idx) = strrep (obj(idx), "&", "&" );
obj(idx) = strrep (obj(idx), "<", "<" );
obj(idx) = strrep (obj(idx), ">", ">" );
obj(idx) = strrep (obj(idx), "'", "'");
obj(idx) = strrep (obj(idx), '"', """ );
## Invoke native Octave code (only ods/xlsx/gnumeric)
[xls, rstatus] = __OCT_oct2spsh__ (obj, xls, wsh, crange, spsh_opts);
##elseif (strcmpi (xls.xtype, "<whatever>"))
##<Other Excel interfaces>
else
error (sprintf ("oct2xls: unknown Excel .xls interface - %s.\n", xls.xtype));
endif
endfunction
|