summaryrefslogtreecommitdiff
path: root/client/include/ss_client_intf.h
blob: 21ff92bdcb0b4156f2254360b4c75716e099df31 (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
/*
 * secure storage
 *
 * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd All Rights Reserved 
 *
 * Contact: Kidong Kim <kd0228.kim@samsung.com>
 *
 * 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 __SS_MANAGER__
#include "ss_manager.h"
#endif

/*
 * Declare new function
 *
 *  @name: SsClientDataStore
 *  @parameter
 *     - filepath: [in]
 *     - flag: [in]
 *  @return type: int
 *     - 1: success
 *     - <1: error
 */
int SsClientDataStoreFromFile(const char* filepath, ssm_flag flag, const char* group_id);
int SsClientDataStoreFromBuffer(char* writebuffer, size_t bufLen, const char* filename, ssm_flag flag, const char* group_id);

/*
 * Declare new function
 *
 *  @name: SsClientDataRead
 *  @parameter
 *     - filepath: [in]
 *     - pRetBuf: [out]
 *     - bufLen: [in]
 *     - readLen: [out]
 *  @return type: int
 *     - 1: success
 *     - <1: error
 */
int SsClientDataRead(const char* filepath, char* pRetBuf, size_t bufLen, size_t *readLen, ssm_flag flag, const char* group_id);

/*
 * Declare new function
 *
 *  @name: SsClientGetInfo
 *  @parameter
 *     - filepath: [in]
 *     - sfi: [out]
 *  @return type: int
 *     - 1: success
 *     - <1: error
 */
int SsClientGetInfo(const char* filepath, ssm_file_info_t* sfi, ssm_flag flag, const char* group_id);

int SsClientDeleteFile(const char* pFilePath, ssm_flag flag, const char* group_id);