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

📄 updatereginforec.cxx

📁 vovida的软交换
💻 CXX
字号:
#include "CacheListener.hxx"
#include "UpdateRegInfoRec.hxx"
#include "Record.hxx"
#include "RecordTypes.h"
#include "cpLog.h"

#include "DBResultset.hxx"
#include "support.hxx"

#include <cstdio>
#include <cstdlib>
#include <ctime>


UpdateRegInfoRec::UpdateRegInfoRec() {
    setRecordType(UPDATE_REG_INFO_REC);
}

UpdateRegInfoRec::~UpdateRegInfoRec() {}

void UpdateRegInfoRec::displayRecord() { 

    cout << "UpdateRegInfoRec.cxx: Generic Data\n";
    Record::displayRecord("UpdateRegInfoRec.cxx");
    cout << "UpdateRegInfoRec.cxx: Specific Data\n";
    cout << "UpdateRegInfoRec.cxx: Port: " << listenerPort << "\n";
    cout << "UpdateRegInfoRec.cxx: Hostname: " << hostname << "\n";
    cout << "UpdateRegInfoRec.cxx: TriggerRecordType: " 
	 << Record::stringRecordType(triggerRecordType) << "\n";
    cout << "UpdateRegInfoRec.cxx: CBF Ptr : " << callBackFunc << "\n";
}

bool UpdateRegInfoRec::populateRecord(KeyType key, DBConnection* dbconn) {
    DBResultset* results;

    try { 
      results = dbconn->DBSQLSelect( (string) " " +  // (string allows '+' op)
        "SELECT hostname, port, trigger, callbackptr " +
	" FROM UPDATEREG "                                               +
	" WHERE key ='" + key + "'"                              +  
	";"
      );
    }
    catch ( VException &e ) { 
      cpLog(LOG_ERR, "DBSQLSelect failed due to %s",e.getDescription().c_str());
      return false;
    }

    ResultTabletype recs = results->GetRecords();
    delete results;  // Delete the results object in case this fails

    if (recs.begin() == recs.end()) return false; // No records

    ResultRecordtype oneRec = *(recs.begin());

    if (oneRec.size() != 4) return false; // Not enough data in record

    // We know the order and expected types of the data, so map each in
    setKey(key);
    setHostname(                                 oneRec[0]          );
    setListenerPort(                       atoi( oneRec[1].c_str() ));
    setTriggerRecordType(Record::convertStrRType(oneRec[2])         );
    setCallBackFunc(     (callBackFuncPtr) atoi( oneRec[3].c_str() ));     
    // The atoi(...) commands and casts should be safe 'cos the database is 
    // enforcing the types 
    
    return true;

}
 
bool UpdateRegInfoRec::amendRecord(DBConnection* dbconn) {

    // Database amend is not supported for UpdateRegInfoRec
  cpLog(LOG_ERR, "DBAmend not supported for registration, deregister and register again instead");

    return false;
}

bool UpdateRegInfoRec::deleteRecord(DBConnection* dbconn) {

    bool result;

    try { 
      result = dbconn->DBSQLDelete( (string) " " +  // (string allows '+' op)
        "DELETE FROM UPDATEREG "             +
	" WHERE key  ='" + key + "'"  +  
	";"
      );
    }
    catch ( VException &e ) { 
      cpLog(LOG_ERR, "DBSQLDelete failed due to %s",e.getDescription().c_str());
      return false;
    }

    return result;
}

bool UpdateRegInfoRec::insertRecord(DBConnection* dbconn) {

    bool result;

    // Convert values to stirngs
    string values  = "'" + key + "', '" + hostname + "', '" + itos(listenerPort) + "', ";
           values += "'" + Record::stringRecordType(triggerRecordType) + "', ";
	   values += "'" + itos((int)callBackFunc) + "'"

    cout << "Values : " << values << "\n";

    try { 
      result = dbconn->DBSQLInsert( (string) " " +  // (string allows '+' op)
        "INSERT INTO UPDATEREG " + 
        " (key, hostname, port, trigger, callbackptr)" + 
	" VALUES (" + values + ")" + 
	";"
      );
    }
    catch ( VException &e ) { 
      cpLog(LOG_ERR, "DBSQLInsert failed due to %s",e.getDescription().c_str());
      return false;
    }

    return result;

}

KeyList UpdateRegInfoRec::getAllKeys(DBConnection* dbconn) { 
  KeyList l; 

  // Would do a database SELECT to get all relavent keys and 
  // return them in key list

  return l;
}

Record* UpdateRegInfoRec::clone() { 
  
  UpdateRegInfoRec* rec = new UpdateRegInfoRec();
  rec->setListenerPort(listenerPort);
  rec->setCallBackFunc(callBackFunc);
  rec->setHostname(hostname);
  rec->setTriggerRecordType(triggerRecordType);
  
  return rec;
}


⌨️ 快捷键说明

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