Change in libosmocore[master]: ctrl: Allow handling CTRL get/set replies in user defined code

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

pespin gerrit-no-reply at lists.osmocom.org
Tue Jan 5 17:59:07 UTC 2021


pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmocore/+/21964 )


Change subject: ctrl: Allow handling CTRL get/set replies in user defined code
......................................................................

ctrl: Allow handling CTRL get/set replies in user defined code

Prior to this patch, it was not possible to gather SET/GET reply
information when implementing a CTRL client using libosmocontrol. This
is specially important when using teh GET command, since one wants to
receive the queried value.
CTRL traps can also be handled this way by extending this patch in the
future if needed.

Change-Id: Id3c4631cd32c13e78e11b6e8194b8c16307ec4f1
---
M TODO-RELEASE
M include/osmocom/ctrl/control_if.h
M src/ctrl/control_if.c
3 files changed, 11 insertions(+), 0 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/64/21964/1

diff --git a/TODO-RELEASE b/TODO-RELEASE
index e8fb32b..501f25b 100644
--- a/TODO-RELEASE
+++ b/TODO-RELEASE
@@ -12,3 +12,4 @@
 libosmogsm	API change		struct ipac_preproc_ave_cfg: new zero-sized flexible array member at end
 libosmovty	ABI change		struct cmd_element: add a field for program specific attributes
 libosmovty	ABI change		struct vty_app_info: optional program specific attributes description
+libosmoctrl     ABI change		struct ctrl_handle changed size (new field "reply_cb" at the end)
diff --git a/include/osmocom/ctrl/control_if.h b/include/osmocom/ctrl/control_if.h
index 5fa9588..77d1567 100644
--- a/include/osmocom/ctrl/control_if.h
+++ b/include/osmocom/ctrl/control_if.h
@@ -9,6 +9,7 @@
 
 typedef int (*ctrl_cmd_lookup)(void *data, vector vline, int *node_type,
 				void **node_data, int *i);
+typedef void (*ctrl_cmd_reply_cb)(struct ctrl_handle *ctrl, struct ctrl_cmd *cmd);
 
 struct ctrl_handle {
 	struct osmo_fd listen_fd;
@@ -18,6 +19,11 @@
 
 	/* List of control connections */
 	struct llist_head ccon_list;
+
+	/* User defined GET/SET REPLY handler. User can set cmd->defer to 1 in
+	   order to own and keep the cmd pointer and free it after the function
+	   returns.  */
+	ctrl_cmd_reply_cb reply_cb;
 };
 
 
diff --git a/src/ctrl/control_if.c b/src/ctrl/control_if.c
index ce2e367..0ba93e3 100644
--- a/src/ctrl/control_if.c
+++ b/src/ctrl/control_if.c
@@ -221,6 +221,10 @@
 
 	if (cmd->type == CTRL_TYPE_SET_REPLY ||
 	    cmd->type == CTRL_TYPE_GET_REPLY) {
+		if (ctrl->reply_cb) {
+			ctrl->reply_cb(ctrl, cmd);
+			return CTRL_CMD_HANDLED;
+		}
 		if (strncmp(cmd->reply, "OK", 2) == 0) {
 			LOGP(DLCTRL, LOGL_DEBUG, "%s <%s> for %s is OK\n",
 			     get_value_string(ctrl_type_vals, cmd->type),

-- 
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/21964
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: Id3c4631cd32c13e78e11b6e8194b8c16307ec4f1
Gerrit-Change-Number: 21964
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin at sysmocom.de>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20210105/9c1225ad/attachment.htm>


More information about the gerrit-log mailing list