This file is indexed.

/usr/include/linbox/util/formats/maple.h is in liblinbox-dev 1.3.2-1.1build2.

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
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
/* Copyright (C) 2005 LinBox
 * Written by  Dan Roche
 *
 *
 *
 * ========LICENCE========
 * This file is part of the library LinBox.
 *
  * LinBox is free software: you can redistribute it and/or modify
 * it under the terms of the  GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 * ========LICENCE========
 */

#ifndef __LINBOX_format_maple_H
#define __LINBOX_format_maple_H

/* matrix-market-array.h
 * MatrixStreamReader for Maple-style (text) matrices.
 * The general format is Matrix(r,c,<init> [,...]),
 * where <init> is either a row-column-value specification, i.e.
 * {(i,j)=v,(i,j)=v,...} or a dense specification, i.e.
 * [[v11,v12,...],[v21,v22,...],...].
 * In the second case, the rows/columns specifications are optional,
 * and even the outer Matrix(...) part is. In any case, either the word
 * "Matrix" or two opening square brackets "[[" must be present on the
 * first line so the format can be identified.
 */

#include <string>
#include <sstream>
#include "linbox/util/matrix-stream.h"

#if 0
namespace LinBox__FORMAT_MAPLE_H
{
	static const char* name = "Maple Text Format";
	static const char* shortname = "maple";
}
#endif

namespace LinBox
{

	template<class Field>
	class MapleReader :public MatrixStreamReader<Field> {
	public:
		typedef typename MatrixStreamReader<Field>::Element Element;
	private:
		/* These are used to keep track of where we are in the data for
		 * array-based data. They are also used to keep track of where we
		 * are in reading the frontmatter of the matrix.
		 * If currentCol is 0, then we have not reached the matrix data yet.
		 * Then currentRow can be 0,2,3,4,5, depending on how many of the
		 * tokens ( r , c , have been read.
		 */
		size_t currentCol, currentRow;
		bool openParen;
		bool array;
		std::stringstream *stin;

		MatrixStreamError processCandidate( const char* cand ) {
			if( strlen(cand) < 6 ||
			    tolower(cand[1]) != 'a' ||
			    tolower(cand[2]) != 't' ||
			    tolower(cand[3]) != 'r' ||
			    tolower(cand[4]) != 'i' ||
			    tolower(cand[5]) != 'x' )
				return NO_FORMAT;

			int i = 6;
			while( cand[i] && isspace(cand[i]) ) ++i;

			if( !cand[i] ) {
				openParen = true;
				return GOOD;
			}

			if( cand[i] != '(' ) return BAD_FORMAT;

			openParen = true;
			currentCol = 1;

			++i;
			while( cand[i] && isspace(cand[i]) ) ++i;
			if( !cand[i] ) return GOOD;

			char* pastNum;
			if( std::isdigit(cand[i]) ) {
				this->_m = strtoul( cand+i, &pastNum, 0 );
				if( this->_m == 0 && pastNum == cand+i )
					return BAD_FORMAT;
				this->knowM = true;
				currentCol = 2;
				i = int(pastNum - cand);
			}
			else {
				currentCol = i;
				return GOOD;
			}

			while( cand[i] && isspace(cand[i]) ) ++i;
			if( !cand[i] ) return GOOD;
			if( cand[i] != ',' ) return BAD_FORMAT;
			currentCol = 3;

			++i;
			while( cand[i] && isspace(cand[i]) ) ++i;
			if( !cand[i] ) return GOOD;

			if( std::isdigit(cand[i]) ) {
				this->_n = strtoul( cand+i, &pastNum, 0 );
				if( this->_n == 0 && pastNum == cand+i )
					return BAD_FORMAT;
				this->knowN = true;
				currentCol = 4;
				i = int(pastNum - cand);
			}
			else {
				currentCol = i;
				return GOOD;
			}

			while( cand[i] && isspace(cand[i]) ) ++i;
			if( !cand[i] ) return GOOD;
			if( cand[i] != ',' ) return BAD_FORMAT;
			currentCol = i;
			return GOOD;
		}

		MatrixStreamError readUntil(char end) {
			if( stin ) {
				while( !stin->eof() && stin->get() != end )
					if( stin->eof() ) {
						delete stin;
						stin = NULL;
					}
					else return GOOD;
			}

			this->ms->readWhiteSpace();
			while( this->sin->get() != end )
				this->ms->readWhiteSpace();
			if( this->sin->eof() ) return END_OF_FILE;
			return GOOD;
		}

