Add create/destroy in krate-admin-cli
[platform/core/security/krate.git] / lib / package-proxy.cpp
1 /*
2  *  Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
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 #include "rmi/package-proxy.h"
17
18 namespace Krate {
19
20 PackageProxy::PackageProxy(KrateControlContext& ctx) :
21         context(ctx)
22 {
23 }
24
25 PackageProxy::~PackageProxy()
26 {
27 }
28
29 PackageProxy::PackageInfo PackageProxy::getPackageInfo(const std::string& name, const std::string& pkgid)
30 {
31         try {
32                 return context->methodCall<PackageProxy::PackageInfo>("PackageProxy::getPackageInfo", name, pkgid);
33         } catch (runtime::Exception& e) {}
34         return PackageProxy::PackageInfo();
35 }
36
37 std::vector<std::string> PackageProxy::getPackageList(const std::string& krate)
38 {
39         try {
40                 return context->methodCall<std::vector<std::string>>("PackageProxy::getPackageList", krate);
41         } catch (runtime::Exception& e) {}
42         return std::vector<std::string>();;
43 }
44
45 int PackageProxy::install(const std::string& name, const std::string& pkgid)
46 {
47         try {
48                 return context->methodCall<int>("PackageProxy::install", name, pkgid);
49         } catch (runtime::Exception& e) {
50                 return -1;
51         }
52 }
53
54 int PackageProxy::uninstall(const std::string& name, const std::string& pkgid)
55 {
56         try {
57                 return context->methodCall<int>("PackageProxy::uninstall", name, pkgid);
58         } catch (runtime::Exception& e) {
59                 return -1;
60         }
61 }
62
63 } // namespace Krate