- 论坛徽章:
- 0
|
sonicling 发表于 2011-12-21 17:31 ![]()
CPU间缓存同步会影响效率,但是不至于数量级的差别。我以前也做过无锁循环队列,不过是内核级的,用atomic_ ...
其实我觉得不是队列慢了导致整体性能慢,
我觉得可能是增加流水线的长度会导致处理数据的速度变慢。
我给大家贴一段处理的代码吧。- string GroupPE::getEventKey(eventPtr msg) {
- vector<string> keys;
- keys.push_back("UchAPN"); // apn
- keys.push_back("Wlac"); // 位置区编号:lacid
- keys.push_back("Cell"); // 小区信息:sac
- keys.push_back("InterfaceType"); // 接口类型:interfacetype
- keys.push_back("Protocoltype"); // 协议类型:protocolid
- keys.push_back("Eventtype"); // 事件类型:eventtype
- string key = Utils::encoding(*msg, keys.begin(), keys.end(), 2000);
- return key;
- }
- /*每个线程有一个统计map 用来存放统计数据 每次来一个event就根据getEventKey这个方法得到key,然后查看key是不是在统计map中,如果在统计map中,那么更新这个map的数据,如果没有,那么new一个event,设置一些值,然后放到统计map中*/
- void GroupPE::process(eventPtr msg) {//统计
-
- string key = this->getEventKey(msg);
- map<string, eventPtr>::iterator iter4map = this->groupMap.find(key);
-
-
- if (iter4map != groupMap.end()) {
- int times = iter4map->second->getValueByName("times", 0);
- ++times;
- iter4map->second->setValueByName("times", times);
- if (msg->getValueByName("cause", -1) == 255) { // response success
- times = iter4map->second->getValueByName("succtimes", 0);
- ++times;
- iter4map->second->setValueByName("succtimes", times);
- }
- string str = msg->getValueByName("Btime", "1970-01-01 00:00:00.000");
- long btime = Utils::millisecs(str.c_str());
- str = msg->getValueByName("RspTime", "1970-01-01 00:00:00.000");
- long rsptime = Utils::millisecs(str.c_str());
- double delays = ((double) rsptime - (double) btime) / 1000;
- double d = iter4map->second->getValueByName("delays", (double) 0);
- iter4map->second->setValueByName("delays", delays + d);
- d = iter4map->second->getValueByName("maxdelays", (double) 0);
- if (d < delays)
- iter4map->second->setValueByName("maxdelays", delays);
- d = iter4map->second->getValueByName("mindelays", (double) 0);
- if (d > delays)
- iter4map->second->setValueByName("mindelays", delays);
- if (btime != rsptime || msg->getValueByName("Tdrtype", (char) 0) != 1) {
- times = iter4map->second->getValueByName("rsptimes", 0);
- ++times;
- iter4map->second->setValueByName("rsptimes", times);
- } else {
- }
- } else { // 进行新统计结果记录
- // 如果单个map数量太大超过阀值,需要进行清理
- //begin use pointer add by lxy 7-19
- #ifndef NEW_ALLOC
- CEventMessage *groupMapEvent = this->event_alloc.allocate(1);
- groupMapEvent->metaData = NULL;
- char * body = this->mt_allocator.allocate(150);
- groupMapEvent->setBody(body);
- EVENT_HEAD_MESSAGE * head = this->head_alloc.allocate(1); //new EVENT_HEAD_MESSAGE;
- #else
- CEventMessage *groupMapEvent = new CEventMessage();
- char * body = new char[150];
- groupMapEvent->setBody(body);
- EVENT_HEAD_MESSAGE * head = new EVENT_HEAD_MESSAGE(); //new EVENT_HEAD_MESSAGE;
- #endif
- groupMapEvent->reset(head);
- groupMapEvent->setHead(head);
- groupMapEvent->getHead()->type = 2005; // 修改事件的类型为“统计事件对象”
- groupMapEvent->getHead()->data_len = 150;
- // 进行业务信息初始化
- groupMapEvent->setValueByName("times", 1);
- // groupMapEvent->setValueByName("cause", msg->getValueByName("cause", -1));
- if (msg->getValueByName("Cause", -1) == 255)
- groupMapEvent->setValueByName("succtimes", 1);
- else
- groupMapEvent->setValueByName("succtimes", 0);
- string Btime_str = msg->getValueByName("Btime", "1970-01-01 00:00:00.000");
- long btime = Utils::millisecs(Btime_str.c_str());
- groupMapEvent->setValueByName("sttime", msg->getValueByName("Btime", "1970-01-01 00:00:00.000"));
- string RspTime_str = msg->getValueByName("RspTime", "1970-01-01 00:00:00.000");
- long rsptime = Utils::millisecs(RspTime_str.c_str());
- double delays = ((double) rsptime - (double) btime) / 1000;
- groupMapEvent->setValueByName("delays", delays);
- groupMapEvent->setValueByName("maxdelays", delays);
- groupMapEvent->setValueByName("mindelays", delays);
- // groupMapEvent->setValueByName("tdrtype", msg->getValueByName("tdrtype", 0));
- if (btime != rsptime || msg->getValueByName("Tdrtype", (char) 0) != 1) {
- groupMapEvent->setValueByName("rsptimes", 1);
- } else {
- groupMapEvent->setValueByName("rsptimes", 0);
- }
- //统计维度的设置 add by lxy 7-21
- groupMapEvent->setValueByName("apn", msg->getValueByName("UchAPN", "*"));
- groupMapEvent->setValueByName("lacid", msg->getValueByName("Wlac", 0));
- groupMapEvent->setValueByName("sac", msg->getValueByName("Cell", 0));
- groupMapEvent->setValueByName("interfacetype", msg->getValueByName("InterfaceType", "*"));
- groupMapEvent->setValueByName("protocolid", msg->getValueByName("Protocoltype", "*"));
- groupMapEvent->setValueByName("eventtype", msg->getValueByName("Eventtype", 0));
- this->groupMap.insert(map<string, eventPtr, std::less<string>, __gnu_cxx::__mt_alloc<string> >::value_type(key, groupMapEvent));
- }
- }
复制代码 下面是Event的代码 不好意思 有点长 我截取一点给大家 CEventMessage.h- class CEventMessage {
- public:
- /*下面这些函数主要是根据类型找到配置文件然后在body的指定位置设置值*/
- int getValueByName(const string &targetname, const int &defval) const; //
- unsigned int getValueByName(const string &targetname, const unsigned int &defval) const;
- long getValueByName(const string &targetname, const long &defval) const;
- unsigned long getValueByName(const string &targetname, const unsigned long &defval) const;
- char getValueByName(const string &targetname, const char &defval) const;
- unsigned char getValueByName(const string &targetname, const unsigned char &defval) const;
- short getValueByName(const string &targetname, const short &defval) const;
- unsigned short getValueByName(const string &targetname, const unsigned short &defval) const;
- string getValueByName(const string &targetname, const string &defval) const;
- double getValueByName(const string &targetname, const double &defval) const;
- float getValueByName(const string &targetname, const float &defval) const;
- void setValueByName(const string &targetname, const int &val);
- void setValueByName(const string &targetname, const unsigned int &val);
- void setValueByName(const string &targetname, const long &val);
- void setValueByName(const string &targetname, const unsigned long &val);
- void setValueByName(const string &targetname, const short &val);
- void setValueByName(const string &targetname, const unsigned short &val);
- void setValueByName(const string &targetname, const char &val);
- void setValueByName(const string &targetname, const unsigned char &val);
- void setValueByName(const string &targetname, const float &val);
- void setValueByName(const string &targetname, const string &val);
- void setValueByName(const string &targetname, const double &val);
- public:
- CEventMessage();
- CEventMessage(const unsigned short& type);
- CEventMessage(const CEventMessage& event);
- CEventMessage& operator=(const CEventMessage& event);
- virtual ~CEventMessage();
- char * getBytes(int &length);
- void setBody(char* body);
- char* getBody() const;
- void setHead(EVENT_HEAD_MESSAGE* head);
- EVENT_HEAD_MESSAGE* getHead() const;
- static void reset(EVENT_HEAD_MESSAGE *event_head_message) {
- event_head_message->pkg_len = 1;
- event_head_message->flag = 0;
- event_head_message->format = 0;
- event_head_message->ver_info = 1;
- event_head_message->peid = 0;
- }
- unsigned int getPrevPEId() const {
- if (head != NULL)
- return head->peid;
- return 0;
- }
- /**
- * ??socket?жs???????
- * @param conn
- * @return
- */
- private:
- template<class T>
- const EVENT_TYPE_ENTY * getCheckedEventTypeEntity(const string&name)const;
- template<class T>
- const EVENT_TYPE_ENTY * getCheckedEventTypeEntityAllocBody(const string&name);
-
- void resetFields(const CEventMessage& event);
- string getStringForNum(EVENT_TYPE_ENTY *eventType)const;
- void setStringFormNum(EVENT_TYPE_ENTY *eventType, const string&str_val) const;
- CMetaData * getMetaData()const; //元数据 就是配置文件 指示body中的数据是如何组成的
- typedef hash_map<string, string> TempValueMap;
- TempValueMap mytempvalmap;//用来存放临时值 用于丰富维度用
- public:
- CMetaData * metaData;
- private:
- EVENT_HEAD_MESSAGE *head; //用于网络传输 head
- char *body; //实际数据
- };
复制代码 CEventMessage.cpp太长了就不放上来了 其实很简单 根据metaData找到配置,根据配置在body的指定位置设置值。
|
|