void CAVSProxy::addOffEvent(CUserInfo::pointer touserInfo, COfflineEvent::pointer offlineEvent) { BOOST_ASSERT (touserInfo.get() != 0); BOOST_ASSERT (offlineEvent.get() != 0); BOOST_ASSERT (offlineEvent->fromInfo().get() != 0); touserInfo->m_offevents.add(offlineEvent); CMessageInfo::pointer messageInfo = offlineEvent->getMessage(); if (messageInfo.get() == 0) { return; } struct timeb tbNow; ftime(&tbNow); tbNow.time -= (tbNow.timezone*60); offlineEvent->getMessage()->msgtime(tbNow.time); if (m_bodbHandler->isopen()) { long nFromId = 0; if (offlineEvent->fromInfo()->fromType() == CFromInfo::FromDialogInfo) { nFromId = offlineEvent->fromInfo()->fromDialog()->dialogId(); } char sql[10*1024]; memset(sql, 0, sizeof(sql)); switch (offlineEvent->getEvent()) { case 601: // diainvite case 602: // diaquit { sprintf(sql, "INSERT INTO offevents_t (event,fromtype,fromid,fromaccount,toaccount,message,msgtype) \ VALUES(%d,%d,%ld,'%s','%s','%s',%d)", offlineEvent->getEvent(), (int)offlineEvent->fromInfo()->fromType(), nFromId, offlineEvent->getFromAccount()->getAccount().c_str(), touserInfo->getAccount().c_str(), offlineEvent->toAccount()->getAccount().c_str(), messageInfo->type() ); }break; default: { switch (messageInfo->type()) { case 3: { // image sprintf(sql, "INSERT INTO offevents_t (event,fromtype,fromid,fromaccount,toaccount,msgtype,newflag,message,msgsize,width,height) \ VALUES(%d,%d,%ld,'%s','%s',%d, %s, '%s', %d, %d, %d)", offlineEvent->getEvent(), (int)offlineEvent->fromInfo()->fromType(), nFromId, offlineEvent->getFromAccount()->getAccount().c_str(), touserInfo->getAccount().c_str(), messageInfo->type(), messageInfo->newflag() ? "true" : "false", messageInfo->getdata(), messageInfo->filesize(), messageInfo->imageWidth(), messageInfo->imageHeight() ); }break; case 11: { // ?? // Do not support to save the file offevent. return; }break; default: { sprintf(sql, "INSERT INTO offevents_t (event,fromtype,fromid,fromaccount,toaccount,msgtype,newflag,message,msgsize)\ VALUES(%d,%d,%ld,'%s','%s',%d, %s, '%s', %ld)", offlineEvent->getEvent(), (int)offlineEvent->fromInfo()->fromType(), nFromId, offlineEvent->getFromAccount()->getAccount().c_str(), touserInfo->getAccount().c_str(), messageInfo->type(), messageInfo->newflag() ? "true" : "false", messageInfo->getdata(), messageInfo->total() ); }break; } }break; } m_bodbHandler->execsql(sql); }
// sendOfflineEvent bool sendOfflineEvent(cgcResponse::pointer response, COfflineEvent::pointer offlineEvent) { BOOST_ASSERT (response.get() != 0); BOOST_ASSERT (offlineEvent.get() != 0); if (response->isInvalidate()) return false; switch (offlineEvent->getEvent()) { case 501: { CMessageInfo::pointer messageInfo = offlineEvent->getMessage(); BOOST_ASSERT (messageInfo.get() != 0); long messageid = messageInfo->messageid(); short msgtype = messageInfo->type(); bool newflag = messageInfo->newflag(); size_t sizeSended = 0; size_t tosendSize = 0; switch (msgtype) { case 1: { size_t toSendSizeTotal = messageInfo->total(); cgc::cgcAttachment::pointer attach(cgcAttachment::create()); attach->setName("text"); attach->setTotal(toSendSizeTotal); while (sizeSended < toSendSizeTotal) { tosendSize = (short)(toSendSizeTotal-sizeSended) > MAX_PACKET_SIZE ? MAX_PACKET_SIZE : (toSendSizeTotal-sizeSended); attach->setAttach((const unsigned char*)messageInfo->getdata()+sizeSended, tosendSize); attach->setIndex(sizeSended); if (attach->getIndex() == 0) { if (!sendMsg(response, offlineEvent->getFromAccount(), offlineEvent->fromInfo(), messageid, msgtype, attach, newflag, offlineEvent->getMessage()->msgtime())) { return false; } }else { if (!sendMsg(response, offlineEvent->getFromAccount(), offlineEvent->fromInfo(), messageid, attach)) { return false; } } sizeSended += tosendSize; #ifdef WIN32 Sleep(5); #else usleep(5000); #endif } }break; case 3: { std::string filename = messageInfo->tostring(); size_t nFilesize = messageInfo->filesize(); char filepath[256]; sprintf(filepath, "%s/File/%s", gApplication->getAppConfPath().c_str(), filename.c_str()); FILE * hfile = fopen(filepath, "rb"); if (hfile == NULL) { return false; } unsigned char * imageBuffer = new unsigned char[nFilesize+1]; size_t imageSize = fread(imageBuffer, 1, nFilesize, hfile); fclose(hfile); namespace fs = boost::filesystem; fs::path pathFile(filepath, fs::native); fs::remove(pathFile); if (imageSize == 0) { delete[] imageBuffer; return false; } cgc::cgcAttachment::pointer attach(cgcAttachment::create()); attach->setName("image"); attach->setTotal(imageSize); while (sizeSended < imageSize) { tosendSize = (short)(imageSize-sizeSended) > MAX_PACKET_SIZE ? MAX_PACKET_SIZE : (imageSize-sizeSended); attach->setAttach((const unsigned char*)imageBuffer+sizeSended, tosendSize); attach->setIndex(sizeSended); if (attach->getIndex() == 0) { long nWidth = messageInfo->imageWidth(); long nHeight = messageInfo->imageHeight(); if (!sendMsgImage(response, offlineEvent->getFromAccount(), offlineEvent->fromInfo(), messageid, nWidth, nHeight, msgtype, attach, newflag, offlineEvent->getMessage()->msgtime())) { delete[] imageBuffer; return false; } }else { if (!sendMsg(response, offlineEvent->getFromAccount(), offlineEvent->fromInfo(), messageid, attach)) { delete[] imageBuffer; return false; } } sizeSended += tosendSize; #ifdef WIN32 Sleep(5); #else usleep(5000); #endif } delete[] imageBuffer; }break; default: break; } }break; default: { if (offlineEvent->fromInfo()->fromType() == CFromInfo::FromDialogInfo) { response->setParameter(cgcParameter::create(_T("DID"), offlineEvent->fromInfo()->fromDialog()->dialogId())); } response->setParameter(cgcParameter::create(_T("FromAccount"), offlineEvent->getFromAccount()->getAccount())); response->sendResponse(0, offlineEvent->getEvent()); }break; } return true; }