Prepare service for database corruption handling
[platform/core/security/cynara.git] / src / common / response / ListResponse.h
1 /*
2  * Copyright (c) 2014-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        src/common/response/ListResponse.h
18  * @author      Lukasz Wojciechowski <l.wojciechow@partner.samsung.com>
19  * @author      Pawel Wieczorek <p.wieczorek2@samsung.com>
20  * @version     1.0
21  * @brief       This file defines response class for policies list request
22  */
23
24 #ifndef SRC_COMMON_RESPONSE_LISTRESPONSE_H_
25 #define SRC_COMMON_RESPONSE_LISTRESPONSE_H_
26
27 #include <vector>
28
29 #include <types/Policy.h>
30
31 #include <request/pointers.h>
32 #include <response/pointers.h>
33 #include <response/Response.h>
34
35 namespace Cynara {
36
37 class ListResponse : public Response {
38 public:
39     ListResponse(const std::vector<Policy> &policies, bool bucketValid, bool dbCorrupted,
40                  ProtocolFrameSequenceNumber sequenceNumber) :
41         Response(sequenceNumber), m_policies(policies), m_bucketValid(bucketValid),
42         m_dbCorrupted(dbCorrupted) {
43     }
44
45     virtual ~ListResponse() {};
46
47     virtual void execute(ResponsePtr self, ResponseTakerPtr taker, RequestContextPtr context) const;
48
49     bool isBucketValid(void) const {
50         return m_bucketValid;
51     }
52
53     bool isDbCorrupted(void) const {
54         return m_dbCorrupted;
55     }
56
57     const std::vector<Policy> &policies(void) const {
58         return m_policies;
59     }
60
61 private:
62     std::vector<Policy> m_policies;
63     bool m_bucketValid;
64     bool m_dbCorrupted;
65 };
66
67 } // namespace Cynara
68
69 #endif /* SRC_COMMON_RESPONSE_LISTRESPONSE_H_ */