| 
									
										
										
										
											2017-02-10 19:23:01 +00:00
										 |  |  | function firstbyte(f/*:RawData*/,o/*:?TypeOpts*/)/*:number*/ { | 
					
						
							| 
									
										
										
										
											2015-04-02 20:32:22 +00:00
										 |  |  | 	switch((o||{}).type || "base64") { | 
					
						
							|  |  |  | 		case 'buffer': return f[0]; | 
					
						
							|  |  |  | 		case 'base64': return Base64.decode(f.substr(0,12)).charCodeAt(0); | 
					
						
							|  |  |  | 		case 'binary': return f.charCodeAt(0); | 
					
						
							|  |  |  | 		case 'array': return f[0]; | 
					
						
							| 
									
										
										
										
											2017-02-10 19:23:01 +00:00
										 |  |  | 		default: throw new Error("Unrecognized type " + (o ? o.type : "undefined")); | 
					
						
							| 
									
										
										
										
											2015-04-02 20:32:22 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-10 19:23:01 +00:00
										 |  |  | function read_zip(data/*:RawData*/, opts/*:?ParseOpts*/)/*:Workbook*/ { | 
					
						
							|  |  |  | 	/*:: if(!jszip) throw new Error("JSZip is not available"); */ | 
					
						
							| 
									
										
										
										
											2014-01-28 16:38:02 +00:00
										 |  |  | 	var zip, d = data; | 
					
						
							| 
									
										
										
										
											2014-05-16 00:33:34 +00:00
										 |  |  | 	var o = opts||{}; | 
					
						
							| 
									
										
										
										
											2014-07-28 13:22:32 +00:00
										 |  |  | 	if(!o.type) o.type = (has_buf && Buffer.isBuffer(data)) ? "buffer" : "base64"; | 
					
						
							| 
									
										
										
										
											2014-05-16 00:33:34 +00:00
										 |  |  | 	switch(o.type) { | 
					
						
							| 
									
										
										
										
											2014-01-28 16:38:02 +00:00
										 |  |  | 		case "base64": zip = new jszip(d, { base64:true }); break; | 
					
						
							| 
									
										
										
										
											2015-04-02 20:32:22 +00:00
										 |  |  | 		case "binary": case "array": zip = new jszip(d, { base64:false }); break; | 
					
						
							| 
									
										
										
										
											2014-05-16 00:33:34 +00:00
										 |  |  | 		case "buffer": zip = new jszip(d); break; | 
					
						
							|  |  |  | 		default: throw new Error("Unrecognized type " + o.type); | 
					
						
							| 
									
										
										
										
											2014-01-28 16:38:02 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-05-16 00:33:34 +00:00
										 |  |  | 	return parse_zip(zip, o); | 
					
						
							| 
									
										
										
										
											2014-01-28 16:38:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-10 19:23:01 +00:00
										 |  |  | function readSync(data/*:RawData*/, opts/*:?ParseOpts*/)/*:Workbook*/ { | 
					
						
							|  |  |  | 	var zip, d = data, n=0; | 
					
						
							| 
									
										
										
										
											2015-04-02 20:32:22 +00:00
										 |  |  | 	var o = opts||{}; | 
					
						
							|  |  |  | 	if(!o.type) o.type = (has_buf && Buffer.isBuffer(data)) ? "buffer" : "base64"; | 
					
						
							| 
									
										
										
										
											2017-02-10 19:23:01 +00:00
										 |  |  | 	if(o.type == "file") { o.type = "buffer"; d = _fs.readFileSync(data); } | 
					
						
							| 
									
										
										
										
											2015-04-02 20:32:22 +00:00
										 |  |  | 	switch((n = firstbyte(d, o))) { | 
					
						
							| 
									
										
										
										
											2017-02-10 19:23:01 +00:00
										 |  |  | 		case 0xD0: return parse_xlscfb(CFB.read(d, o), o); | 
					
						
							|  |  |  | 		case 0x09: return parse_xlscfb(s2a(o.type === 'base64' ? Base64.decode(d) : d), o); | 
					
						
							| 
									
										
										
										
											2015-04-02 20:32:22 +00:00
										 |  |  | 		case 0x3C: return parse_xlml(d, o); | 
					
						
							| 
									
										
										
										
											2017-02-10 19:23:01 +00:00
										 |  |  | 		case 0x50: return read_zip(d, o); | 
					
						
							| 
									
										
										
										
											2017-02-24 10:33:01 +00:00
										 |  |  | 		case 0xEF: return parse_xlml(d, o); | 
					
						
							| 
									
										
										
										
											2015-04-02 20:32:22 +00:00
										 |  |  | 		default: throw new Error("Unsupported file " + n); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-10 19:23:01 +00:00
										 |  |  | function readFileSync(filename/*:string*/, opts/*:?ParseOpts*/)/*:Workbook*/ { | 
					
						
							| 
									
										
										
										
											2014-05-16 00:33:34 +00:00
										 |  |  | 	var o = opts||{}; o.type = 'file'; | 
					
						
							| 
									
										
										
										
											2017-02-10 19:23:01 +00:00
										 |  |  | 	return readSync(filename, o); | 
					
						
							| 
									
										
										
										
											2014-01-28 16:38:02 +00:00
										 |  |  | } |