Skip to content
Snippets Groups Projects
Commit 33a31138 authored by rswindell's avatar rswindell
Browse files

A few changes:

* Don't set File.etx when reading .cnf files. strings are null-terminated
  in *.cnf files.
* Don't open files shareable - they are not. This could explain .cnf file
  corruption when using this library.
* read() and write():
- If passed just the .cnf filename, get the full path automatically
  If not passed a 'struct' argument, figure it out from the filename
* Make the CNF object the last statement so that this library may be loaded
  into its own scope using: var cnflib = load({}, 'cnflib.js');
parent 676f70b1
No related branches found
No related tags found
No related merge requests found
......@@ -172,13 +172,31 @@ var CNF = new (function() {
}
return bytes;
}
this.fullpath = function(fileName) {
if(file_name(fileName) == fileName)
return system.ctrl_dir + fileName;
return fileName;
}
/* read records from .cnf file */
this.read = function(fileName,struct) {
var f = new File(fileName);
f.open('rb',true);
f.etx=3;
if(!struct) {
switch(file_getname(fileName).toLowerCase()) {
case "xtrn.cnf":
struct = js.global.struct.xtrn;
break;
case "msgs.cnf":
struct = js.global.struct.msg;
break;
default:
return false;
}
}
var f = new File(fullpath(fileName));
if(!f.open('rb'))
return false;
var data = readRecord(f,struct);
f.close();
......@@ -187,8 +205,20 @@ var CNF = new (function() {
/* write records to .cnf file */
this.write = function(fileName,struct,data) {
var f = new File(fileName);
if(!f.open('wb',true))
if(!struct) {
switch(file_getname(fileName).toLowerCase()) {
case "xtrn.cnf":
struct = js.global.struct.xtrn;
break;
case "msgs.cnf":
struct = js.global.struct.msg;
break;
default:
return false;
}
}
var f = new File(fullpath(fileName));
if(!f.open('wb'))
return false;
writeRecord(f,struct,data);
......@@ -197,3 +227,5 @@ var CNF = new (function() {
}
})();
CNF;
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment