All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tim Kourt <tim.a.kourt@linux.intel.com>
To: iwd@lists.01.org
Subject: [PATCH 3/4] client: Remove explicit agent registartion from framework
Date: Thu, 05 Dec 2019 13:52:40 -0800	[thread overview]
Message-ID: <20191205215241.31283-3-tim.a.kourt@linux.intel.com> (raw)
In-Reply-To: <20191205215241.31283-1-tim.a.kourt@linux.intel.com>

[-- Attachment #1: Type: text/plain, Size: 4956 bytes --]

This removes the no longer needed APIs from agent-manager.
---
 Makefile.am            |  4 ++--
 client/agent-manager.c | 41 -----------------------------------------
 client/agent-manager.h | 24 ------------------------
 client/dbus-proxy.c    | 19 -------------------
 4 files changed, 2 insertions(+), 86 deletions(-)
 delete mode 100644 client/agent-manager.h

diff --git a/Makefile.am b/Makefile.am
index 1d572db5..7a6faadd 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -267,7 +267,7 @@ bin_PROGRAMS += client/iwctl
 client_iwctl_SOURCES = client/main.c \
 			client/adapter.c \
 			client/agent.h client/agent.c \
-			client/agent-manager.h client/agent-manager.c \
+			client/agent-manager.c \
 			client/ad-hoc.c \
 			client/ap.c \
 			client/command.h client/command.c \
@@ -486,7 +486,7 @@ if CLIENT
 unit_test_client_SOURCES = unit/test-client.c \
 				client/adapter.c \
 				client/agent.h client/agent.c \
-				client/agent-manager.h client/agent-manager.c \
+				client/agent-manager.c \
 				client/command.h client/command.c \
 				client/dbus-proxy.h client/dbus-proxy.c \
 				client/display.h client/display.c \
diff --git a/client/agent-manager.c b/client/agent-manager.c
index fb371ea2..98a78436 100644
--- a/client/agent-manager.c
+++ b/client/agent-manager.c
@@ -29,7 +29,6 @@
 
 #include "agent.h"
 #include "dbus-proxy.h"
-#include "agent-manager.h"
 #include "command.h"
 
 #define IWD_AGENT_MANAGER_PATH		"/net/connman/iwd"
@@ -80,46 +79,6 @@ static void agent_manager_stop(const struct proxy_interface *proxy)
 	agent_exit(path);
 }
 
-bool agent_manager_register_agent(void)
-{
-	const char *path;
-	const struct proxy_interface *proxy =
-		proxy_interface_find(IWD_AGENT_MANAGER_INTERFACE,
-							IWD_AGENT_MANAGER_PATH);
-
-	if (!proxy)
-		return false;
-
-	path = proxy_interface_get_data(proxy);
-	if (!path)
-		return false;
-
-	proxy_interface_method_call(proxy, "RegisterAgent", "o",
-					check_errors_method_callback, path);
-
-	return true;
-}
-
-bool agent_manager_unregister_agent(void)
-{
-	const char *path;
-	const struct proxy_interface *proxy =
-		proxy_interface_find(IWD_AGENT_MANAGER_INTERFACE,
-							IWD_AGENT_MANAGER_PATH);
-
-	if (!proxy)
-		return false;
-
-	path = proxy_interface_get_data(proxy);
-	if (!path)
-		return false;
-
-	proxy_interface_method_call(proxy, "UnregisterAgent", "o",
-					check_errors_method_callback, path);
-
-	return true;
-}
-
 static void *agent_manager_create(void)
 {
 	return l_strdup_printf("/agent/%i", getpid());
diff --git a/client/agent-manager.h b/client/agent-manager.h
deleted file mode 100644
index c0433f53..00000000
--- a/client/agent-manager.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- *
- *  Wireless daemon for Linux
- *
- *  Copyright (C) 2017-2019  Intel Corporation. All rights reserved.
- *
- *  This library is free software; you can redistribute it and/or
- *  modify it under the terms of the GNU Lesser General Public
- *  License as published by the Free Software Foundation; either
- *  version 2.1 of the License, or (at your option) any later version.
- *
- *  This library is distributed in the hope that it will be useful,
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- *  Lesser General Public License for more details.
- *
- *  You should have received a copy of the GNU Lesser General Public
- *  License along with this library; if not, write to the Free Software
- *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
- *
- */
-
-bool agent_manager_register_agent(void);
-bool agent_manager_unregister_agent(void);
diff --git a/client/dbus-proxy.c b/client/dbus-proxy.c
index 70b63686..a8cfca55 100644
--- a/client/dbus-proxy.c
+++ b/client/dbus-proxy.c
@@ -27,7 +27,6 @@
 #include <stdio.h>
 #include <ell/ell.h>
 
-#include "agent-manager.h"
 #include "dbus-proxy.h"
 #include "display.h"
 #include "command.h"
@@ -732,21 +731,6 @@ static void get_managed_objects_callback(struct l_dbus_message *message,
 	while (l_dbus_message_iter_next_entry(&objects, &path, &object))
 		proxy_interface_create(path, &object);
 
-	if (command_needs_no_agent())
-		goto no_agent;
-
-	if (!agent_manager_register_agent()) {
-		display_error("Failed to register Agent.\n");
-
-		if (!command_is_interactive_mode())
-			command_set_exit_status(EXIT_FAILURE);
-
-		l_main_quit();
-
-		return;
-	}
-
-no_agent:
 	if (!command_is_interactive_mode()) {
 		command_noninteractive_trigger();
 
@@ -867,9 +851,6 @@ bool dbus_proxy_exit(void)
 {
 	struct interface_type_desc *desc;
 
-	if (!command_needs_no_agent())
-		agent_manager_unregister_agent();
-
 	for (desc = __start___interface; desc < __stop___interface; desc++) {
 		if (!desc->exit)
 			continue;
-- 
2.13.6

  parent reply	other threads:[~2019-12-05 21:52 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-05 21:52 [PATCH 1/4] client: Extend client proxy object's API Tim Kourt
2019-12-05 21:52 ` [PATCH 2/4] client: Add start/stop ops to agent manager proxy Tim Kourt
2019-12-05 21:52 ` Tim Kourt [this message]
2019-12-05 21:52 ` [PATCH 4/4] client: Use full include path for local includes Tim Kourt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20191205215241.31283-3-tim.a.kourt@linux.intel.com \
    --to=tim.a.kourt@linux.intel.com \
    --cc=iwd@lists.01.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.