f23711f80078a683b0b4952999056879904a1250
[platform/core/security/key-manager.git] / src / manager / main / service-messages.h
1 /*
2  *  Copyright (c) 2000 - 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 /*
17  * @file       service-messages.h
18  * @author     Krzysztof Jackiewicz (k.jackiewicz@samsung.com)
19  * @version    1.0
20  */
21
22 #pragma once
23
24 #include <memory>
25
26 #include <credentials.h>
27 #include <ckm/ckm-type.h>
28 #include <protocols.h>
29 #include <ckm/ckm-error.h>
30 #include <communication-manager.h>
31 #include <generic-backend/gkey.h>
32
33 namespace CKM {
34
35 // inter-service communication message base class
36 struct MsgBase
37 {
38     explicit MsgBase(int id) : id(id) {}
39     virtual ~MsgBase() {}
40
41     int id;
42 };
43
44 // key request
45 struct MsgKeyRequest : public MsgBase
46 {
47     MsgKeyRequest(int id,
48                   const Credentials& cred,
49                   const Name& name,
50                   const Label& label,
51                   const Password& password) :
52         MsgBase(id),
53         cred(cred),
54         name(name),
55         label(label),
56         password(password)
57     {}
58     Credentials cred;
59     Name name;
60     Label label;
61     Password password;
62 };
63
64 // key response
65 struct MsgKeyResponse : public MsgBase
66 {
67     MsgKeyResponse(int id, const Crypto::GKeyShPtr& key, int errorCode = CKM_API_SUCCESS) :
68         MsgBase(id),
69         key(key),
70         error(errorCode)
71     {}
72     Crypto::GKeyShPtr key;
73     int error;
74 };
75
76 typedef CommunicationManager<MsgKeyRequest, MsgKeyResponse> CommMgr;
77
78 } /* namespace CKM */