summaryrefslogtreecommitdiff
path: root/src/ui/popup-client.cpp
diff options
context:
space:
mode:
authorsangwan.kwon <sangwan.kwon@samsung.com>2016-07-18 09:35:50 +0900
committersangwan.kwon <sangwan.kwon@samsung.com>2016-07-22 14:59:37 +0900
commit99659ec45d64234927b2fca33ad58e0648e573ca (patch)
tree22fcd8780573c887ec626e2f610515242c42098e /src/ui/popup-client.cpp
parentf744139cf01c9f6bc19968cd728965fb874c194a (diff)
downloadcert-checker-99659ec45d64234927b2fca33ad58e0648e573ca.tar.gz
cert-checker-99659ec45d64234927b2fca33ad58e0648e573ca.tar.bz2
cert-checker-99659ec45d64234927b2fca33ad58e0648e573ca.zip
Replace popup architecture to systemd service
[AS-IS] * popup used to pipe for IPC [TO-BE] * use to systemd service Change-Id: Ie203c8a4dbcb071fd3896e0c7af1bb8cd7280dbf Signed-off-by: sangwan.kwon <sangwan.kwon@samsung.com>
Diffstat (limited to 'src/ui/popup-client.cpp')
-rw-r--r--src/ui/popup-client.cpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/ui/popup-client.cpp b/src/ui/popup-client.cpp
new file mode 100644
index 0000000..29d4336
--- /dev/null
+++ b/src/ui/popup-client.cpp
@@ -0,0 +1,37 @@
+/*
+ * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+/*
+ * @file popup-client.cpp
+ * @author Sangwan Kwon (sangwan.kwon@samsung.com)
+ * @version 1.0
+ * @brief Client about popup service
+ */
+#include "popup-client.h"
+
+#include "common/log.h"
+
+using namespace CCHECKER::UI;
+
+PopupClient::PopupClient() : m_address(POPUP_STREAM)
+{
+ m_dispatcher.reset(new Dispatcher(m_address));
+}
+
+bool PopupClient::dispatch(const app_t &app)
+{
+ LogDebug("Dispatch popup service. app : " << app.str());
+ return m_dispatcher->methodCall<bool>(app);
+}