This file is indexed.

/usr/share/octave/packages/3.2/io-1.0.14/xlsopen.m is in octave-io 1.0.14-2.

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
337
338
339
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
## Copyright (C) 2009,2010 Philip Nienhuis <prnienhuis at users.sf.net>
## 
## 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!
##
## To make this function work at all, you need MS-Excel (95 - 2003), and/or
## the Java package > 1.2.6 plus either Apache POI > 3.5 or JExcelAPI
## installed on your computer + proper javaclasspath set. These interfaces
## are referred to as COM, POI and JXL, resp., and are preferred in that
## order by default (depending on their presence).
## For OOXML support, in addition to Apache POI support you also need the
## following jars in your javaclasspath: poi-ooxml-schemas-3.5.jar,
## xbean.jar and dom4j-1.6.1.jar (or later versions).
##
## @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, using the 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.
##
## If @var{readwrite} is set to 0 (default value) or omitted, the Excel file
## is opened for reading. If @var{readwrite} is set to True or 1, an Excel
## 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) or 'JXL' (Java / JExcelAPI).
##
## Beware: Excel invocations may be left running invisibly in case of COM errors
## or forgetting to close the file pointer.
##
## 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
## Created: 2009-11-29
## Updates:
## 2010-01-03 Added OOXML support
## 2010-01-10 Changed (java) interface preference order to COM->POI->JXL
## 2010-01-16 Removed echoeing debug info in POI stanza
## 2010-03-01 Removed javaclasspath check for rt.jar
## 2010-03-14 Fixed check on xwrite flag lines 204+, if xlsopen fails xls ptr
##            should be []
## 2010-08-25 Improved help text
## 2010-09-27 Improved POI help message for unrecognized .xls format to hint for BIFF5/JXL
## 2010-10-20 Improved code for tracking changes to new/existing files
##     "      Lots of code cleanup, improved error checking and catching
##     "      Implemented fallback to JXL if POI can't read a file.
## 2010-10-30 More fine-grained file existence/writable checks
## 2010-11-01 Added <COM>.Application.DisplayAlerts=0 in COM section to avoid Excel pop-ups
## 2010-11-05 Option for multiple requested interface types (cell array)
##     "      Bug fix: JXL fallback from POI for BIFF5 is only useful for reading
## 2010-11-05 Slight change to reporting to screen
## 2010-11-08 Tested with POI 3.7 (OK)
## 2010-11-10 Texinfo header updated
## 2010-12-01 Small bugfix - reset xlssupport in l. 102
## 2010-12-06 Textual changes to info header 
##
## 2011-02-15 Latest subfunction update

