// file: $isip/class/pr/PhoneticDecisionTreeNode/pdtnod_02.cc // version: $Id: pdtnod_02.cc 8863 2002-12-05 21:22:52Z parihar $ // // isip include files // #include "PhoneticDecisionTreeNode.h" // method: diagnose // // arguments: // Integral::DEBUG level: (input) debug level for diagnostics // // return: logical error status // // this is the diagnostics method // bool8 PhoneticDecisionTreeNode::diagnose(Integral::DEBUG level_a) { //---------------------------------------------------------------------- // // 0. preliminaries // //---------------------------------------------------------------------- // output the class name // if (level_a > Integral::NONE) { SysString output(L"diagnosing class "); output.concat(CLASS_NAME); output.concat(L": "); Console::put(output); Console::increaseIndention(); } //--------------------------------------------------------------------- // // 1. required public methods // //--------------------------------------------------------------------- // set indentation // if (level_a > Integral::NONE) { Console::put(L"testing required public methods...\n"); Console::increaseIndention(); } // test destructor/constructor(s) and memory management // PhoneticDecisionTreeNode pdtn0; PhoneticDecisionTreeNode pdtn1(pdtn0); if (!pdtn1.eq(pdtn0)) { return Error::handle(name(), L"copy constructor", Error::TEST, __FILE__, __LINE__); } // test large allocation construction and deletion // if (level_a == Integral::ALL) { Console::put(L"\ntesting large chunk memory allocation and deletion:\n"); // set the memory to a strange block size so we can hopefully catch any // frame overrun errors // PhoneticDecisionTreeNode::setGrowSize((int32)500); PhoneticDecisionTreeNode* pdtn = new PhoneticDecisionTreeNode(); for (int32 j = 1; j <= 100; j++) { PhoneticDecisionTreeNode** pdtns = new PhoneticDecisionTreeNode*[j * 100]; // create the objects // for (int32 i = 0; i < j * 100; i++) { pdtns[i] = new PhoneticDecisionTreeNode(); } // delete objects // for (int32 i = (j * 100) - 1; i >= 0; i--) { delete pdtns[i]; } delete [] pdtns; } delete pdtn; } // reset indentation // if (level_a > Integral::NONE) { Console::decreaseIndention(); } //--------------------------------------------------------------------- // // 2. class-specific public methods // //--------------------------------------------------------------------- // set indentation // if (level_a > Integral::NONE) { Console::put(L"testing class-specific public methods...\n"); Console::increaseIndention(); } // we need binary and text sof files // String tmp_filename0; Integral::makeTemp(tmp_filename0); String tmp_filename1; Integral::makeTemp(tmp_filename1); // open files in write mode // Sof tmp_file0; tmp_file0.open(tmp_filename0, File::WRITE_ONLY, File::TEXT); Sof tmp_file1; tmp_file1.open(tmp_filename1, File::WRITE_ONLY, File::BINARY); pdtn0.write(tmp_file0, (int32)0); // close the files // tmp_file0.close(); tmp_file1.close(); // open the files in read mode // tmp_file0.open(tmp_filename0); tmp_file1.open(tmp_filename1); // read the object back // pdtn1.read(tmp_file0, (int32)0); if (!pdtn0.eq(pdtn1)) { return Error::handle(name(), L"i/o", Error::TEST, __FILE__, __LINE__); } pdtn1.read(tmp_file1, (int32)0); if (!pdtn0.eq(pdtn1)) { return Error::handle(name(), L"i/o", Error::TEST, __FILE__, __LINE__); } // close and delete the temporary files // tmp_file0.close(); tmp_file1.close(); File::remove(tmp_filename0); File::remove(tmp_filename1); // reset indentation // if (level_a > Integral::NONE) { Console::decreaseIndention(); } //--------------------------------------------------------------------- // // 3. print completion message // //--------------------------------------------------------------------- // reset indentation // if (level_a > Integral::NONE) { Console::decreaseIndention(); } if (level_a > Integral::NONE) { SysString output(L"diagnostics passed for class"); output.concat(name()); output.concat(L"\n"); Console::put(output); } // exit gracefully // return true; }