		MatrixStreamError readWhite() {
			if( stin ) {
				int peekVal = stin->peek();
				while( stin->good() && isspace(peekVal) ) {
					stin->get();
					peekVal = stin->peek();
				}
				if( !stin->good() || peekVal < 0 ) {
					delete stin;
					stin = NULL;
				}
			}
			if( !stin ) { // Note this is NOT equivalent to "else"
				this->ms->readWhiteSpace();
				if( this->sin->eof() ) return END_OF_FILE;
			}
			return GOOD;
		}

		MatrixStreamError readCharacter(char &c) {
			MatrixStreamError mse = readWhite();
			if( mse > GOOD ) return mse;
			if( stin ) stin->get(c);
			else this->sin->get(c);
			return GOOD;
		}

		MatrixStreamError readElement(Element& ele) {
			MatrixStreamError mse = readWhite();
			if( mse > GOOD ) return mse;
			if( stin ) {
				this->ms->getField().read(*stin,ele);
				if( stin->eof() ) {
					delete stin;
					stin = NULL;
				}
				else if( !stin->good() )
					return BAD_FORMAT;
			}
			else {
				this->ms->getField().read(*(this->sin),ele);
				if( !this->sin->eof() && !this->sin->good() )
					return BAD_FORMAT;
			}
			return GOOD;
		}

		MatrixStreamError readNumber(size_t& num) {
			MatrixStreamError mse = readWhite();
			if( mse > GOOD ) return mse;
			if( stin ) {
				(*stin) >> num;
				if( stin->eof() ) {
					delete stin;
					stin = NULL;
				}
				else if( !stin->good() )
					return BAD_FORMAT;
			}
			else {
				*(this->sin) >> num;
				if( !this->sin->eof() && !this->sin->good() )
					return BAD_FORMAT;
			}
			return GOOD;
		}

	protected:
		MatrixStreamError nextTripleImpl( size_t& m, size_t& n, Element& v ) {
			if( currentRow == 0 ) {
				while( currentCol < 7 ) {
					this->ms->readWhiteSpace();
					if( this->sin->eof() )
						return END_OF_FILE;

					char ch;
					switch( currentCol ) {
					case 0:
						if( this->sin->get() != '(' )
							return BAD_FORMAT;
						break;
					case 1:
						if( std::isdigit(this->sin->peek()) ) {
							*(this->sin) >> this->_m;
							if( this->sin->eof() )
								return END_OF_FILE;
							if( !this->sin->good() )
								return BAD_FORMAT;
							this->knowM = true;
						}
						else currentCol = 4;
						break;
					case 2:
					case 4:
						if( this->sin->get() != ',' )
							return BAD_FORMAT;
						break;
					case 3:
						if( std::isdigit(this->sin->peek()) ) {
							*(this->sin) >> this->_n;
							if( this->sin->eof() )
								return END_OF_FILE;
							if( !this->sin->good() )
								return BAD_FORMAT;
							this->knowN = true;
						}
						else currentCol = 4;
						break;
					case 5:
						ch = (char)this->sin->get();
						if( ch == '{' ) {
							array = false;
							currentCol = 6;
						}
						else if( ch == '[' )
							array = true;
						else return BAD_FORMAT;
						break;
					case 6:
						if( this->sin->get() != '[' )
							return BAD_FORMAT;
						break;
					}
					++currentCol;
				}

				currentRow = currentCol = 1;
			}

			if( array ) {
				MatrixStreamError mse = readElement(v);
				if( mse > GOOD ) return mse;
				m = currentRow - 1;
				n = currentCol - 1;

				char c;
				mse = readCharacter(c);
				if( mse > GOOD ) return mse;
				if( c == ',' ) {
					++currentCol;
					if( this->knowN && currentCol > this->_n )
						return BAD_FORMAT;
				}
				else if( c == ']' ) {
					if( !this->knowN ) {
						this->knowN = true;
						this->_n = currentCol;
					}
					currentCol = 1;
					mse = readCharacter(c);
					if( mse > GOOD ) return mse;
					if( c == ',' ) {
						++currentRow;
						if( this->knowM &&
						    currentRow > this->_m )
							return BAD_FORMAT;
						mse = readCharacter(c);
						if( mse > GOOD ) return mse;
						if( c != '[' ) return BAD_FORMAT;
					}
					else if( c == ']' ) {
						if( !this->knowM ) {
							this->knowM = true;
							this->_m = currentRow;
						}
						if( openParen ) {
							mse = readUntil(')');
							if( mse > GOOD ) return mse;
						}
						this->atEnd = true;
					}
					else return BAD_FORMAT;
				}
			}
			else {
				char c;
				MatrixStreamError mse = readCharacter(c);
				if( mse > GOOD ) return mse;
				if( c != '(' ) return BAD_FORMAT;
				mse = readNumber(m);
				if( mse > GOOD ) return mse;
				mse = readCharacter(c);
				if( mse > GOOD ) return mse;
				if( c != ',' ) return BAD_FORMAT;
				mse = readNumber(n);
				if( mse > GOOD ) return mse;
				mse = readCharacter(c);
				if( mse > GOOD ) return mse;
				if( c != ')' ) return BAD_FORMAT;
				mse = readCharacter(c);
				if( mse > GOOD ) return mse;
				if( c != '=' ) return BAD_FORMAT;
				mse = readElement(v);
				if( mse > GOOD ) return mse;
				mse = readCharacter(c);
				if( mse > GOOD ) return mse;
				if( c == '}' ) {
					if( openParen ) {
						mse = readUntil(')');
						if( mse > GOOD ) return mse;
					}
					this->atEnd = true;
				}
				--m;
				--n;
			}
			return GOOD;
		}

