From ff4991e1f942a3f1281330e21bf437b4b8558094 Mon Sep 17 00:00:00 2001
From: wangzhengquan <wangzhengquan85@126.com>
Date: 星期四, 06 八月 2020 15:22:55 +0800
Subject: [PATCH] add remove_keys

---
 src/socket/dmod_socket.c |   89 ++++++++++++++++++++++++++++++--------------
 1 files changed, 61 insertions(+), 28 deletions(-)

diff --git a/src/socket/dmod_socket.c b/src/socket/dmod_socket.c
index 3086dd0..df57a9f 100644
--- a/src/socket/dmod_socket.c
+++ b/src/socket/dmod_socket.c
@@ -1,7 +1,7 @@
 #include "dmod_socket.h"
 
 
-void DModSocket::foreach_subscripters(std::function<void(SHMKeySet *, SHMKeySet::iterator)>  cb) {
+void DModSocket::foreach_subscripters(std::function<void(SHMKeySet *, int)>  cb) {
 	SHMTopicSubMap *topic_sub_map = mem_pool_attach<SHMTopicSubMap>(BUS_MAP_KEY);
 	SHMKeySet *subscripter_set;
 	SHMKeySet::iterator set_iter;
@@ -12,7 +12,7 @@
 			subscripter_set = map_iter->second;
 			if(subscripter_set != NULL) {
 				for(set_iter = subscripter_set->begin(); set_iter != subscripter_set->end(); set_iter++) {
-					cb(subscripter_set, set_iter);
+					cb(subscripter_set, *set_iter);
 				}
 			}
 		}
@@ -31,14 +31,38 @@
 }
 
 size_t DModSocket::remove_subscripters(int keys[], size_t length) {
-	size_t count;
-	foreach_subscripters([keys, length, &count](SHMKeySet *subscripter_set, SHMKeySet::iterator set_iter){
-		if (include_in_keys(*set_iter, keys, length)) {
-			subscripter_set->erase(set_iter);
-			count++;
+	size_t count = 0;
+	int key;
+	for(int i = 0; i < length; i++) {
+		key = keys[i];
+		SHMTopicSubMap *topic_sub_map = mem_pool_attach<SHMTopicSubMap>(BUS_MAP_KEY);
+		SHMKeySet *subscripter_set;
+		SHMKeySet::iterator set_iter;
+		SHMTopicSubMap::iterator map_iter;
+
+		if(topic_sub_map != NULL) {
+			for (map_iter = topic_sub_map->begin(); map_iter != topic_sub_map->end(); map_iter++) {
+				subscripter_set = map_iter->second;
+				if(subscripter_set != NULL && (set_iter = subscripter_set->find(key) ) != subscripter_set->end()) {
+					subscripter_set->erase(set_iter);
+// printf("remove_subscripter %s, %d\n", map_iter->first, key);
+					count++;
+				}
+			}
 		}
-	});
+	}
 	return count;
+// 	foreach_subscripters([keys, length, &count](SHMKeySet *subscripter_set, int key){
+// printf("foreach===========\n");
+// 		if (include_in_keys(key, keys, length)) {
+
+// 			//subscripter_set->erase(key);
+// printf("remove_subscripter %d\n", key);
+// 			count++;
+// 		}
+// 	});
+// printf("remove_subscripters count = %d\n", count);
+	
 }
 
 
@@ -177,14 +201,14 @@
  * @size 涓婚闀垮害
  * @port 鎬荤嚎绔彛
  */
-int  DModSocket::sub( void *topic, int size, int port){
+int  DModSocket::sub(char *topic, int size, int port){
 	return _sub_( topic, size, port, NULL, 0);
 }
 // 瓒呮椂杩斿洖銆� @sec 绉� 锛� @nsec 绾崇
-int  DModSocket::sub_timeout(void *topic, int size, int port, struct timespec *timeout){
+int  DModSocket::sub_timeout(char *topic, int size, int port, struct timespec *timeout){
 	return _sub_(topic, size, port, timeout, 0);
 }
-int  DModSocket::sub_nowait(void *topic, int size, int port) {
+int  DModSocket::sub_nowait(char *topic, int size, int port) {
 	return _sub_(topic, size, port, NULL,  (int)SHM_MSG_NOWAIT);
 }
 
@@ -196,14 +220,14 @@
  * @size 涓婚闀垮害
  * @port 鎬荤嚎绔彛
  */
-int  DModSocket::desub( void *topic, int size, int port){
+int  DModSocket::desub(char *topic, int size, int port){
 	return _desub_( topic, size, port, NULL, 0);
 }
 // 瓒呮椂杩斿洖銆� @sec 绉� 锛� @nsec 绾崇
-int  DModSocket::desub_timeout(void *topic, int size, int port, struct timespec *timeout){
+int  DModSocket::desub_timeout(char *topic, int size, int port, struct timespec *timeout){
 	return _desub_(topic, size, port, timeout, 0);
 }
-int  DModSocket::desub_nowait(void *topic, int size, int port) {
+int  DModSocket::desub_nowait(char *topic, int size, int port) {
 	return _desub_(topic, size, port, NULL,  (int)SHM_MSG_NOWAIT);
 }
 
@@ -215,14 +239,14 @@
  * @content 涓婚鍐呭
  * @port 鎬荤嚎绔彛
  */
-int  DModSocket::pub(void *topic, int topic_size, void *content, int content_size, int port){
+int  DModSocket::pub(char *topic, int topic_size, void *content, int content_size, int port){
 		return _pub_(topic, topic_size, content, content_size, port, NULL, 0);
 }
 //  瓒呮椂杩斿洖銆� @sec 绉� 锛� @nsec 绾崇
-int  DModSocket::pub_timeout(void *topic, int topic_size, void *content, int content_size, int port, struct timespec * timeout){
+int  DModSocket::pub_timeout(char *topic, int topic_size, void *content, int content_size, int port, struct timespec * timeout){
 	return _pub_( topic, topic_size, content, content_size, port, timeout, 0);
 }
-int  DModSocket::pub_nowait(void *topic, int topic_size, void *content, int content_size, int port){
+int  DModSocket::pub_nowait(char *topic, int topic_size, void *content, int content_size, int port){
 	return _pub_(topic, topic_size, content, content_size, port, NULL, (int)SHM_MSG_NOWAIT);
 }
 
@@ -240,11 +264,11 @@
 /**
  * @port 鎬荤嚎绔彛
  */
-int  DModSocket::_sub_( void *topic, int size, int port,  
+int  DModSocket::_sub_(char *topic, int size, int port,  
 	struct timespec *timeout, int flags) {
 	char buf[8192];
 	int rv;
-	snprintf(buf,  8192, "%ssub%s%s%s%s", ACTION_LIDENTIFIER, ACTION_RIDENTIFIER, TOPIC_LIDENTIFIER, (char *)topic, TOPIC_RIDENTIFIER);
+	snprintf(buf,  8192, "%ssub%s%s%s%s", ACTION_LIDENTIFIER, ACTION_RIDENTIFIER, TOPIC_LIDENTIFIER, topic, TOPIC_RIDENTIFIER);
 	rv = shm_sendto(shm_socket, buf, strlen(buf) + 1, port, timeout, flags);
 	if(rv == 0) {
 		bus_set->insert(port);
@@ -256,21 +280,24 @@
 /**
  * @port 鎬荤嚎绔彛
  */
-int  DModSocket::_desub_( void *topic, int size, int port,  
+int  DModSocket::_desub_(char *topic, int size, int port,  
 	struct timespec *timeout, int flags) {
 	char buf[8192];
-	snprintf(buf,  8192, "%sdesub%s%s%s%s", ACTION_LIDENTIFIER, ACTION_RIDENTIFIER, TOPIC_LIDENTIFIER, (char *)topic, TOPIC_RIDENTIFIER);
+	if(topic == NULL) {
+		topic = "";
+	}
+	snprintf(buf,  8192, "%sdesub%s%s%s%s", ACTION_LIDENTIFIER, ACTION_RIDENTIFIER, TOPIC_LIDENTIFIER,  topic, TOPIC_RIDENTIFIER);
 	return shm_sendto(shm_socket, buf, strlen(buf) + 1, port, timeout, flags);
 }
 
 /**
  * @port 鎬荤嚎绔彛
  */
-int  DModSocket::_pub_( void *topic, int topic_size, void *content, int content_size, int port,  
+int  DModSocket::_pub_(char *topic, int topic_size, void *content, int content_size, int port,  
 	struct timespec *timeout, int flags) {
 	int head_len;
 	char buf[8192+content_size];
-	snprintf(buf, 8192, "%spub%s%s%s%s", ACTION_LIDENTIFIER, ACTION_RIDENTIFIER, TOPIC_LIDENTIFIER, (char *)topic, TOPIC_RIDENTIFIER);
+	snprintf(buf, 8192, "%spub%s%s%s%s", ACTION_LIDENTIFIER, ACTION_RIDENTIFIER, TOPIC_LIDENTIFIER, topic, TOPIC_RIDENTIFIER);
 	head_len = strlen(buf);
 	memcpy(buf+head_len, content, content_size);
 	return shm_sendto(shm_socket, buf, head_len+content_size, port, timeout, flags);
@@ -284,7 +311,7 @@
 
 	SHMTopicSubMap::iterator map_iter;
 	SHMKeySet::iterator set_iter;
-
+printf("_proxy_sub topic = %s\n", topic);
 	if( (map_iter = topic_sub_map->find(topic) ) != topic_sub_map->end()) {
 		subscripter_set = map_iter->second;
 	} else {
@@ -306,7 +333,9 @@
 
 	if( (map_iter = topic_sub_map->find(topic) ) != topic_sub_map->end()) {
 		subscripter_set = map_iter->second;
+
 		subscripter_set->erase(port);
+printf("============ desub %d\n", port);
 	}
 }
 
@@ -321,6 +350,7 @@
 	for (auto map_iter = topic_sub_map->begin(); map_iter != topic_sub_map->end(); map_iter++) {
 			subscripter_set = map_iter->second;
 			subscripter_set->erase(port);
+printf("============ desub %d\n", port);
 	}
 }
 
@@ -376,20 +406,23 @@
 	const char *topic_delim = ",";
 // printf("run_pubsub_proxy server receive before\n");
 	while(shm_recvfrom(shm_socket, (void **)&buf, &size, &port) == 0) {
-// printf("run_pubsub_proxy server recv after: %s \n", buf);
+//printf("run_pubsub_proxy server recv after: %s \n", buf);
 		if(parse_pubsub_topic(buf, size, &action, &topics, &head_len)) {
+// printf("run_pubsub_proxy  %s %s \n", action, topics);
 			if(strcmp(action, "sub") == 0) {
 				// 璁㈤槄鏀寔澶氫富棰樿闃�
 				topic = strtok(topics, topic_delim);
+//printf("run_pubsub_proxy topic = %s\n", topic);
 			  while(topic) {
 	       _proxy_sub(trim(topic, 0), port);
 	        topic =  strtok(NULL, topic_delim);
 			  }
 
 			} else if(strcmp(action, "desub") == 0) {
+printf("desub topic=%s,%s,%d\n", topics, trim(topics, 0), strcmp(trim(topics, 0), ""));
 				if(strcmp(trim(topics, 0), "") == 0) {
 					// 鍙栨秷鎵�鏈夎闃�
-		printf("鍙栨秷鎵�鏈夎闃�");
+		printf("====鍙栨秷鎵�鏈夎闃匼n");
 					_proxy_desub_all(port);
 				} else {
 				 
@@ -473,12 +506,12 @@
 
  char *topic = (char *)malloc(topic_len+1);
  strncpy(topic, topic_start_ptr, topic_len);
- *topic = '\0';
+ *(topic+topic_len) = '\0';
  *_topic = topic;
 
  char *action = (char *)malloc(action_len+1);
  strncpy(action, action_start_ptr, action_len);
- *action = '\0';
+ *(action+action_len) = '\0';
  *_action = action;
  *head_len = ptr-str;
 

--
Gitblit v1.8.0