summaryrefslogtreecommitdiff
path: root/test-rpc-proxy/proxy_rpc_server.h
blob: f57256164ebedfa776f77e36d2c70c06ae90096c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
//
// Copyright (C) 2015 The Android Open Source Project
//
// 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.
//
#ifndef PROXY_RPC_SERVER_H
#define PROXY_RPC_SERVER_H

#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <unistd.h>

#include <iostream>

#include <base/logging.h>

#include "XmlRpc.h"

#include "proxy_dbus_client.h"

using namespace XmlRpc;

class ProxyRpcServer : public XmlRpcServer {
 public:
  ProxyRpcServer(
      int server_port,
      int xml_rpc_lib_verbosity) :
    XmlRpcServer(),
    server_port_(server_port),
    xml_rpc_lib_verbosity_(xml_rpc_lib_verbosity) {}
  void Run();

 private:
  int server_port_;
  int xml_rpc_lib_verbosity_;
};

// Generic class for all the RPC methods exposed by Shill RPC server
class ProxyRpcServerMethod : public XmlRpcServerMethod {
 public:
   ProxyRpcServerMethod(std::string method_name, ProxyRpcServer* rpc_server) :
     XmlRpcServerMethod(method_name, rpc_server) {}

 protected:
   int kSuccess = 0;
   int kFailure = 1;
   int kInvalidArgs = -1;

 private:
};

// MethodName: ConnectWifi
// Param1: SSID <string>
// Param2: IS_HEX_SSID <boolean>
// Param3: PSK <string>
// Return: 0 <success>, -1 <Invalid args>, 1 <Failure>
class ConnectWifi : public ProxyRpcServerMethod {
 public:
  ConnectWifi(ProxyRpcServer* rpc_server) :
    ProxyRpcServerMethod("ConnectWifi", rpc_server) {}
 private:
  void execute(XmlRpcValue& params, XmlRpcValue& result);
};

// MethodName: DisconnectWifi
// Return: 0 <success>, -1 <Invalid args>, 1 <Failure>
class DisconnectWifi : public ProxyRpcServerMethod {
 public:
   DisconnectWifi(ProxyRpcServer* rpc_server) :
     ProxyRpcServerMethod("DisconnectWifi", rpc_server) {}
 private:
  void execute(XmlRpcValue& params, XmlRpcValue& result);
};

#endif //PROXY_RPC_SERVER_H