		MatrixStreamError initImpl( const char* firstLine ) {
			// First look for the word "Matrix"
			const char* candidate = strpbrk(firstLine,"mM");
			MatrixStreamError procErr;
			while( candidate ) {
				procErr = processCandidate(candidate);
				if( procErr < NO_FORMAT ) {
					if( procErr > GOOD ) return procErr;
					else break;
				}
				candidate = strpbrk(candidate+1,"mM");
			}

			bool lineend = false;
			int i = 0;

			if( candidate ) {
				lineend = currentCol <= 5;
				i = int(currentCol);
				if( !lineend ) currentCol = 5;
				while( !lineend && currentCol < 7 ) {
					while( candidate[i] && isspace(candidate[i]) )
						++i;
					switch(candidate[i]) {
					case '\0':
						lineend = true;
						break;
					case '[':
						array = true;
						++currentCol;
						break;
					case '{':
						if( currentCol == 5 ) {
							array = false;
							currentCol = 7;
							break;
						}
					default:
						return BAD_FORMAT;
					}
					++i;
				}
			}
			else { // Look for [[
				candidate = strchr(firstLine,'[');
				while( candidate ) {
					i = 1;
					while( candidate[i] && isspace(candidate[i]) )
						++i;
					if( candidate[i] == '[' ) {
						openParen = false;
						currentCol = 7;
						++i;
						break;
					}
					candidate = strchr(candidate+1,'[');
				}
			}

			if( !candidate ) return NO_FORMAT;
			else if( currentCol < 7 ) return GOOD;

			currentRow = currentCol = 1;
			if( this->knowM && !this->knowN ) {
				this->knowN = true;
				this->_n = this->_m;
			}
			if( !array && !this->knowM ) return BAD_FORMAT;

			// Now candidate+i is the beginning of the actual data.
			while( candidate[i] && isspace(candidate[i]) ) ++i;
			if( !candidate[i] ) return GOOD;

			std::string st(candidate+i);
			stin = new std::stringstream(st);

			return GOOD;
		}

	public:
		MapleReader() {
			currentCol = currentRow = 0;
			stin = NULL;
		}

		~MapleReader() {
			if( stin ) delete stin;
		}

		bool isSparse() const { return !array; }

		const char* getName() const
		{ return "Maple Text Format"; }// LinBox__FORMAT_MAPLE_H::name; }

		const char* shortName() const
		{ return "maple"; }// LinBox__FORMAT_MAPLE_H::shortname;
};


}

#endif // __LINBOX_format_maple_H


// vim:sts=8:sw=8:ts=8:noet:sr:cino=>s,f0,{0,g0,(0,:0,t0,+0,=s
// Local Variables:
// mode: C++
// tab-width: 8
// indent-tabs-mode: nil
// c-basic-offset: 8
// End: