Separate benchmark tool from rpc-port
[platform/core/appfw/rpc-port.git] / benchmark / tool / dbus-proxy.hh
1 /*
2  * Copyright (c) 2024 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef DBUS_PROXY_HH_
18 #define DBUS_PROXY_HH_
19
20 #include <gio/gio.h>
21 #include <glib.h>
22 #include <sys/types.h>
23 #include <unistd.h>
24
25 #include <memory>
26 #include <string>
27 #include <string_view>
28
29 namespace rpc_port {
30 namespace benchmark {
31
32 class DbusProxy {
33  public:
34   DbusProxy();
35
36   void Connect();
37   int Test(std::string data);
38   int Start(pid_t caller_pid);
39   int Stop(pid_t caller_pid);
40
41  private:
42   int MethodCall(const std::string_view method_name,
43                  GVariant* parameters);
44
45  private:
46   GDBusConnection* system_conn_ = nullptr;
47 };
48
49 }  // namespace benchmark
50 }  // namespace rpc_port
51
52 #endif  // DBUS_PROXY_HH_