📄 nmap_03.cc
字号:
// file: $isip/class/io/NameMap/nmap_03.cc// version: $Id: nmap_03.cc,v 1.5 2001/05/03 15:50:52 duncan Exp $//// isip include files//#include "NameMap.h"// method: readElementData//// arguments:// long& value: (output) value read// Sof& sof: (input) sof file object// const SysString& pname: (input) parameter name// long size: (input) number of bytes in file// boolean param: (input) is the parameter specified?// boolean nested: (input) is this nested?//// return: a boolean value indicating status//// read this element to an sof file. this method is very useful// inside other class's readData methods.//boolean NameMap::readElementData(long& value_a, Sof& sof_a, const SysString& pname_a,long size_a, boolean param_a, boolean nested_a) const { // clear the argument // value_a = -1; // if ascii, read in a line, else binary read // if (sof_a.isText()) { SofParser parser; SysString buffer; SysString pname; // if param is false, this means implicit parameter // if (!param_a) { parser.setImplicitParam(); pname.assign(parser.implicitPname()); } else { pname.assign(pname_a); } // are we nested? // if (nested_a) { parser.setNest(); } // size = -1 means this is the root object, load the parse // if (size_a < 0) { if (!parser.load(sof_a, size_a)) { return Error::handle(name(), L"readElementData", Error::READ, __FILE__, __LINE__, Error::WARNING); } // if param is false, this means implicit parameter // if (!param_a) { parser.setImplicitParam(); } // read the data from the default parameter // if (!parser.read(buffer, sof_a, parser.getEntry(sof_a, pname_a))) { return Error::handle(name(), L"readElementData", Error::READ, __FILE__, __LINE__, Error::WARNING); } } else { // we are already positioned correctly, just read // if (!parser.read(buffer, sof_a, size_a)) { return Error::handle(name(), L"readElementData", Error::READ, __FILE__, __LINE__, Error::WARNING); } } value_a = getIndex(buffer); if (value_a < 0) { displayChoices(buffer); return Error::handle(name(), L"readElementData", Error::READ, __FILE__, __LINE__, Error::WARNING); } } // for binary read the index directly // else { // read the checksum // uint16 tmp; if (sof_a.read(&tmp, sizeof(uint16), 1) != 1) { return Error::handle(name(), L"readElementData", Error::READ, __FILE__, __LINE__, Error::WARNING); } // check that the checksum matches the current checksum // if (tmp != checksum_d) { return Error::handle(name(), L"readElementData", ERR_CHKSUM, __FILE__, __LINE__, Error::WARNING); } // read the index // uint16 val; if (sof_a.read(&val, sizeof(uint16), 1) != 1) { return Error::handle(name(), L"readElementData", Error::READ, __FILE__, __LINE__, Error::WARNING); } value_a = val; // check the value // if ((value_a < 0) || (value_a >= size_d)) { return Error::handle(name(), L"readElementData", Error::READ, __FILE__, __LINE__, Error::WARNING); } } // exit gracefully // return true;}// method: writeElementData//// arguments:// Sof& sof: (input) sof file// const SysString& pname: (input) parameter name// ushort index: (input) value to write//// return: a boolean value indicating status//// write this element to an sof file. this method is very useful// inside other class's writeData methods.//boolean NameMap::writeElementData(Sof& sof_a, const SysString& pname_a, ushort index_a) const { // for a text file write out the name // if (sof_a.isText()) { SysString output; // start with the assignment string // if (pname_a.length() > 0) { output.assign(pname_a); output.concat(L" = \""); } else { output.concat(L"\""); } // concatenate the value // output.concat(getName(index_a)); // end with a double quote // output.concat(L"\""); // if a parameter name was set, add a terminator and a newline // if (pname_a.length() > 0) { output.concat(L";\n"); } // write the text string // if (!sof_a.puts(output)) { return false; } } // for binary write the index and the checksum directly // else { // write the checksum // uint16 cksm = checksum_d; if (sof_a.write(&cksm, sizeof(uint16), 1) != 1) { return false; } // write the index // uint16 val = index_a; if (sof_a.write(&val, sizeof(uint16), 1) != 1) { return false; } } // exit gracefully // return true;}// method: elementSofSize//// arguments: none//// return: the size of the object in an Sof file//// this method computes the size needed to write an element of the// NameMap to a binary Sof file.//long NameMap::elementSofSize() const { static long nbytes = sizeof(uint16) + sizeof(uint16); return nbytes;}// method: displayChoices//// arguments:// const SysString& choice: (input) bad_choice//// return: logical error status//// display to the Console the available NameMap choices//boolean NameMap::displayChoices(const SysString& choice_a) const { SysString out; if (size_d < 1) { return Error::handle(name(), L"displayChoices", ERR, __FILE__, __LINE__); } out.assign(L"value >"); out.concat(choice_a); out.concat(L"< is not valid ("); out.concat(names_d[0]); for (long i = 1; i < size_d; i++) { out.concat(L", "); out.concat(names_d[i]); } out.concat(L")\n"); return Console::put(out);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -