Use SafeBuffer in C++ api. Rename SafeBuffer to RawBuffer.
[platform/core/security/key-manager.git] / src / manager / client / client-common.h
1 /*
2  *  Copyright (c) 2000 - 2013 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *  Contact: Bumjin Im <bj.im@samsung.com>
5  *
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License
17  */
18 /*
19  * @file        client-common.h
20  * @author      Bartlomiej Grzelewski (b.grzelewski@samsung.com)
21  * @version     1.0
22  * @brief       This file constains implementation of common types
23  *              used in Central Key Manager.
24  */
25
26 #ifndef _KEY_MANAGER_CLIENT_
27 #define _KEY_MANAGER_CLIENT_
28
29 #include <vector>
30 #include <functional>
31
32 #include <message-buffer.h>
33
34 #define KEY_MANAGER_API __attribute__((visibility("default")))
35
36 extern "C" {
37     struct msghdr;
38 }
39
40 namespace CKM {
41
42 int sendToServer(char const * const interface, const RawBuffer &send, MessageBuffer &recv);
43
44 /*
45  * Decorator function that performs frequently repeated exception handling in
46  * SS client API functions. Accepts lambda expression as an argument.
47  */
48 int try_catch(const std::function<int()>& func);
49
50 } // namespace CKM
51
52 #endif // _KEY_MANAGER_CLIENT_