function [ xls ] = xlsopen (filename, xwrite=0, reqinterface=[])

	persistent xlsinterfaces; persistent chkintf;
	# xlsinterfaces.<intf> = [] (not yet checked), 0 (found to be unsupported) or 1 (OK)
	if (isempty (chkintf))
		xlsinterfaces = struct ( "COM", [], "POI", [], "JXL", [] );
		chkintf = 1;
	endif
	xlssupport = 0;

	if (nargout < 1)
		usage ("XLS = xlsopen (Xlfile [, Rw] [, reqintf]). But no return argument specified!"); 
	endif
	if (~(islogical (xwrite) || isnumeric (xwrite)))
		usage ("Numerical or logical value expected for arg # 2")
	endif
	if (~isempty (reqinterface))
		if ~(ischar (reqinterface) || iscell (reqinterface)), usage ("Arg # 3 not recognized"); endif
		# Turn arg3 into cell array if needed
		if (~iscell (reqinterface)), reqinterface = {reqinterface}; endif
		xlsinterfaces.COM = 0; xlsinterfaces.POI = 0; xlsinterfaces.JXL = 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     (strcmp (reqintf, 'COM'))
				xlsinterfaces.COM = [];
			elseif (strcmp (reqintf, 'POI'))
				xlsinterfaces.POI = [];
			elseif (strcmp (reqintf, 'JXL'))
				xlsinterfaces.JXL = [];
			else 
				usage (sprintf ("Unknown .xls interface \"%s\" requested. Only COM, POI or JXL supported\n", reqinterface{}));
			endif
		endfor
		printf ("Checking interface(s):\n");
		xlsinterfaces = getxlsinterfaces (xlsinterfaces);
		# Well, is/are the requested interface(s) supported on the system?
		# FIXME check for multiple interfaces
		for ii=1:numel (reqinterface)
			if (~xlsinterfaces.(toupper (reqinterface{ii})))
				# No it aint
				error ("%s is not supported!", reqinterface{ii});
			endif
		endfor
	endif
	
	# Var xwrite is really used to avoid creating files when wanting to read, or
	# not finding not-yet-existing files when wanting to write.
	
	# Check if Excel file exists. Adapt file open mode for readwrite argument
	if (xwrite), fmode = 'r+b'; else fmode = 'rb'; endif
	fid = fopen (filename, fmode);
	if (fid < 0)				# File doesn't exist...
		if (~xwrite)			# ...which obviously is fatal for reading...
			error ( sprintf ("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
				printf ("Creating file %s\n", filename);
				xwrite = 3;
			else				# File exists, but is not writable => Error
				fclose (fid);	# Do not forget to close the handle neatly
				error (sprintf ("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);

# Supported interfaces determined; Excel file type check moved to seperate interfaces.
	chk1 = strcmp (tolower (filename(end-3:end)), '.xls');
	chk2 = strcmp (tolower (filename(end-4:end-1)), '.xls');
	
	# 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
	if (xlsinterfaces.COM && ~xlssupport)
		# Excel functioning has been tested above & file exists, so we just invoke it
		app = actxserver ("Excel.Application");
		try		# Because Excel itself can still crash on file formats etc.
			app.Application.DisplayAlerts = 0;
			if (xwrite < 2)
				# Open workbook
				wb = app.Workbooks.Open (canonicalize_file_name (filename));
			elseif (xwrite > 2)
				# Create a new workbook
				wb = app.Workbooks.Add ();
				### Uncommenting the below statement can be useful in multi-user environments.
				### Be sure to uncomment correspondig stanza in xlsclose to avoid zombie Excels
				# wb.SaveAs (canonicalize_file_name (filename))
			endif
			xls.app = app;
			xls.xtype = 'COM';
			xls.workbook = wb;
			xls.filename = filename;
			xlssupport += 1;
		catch
			warning ( sprintf ("ActiveX error trying to open or create file %s\n", filename));
			app.Application.DisplayAlerts = 1;
			app.Quit ();
			delete (app);
		end_try_catch
	endif
	
	if (xlsinterfaces.POI && ~xlssupport)
		if ~(chk1 || chk2)
			error ("Unsupported file format for xls2oct / Apache POI.")
		endif
		# Get handle to workbook
		try
			if (xwrite > 2)
				if (chk1)
					wb = java_new ('org.apache.poi.hssf.usermodel.HSSFWorkbook');
				elseif (chk2)
					wb = java_new ('org.apache.poi.xssf.usermodel.XSSFWorkbook');
				else
					# Nothing; we let the user encounter the full java error text
				endif
				xls.app = 'new_POI';
			else
				xlsin = java_new ('java.io.FileInputStream', filename);
				wb = java_invoke ('org.apache.poi.ss.usermodel.WorkbookFactory', 'create', xlsin);
				xls.app = xlsin;
			endif
			xls.xtype = 'POI';
			xls.workbook = wb;
			xls.filename = filename;
			xlssupport += 2;
		catch
			clear xlsin;
			if (xlsinterfaces.JXL)
				printf ('Couldn''t open file %s using POI; trying Excel''95 format with JXL...\n', filename);
			endif
		end_try_catch
	endif
		
	if (xlsinterfaces.JXL && ~xlssupport)
		if (~chk1)
			error ("Currently xls2oct / JXL can only read reliably from .xls files")
		endif
		try
			xlsin = java_new ('java.io.File', filename);
			if (xwrite > 2)
				# Get handle to new xls-file
				wb = java_invoke ('jxl.Workbook', 'createWorkbook', xlsin);
			else
				# Open existing file
				wb = java_invoke ('jxl.Workbook', 'getWorkbook', xlsin);
			endif
			xls.xtype = 'JXL';
			xls.app = xlsin;
			xls.workbook = wb;
			xls.filename = filename;
			xlssupport += 4;
		catch
			clear xlsin;
			if (xlsinterfaces.POI)
				printf ('... No luck with JXL, unsupported file format.\n', filename);
			endif
		end_try_catch
	endif

	# if 
	#	---- other interfaces
	# endif

	if (~xlssupport)
		if (isempty (reqinterface))
			warning ("No support for Excel .xls I/O"); 
		else
			warning ("File type not supported by %s %s %s %s", reqinterface{:});
		endif
		xls = [];
	else
		# From here on xwrite is tracked via xls.changed in the various lower
		# level r/w routines and it is only used to determine if an informative
		# message is to be given when saving a newly created xls file.
		xls.changed = xwrite;

		# Until something was written to existing files we keep status "unchanged".
		# xls.changed = 0 (existing/only read from), 1 (existing/data added), 2 (new,
		# data added) or 3 (pristine, no data added).
		if (xls.changed == 1) xls.changed = 0; endif
	endif
	
# Rounding up. If none of the xlsinterfaces is supported we're out of luck.
	
	if (~isempty (reqinterface))
		# Reset found interfaces for re-testing in the next call. Add interfaces if needed.
		chkintf = [];
	endif
	
endfunction


## Copyright (C) 2009,2010 Philip Nienhuis <prnienhuis at users.sf.net>
## 
## 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{xlsinterfaces} = getxlsinterfaces (@var{xlsinterfaces})
## Get supported Excel .xls file read/write interfaces from the system.
## Each interface for which the corresponding field is set to empty
## will be checked. So by manipulating the fields of input argument
## @var{xlsinterfaces} it is possible to specify which
## interface(s) should be checked.
##
## Currently implemented interfaces comprise:
## - ActiveX / COM (native Excel in the background)
## - Java & Apache POI
## - Java & JExcelAPI
##
## Examples:
##
## @example
##   xlsinterfaces = getxlsinterfaces (xlsinterfaces);
## @end example

## Author: Philip Nienhuis
## Created: 2009-11-29
## Last updates: 
## 2009-12-27 Make sure proper dimensions are checked in parsed javaclasspath
## 2010-09-11 Rearranged code and clarified messages about missing classes
## 2010-09-27 More code cleanup
## 2010-10-20 Added check for minimum Java version (should be >= 6 / 1.6)
## 2010-11-05 Slight change to reporting to screen
## 2011-02-15 Adapted to javaclasspath calling style of java-1.2.8 pkg

function [xlsinterfaces] = getxlsinterfaces (xlsinterfaces)

	persistent tmp1 = []; persistent jcp;	# Java class path

	if (isempty (xlsinterfaces.COM) && isempty (xlsinterfaces.POI) && isempty (xlsinterfaces.JXL))
		printf ("Looking for supported interfaces:\n");
	endif

	# Check if MS-Excel COM ActiveX server runs
	if (isempty (xlsinterfaces.COM))
		printf ("Excel/COM... ");
		xlsinterfaces.COM = 0;
		try
			app = actxserver ("Excel.application");
			# If we get here, the call succeeded & COM works.
			xlsinterfaces.COM = 1;
			# Close Excel. Yep this is inefficient when we need only one r/w action,
			# but it quickly pays off when we need to do more with the same file
			# (+, MS-Excel code is in OS cache anyway after this call so no big deal)
			app.Quit();
			delete(app);
			printf ("OK.\n");
		catch
			# COM non-existent
			printf ("not working.\n");
		end_try_catch
	endif

	if (isempty (tmp1))
		# Check Java support. First try javaclasspath
		try
			jcp = javaclasspath ('-all');					# For java pkg > 1.2.7
			if (isempty (jcp)), jcp = javaclasspath; endif	# For java pkg < 1.2.8
			# If we get here, at least Java works. Now check for proper version (>= 1.6)
			jver = char (java_invoke ('java.lang.System', 'getProperty', 'java.version'));
			cjver = strsplit (jver, '.');
			if (sscanf (cjver{2}, '%d') < 6)
				warning ("Java version too old - you need at least Java 6 (v. 1.6.x.x)\n");
				return
			endif
			# Now check for proper entries in class path. Under *nix the classpath
			# must first be split up
			if (isunix) jcp = strsplit (char (jcp), ":"); endif
			tmp1 = 1;
		catch
			# No Java support found
			xlsinterfaces.POI = 0;
			xlsinterfaces.JXL = 0;
			if ~(isempty (xlsinterfaces.POI) && isempty (xlsinterfaces.JXL))
				# Some Java-based interface requested but Java support is absent
				error ('No Java support found.');
			else
				# No specific Java-based interface requested. Just return
				return;
			endif
			tmp1 = 0;
		end_try_catch
	elseif (~tmp1)
		% Earlier on no Java support detected
		error ("No Java support found.");
	endif

	# Try Java & Apache POI
	if (isempty (xlsinterfaces.POI))
		printf ("Java/Apache POI... ");
		xlsinterfaces.POI = 0;
		# Check basic .xls (BIFF8) support
		jpchk1 = 0; entries1 = {"poi-3", "poi-ooxml-3"};
		# Only under *nix we might use brute force: e.g., strfind(classname, classpath);
		# under Windows we need the following more subtle, platform-independent approach:
		for ii=1:length (jcp)
			for jj=1:length (entries1)
				if (strfind (jcp{ii}, entries1{jj})), ++jpchk1; endif
			endfor
		endfor
		if (jpchk1 > 1)
			xlsinterfaces.POI = 1;
			printf ("OK");
		else
			warning ("\n Not all classes (.jar) required for POI in classpath");
		endif
		# Check OOXML support
		jpchk2 = 0; entries2 = {"xbean", "poi-ooxml-schemas", "dom4j"};
		for ii=1:length (jcp)
			for jj=1:length (entries2)
				if (strfind (jcp{ii}, entries2{jj})), ++jpchk2; endif
			endfor
		endfor
		if (jpchk2 > 2), printf (" (& OOXML too)"); endif
		printf (".\n");
	endif

	# Try Java & JExcelAPI
	if (isempty (xlsinterfaces.JXL))
		printf ("Java/JExcelAPI... "); 
		xlsinterfaces.JXL = 0;
		jpchk = 0; entries = {"jxl"};
		for ii=1:length (jcp)
			for jj=1:length (entries)
				if (strfind (jcp{ii}, entries{jj})), ++jpchk; endif
			endfor
		endfor
		if (jpchk > 0)
			xlsinterfaces.JXL = 1;
			printf ("OK.\n");
		else
			warning ("\n Not all classes (.jar) required for JXL in classpath");
		endif
	endif
	
	# ---- Other interfaces here, similar to the ones above

endfunction