⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dbgl_02.cc

📁 这是一个从音频信号里提取特征参量的程序
💻 CC
字号:
// file: $isip/class/shell/DebugLevel/dbgl_02.cc// version: $Id: dbgl_02.cc,v 1.7 2001/11/16 22:27:27 gao Exp $//// isip include files//#include "DebugLevel.h"// method: diagnose//// arguments://  Integral::DEBUG level: (input) debug level for diagnostics//// return: a boolean value indicating status//boolean DebugLevel::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 constructors  //  DebugLevel val0;  val0 = Integral::BRIEF;     DebugLevel val1(val0);    if (val0 != val1) {    return Error::handle(name(), L"assign", Error::TEST, __FILE__, __LINE__);  }  // change val1 so it has a  different value  //  val1 = Integral::ALL;   // test the debug methods  //  setDebug(debug_level_d);  if (level_a > Integral::BRIEF) {    val0.debug(L"debug");  }    // test the i/o methods  //  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);  // write the values  //  val0.write(tmp_file0, (long)0);  val0.write(tmp_file1, (long)0);    val1.write(tmp_file0, (long)1);  val1.write(tmp_file1, (long)1);  // 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 values back in  //  DebugLevel val2;  DebugLevel val3;  if ((!val2.read(tmp_file0, (long)0)) || (val0 != val2)) {    return Error::handle(name(), L"read", Error::TEST, __FILE__, __LINE__);  }  if ((!val2.read(tmp_file1, (long)0)) || (val0 != val2)) {    return Error::handle(name(), L"read", Error::TEST, __FILE__, __LINE__);  }  if ((!val3.read(tmp_file0, (long)1)) || (val1 != val3)) {    return Error::handle(name(), L"read", Error::TEST, __FILE__, __LINE__);  }  if ((!val3.read(tmp_file1, (long)1)) || (val1 != val3)) {    return Error::handle(name(), L"read", Error::TEST, __FILE__, __LINE__);  }  // close and delete the temporary files  //  tmp_file0.close();  tmp_file1.close();  File::remove(tmp_filename0);  File::remove(tmp_filename1);    // test memory-management methods  //  DebugLevel* ptr;  DebugLevel::setGrowSize((long)731);    for (long j = 1; j <= 1000; j++) {    ptr = new DebugLevel();    *ptr = Integral::BRIEF;    delete ptr;    ptr = new DebugLevel[100];    delete [] ptr;  }    // reset indentation  //  if (level_a > Integral::NONE) {    Console::decreaseIndention();  }    //---------------------------------------------------------------------------  //  // 2. class-specific methods:  //     extensions to required methods  //  //---------------------------------------------------------------------------  // set indentation  //  if (level_a > Integral::NONE) {    Console::put(L"testing class-specific methods: extensions to required methods...\n");    Console::increaseIndention();  }  // test assign method  //  String str(L"BRIEF");    val1.assign(str);  if (val1 != val0) {    return Error::handle(name(), L"assign", Error::TEST, __FILE__, __LINE__);  }  // test operator = methods  //  val1 = Integral::DETAILED;  if (val1.eq(val0)) {    return Error::handle(name(), L"operator=", Error::TEST,			 __FILE__, __LINE__);  }  // test operator == methods  //  val1 = Integral::DETAILED;  if (!(val1 == Integral::DETAILED)) {    return Error::handle(name(), L"operator==", Error::TEST,			 __FILE__, __LINE__);  }    // test operator > methods  //  if (!(val1 > Integral::BRIEF)) {    return Error::handle(name(), L"operator>", Error::TEST,			 __FILE__, __LINE__);  }    // test operator >= methods  //  if (!(val1 >= Integral::DETAILED)) {    return Error::handle(name(), L"operator>=", Error::TEST,			 __FILE__, __LINE__);  }    // test operator < methods  //  if (!(val0 < Integral::DETAILED)) {    return Error::handle(name(), L"operator<", Error::TEST,			 __FILE__, __LINE__);  }      // test operator <= methods  //  if (!(val1 <= Integral::DETAILED)) {    return Error::handle(name(), L"operator<=", Error::TEST,			 __FILE__, __LINE__);  }    // test operator != methods  //  if (!(val0 != Integral::DETAILED)) {    return Error::handle(name(), L"operator!=", Error::TEST,			 __FILE__, __LINE__);  }    // reset indentation  //  if (level_a > Integral::NONE) {    Console::decreaseIndention();  }  //---------------------------------------------------------------------------  //  // 3. class-specific public methods:  //     get methods  //  //---------------------------------------------------------------------------    // set indentation  //  if (level_a > Integral::NONE) {    Console::put(L"testing class-specific methods: get methods...\n");    Console::increaseIndention();  }  // test getIndex methods  //  if (val0.getIndex(str) != (long)1) {    return Error::handle(name(), L"getIndex", Error::TEST, __FILE__, __LINE__);  }  // test getName methods  //  String str1(val0.getName());  if (str1.ne(str)) {    return Error::handle(name(), L"getName", Error::TEST, __FILE__, __LINE__);  }  // test casting operator  //  if (val0 != Integral::BRIEF) {    return Error::handle(name(), L"cast", Error::TEST, __FILE__, __LINE__);  }   Integral::DEBUG dval0 = val0;  if (dval0 != Integral::BRIEF) {    return Error::handle(name(), L"cast", Error::TEST, __FILE__, __LINE__);  }  String sval0;  sval0.insert(val0, 0);  if (sval0.ne(L"BRIEF")) {    return Error::handle(name(), L"cast", Error::TEST, __FILE__, __LINE__);  }  // reset indention  //  if (level_a > Integral::NONE) {    Console::decreaseIndention();  }  //---------------------------------------------------------------------------  //  // 4. print completion message  //  //---------------------------------------------------------------------------  // reset indentation  //  if (level_a > Integral::NONE) {    Console::decreaseIndention();  }    if (level_a > Integral::NONE) {    String output(L"diagnostics passed for class ");    output.concat(name());    output.concat(L"\n");    Console::put(output);  }    // exit gracefully  //  return true;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -