Add start point in Storage::checkPolicy()
[platform/core/security/cynara.git] / src / service / storage / StorageBackend.h
1 /*
2  * Copyright (c) 2014 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        StorageBackend.h
18  * @author      Aleksander Zdyb <a.zdyb@partner.samsung.com>
19  * @version     1.0
20  * @brief       Headers for StorageBackend base class
21  */
22
23 #ifndef SRC_SERVICE_STORAGE_STORAGEBACKEND_H_
24 #define SRC_SERVICE_STORAGE_STORAGEBACKEND_H_
25
26 #include <string>
27
28 #include <types/pointers.h>
29 #include <types/PolicyBucket.h>
30 #include <types/PolicyKey.h>
31 #include <types/PolicyBucketId.h>
32 #include <types/PolicyResult.h>
33
34 namespace Cynara {
35
36 class StorageBackend {
37 public:
38     virtual ~StorageBackend() {}
39
40     // TODO: Remove searchDefaultBucket()
41     virtual PolicyBucket searchDefaultBucket(const PolicyKey &key) = 0;
42     virtual PolicyBucket searchBucket(const PolicyBucketId &bucket, const PolicyKey &key) = 0;
43
44     virtual void insertPolicy(const PolicyBucketId &bucket, PolicyPtr policy) = 0;
45
46     virtual void createBucket(const PolicyBucketId &bucketId,
47                               const PolicyResult &defaultPolicy) = 0;
48     virtual void updateBucket(const PolicyBucketId &bucketId,
49                               const PolicyResult &defaultPolicy) = 0;
50     virtual void deleteBucket(const PolicyBucketId &bucketId) = 0;
51     virtual bool hasBucket(const PolicyBucketId &bucketId) = 0;
52
53     virtual void deletePolicy(const PolicyBucketId &bucketId, const PolicyKey &key) = 0;
54     virtual void deleteLinking(const PolicyBucketId &bucket) = 0;
55
56     virtual void load(void) = 0;
57     virtual void save(void) = 0;
58 };
59
60 } /* namespace Cynara */
61
62 #endif /* SRC_SERVICE_STORAGE_STORAGEBACKEND_H_ */