文件io

1.

bool DataLoaderController::GetDBIdFromFile() {
  FILE *f;
  if (f= fopen(kDBIdFilePath, "r")) {
    DBIdBuffer db_id_buffer;
    size_t ret = fread(&db_id_buffer, sizeof(DBIdBuffer), 1, f);
    if (ret == 1) {
      online_video_db_id_ = db_id_buffer.online_video_db_id_;
      hotshare_video_db_id_ = db_id_buffer.hotshare_video_db_id_;
      hotshare_album_db_id_ = db_id_buffer.hotshare_album_db_id_;
      hotshare_db_insert_count_ = db_id_buffer.hotshare_db_insert_count_;
      MCE_DEBUG("DataLoaderController::GetDBIdFromFile()  ----> online_video_db_id_:"<<online_video_db_id_<<"   hotshare_video_db_id:"<<hotshare_video_db_id_
          <<"   hotshare_album_db_id_:"<<hotshare_album_db_id_<<"    hotshare_db_insert_count_:"<<hotshare_db_insert_count_);
    } else {
      MCE_WARN("DataLoaderController::GetDBIdFromFile()  ----> Fail to get dbids from dbid.conf.");
    }   
    fclose(f);
    return true;
  } else {
    MCE_WARN("DataLoaderController::GetDBIdFromFile()  ----> Fail to open dbid.conf.");
  }
  return false;
}

2.

bool IMWindowManagerI::GetUserListFromFile(const string file_path, set<Ice::Int> &temp_users) {
  TimeStat ts;
  bool ret =true;
  ifstream ifile(file_path.c_str()) ;
  if (!ifile) {
    MCE_WARN("IMWindowManagerI::GetReceiversFromFile   Fail to open file ,path:" << file_path);
    ret = false;
  }
  if (ret) {
    char buf[128];
    for(int i=0; !ifile.eof(); i++) {
      if (ifile.getline(buf , sizeof(buf)-1).good()) {
        Ice::Int id = atoi(buf);
        if (id >0)
          temp_users.insert(id);
      } else {
        ret = false;
        break;
      }    
    }    
  }
  MCE_INFO("IMWindowManagerI::GetWhiteListFromFile----> usetime : " << ts.getTime() << "temp_users.size:" << temp_users.size() << " file_path:" << file_path);
  return ret;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值