Prepare service for database corruption handling
[platform/core/security/cynara.git] / src / common / response / DescriptionListResponse.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/DescriptionListResponse.h
18  * @author      Zofia Abramowska <z.abramowska@samsung.com>
19  * @author      Pawel Wieczorek <p.wieczorek2@samsung.com>
20  * @version     1.0
21  * @brief       This file defines response class for plugins description list response
22  */
23
24 #ifndef SRC_COMMON_RESPONSE_DESCRIPTIONLISTRESPONSE_H_
25 #define SRC_COMMON_RESPONSE_DESCRIPTIONLISTRESPONSE_H_
26
27 #include <vector>
28
29 #include <types/PolicyDescription.h>
30 #include <request/pointers.h>
31 #include <response/pointers.h>
32 #include <response/Response.h>
33
34 namespace Cynara {
35
36 class DescriptionListResponse : public Response {
37 public:
38     DescriptionListResponse(const std::vector<PolicyDescription> &descriptions, bool dbCorrupted,
39                             ProtocolFrameSequenceNumber sequenceNumber) :
40         Response(sequenceNumber), m_descriptions(descriptions), m_dbCorrupted(dbCorrupted) {
41     }
42
43     virtual ~DescriptionListResponse() {};
44
45     virtual void execute(ResponsePtr self, ResponseTakerPtr taker, RequestContextPtr context) const;
46
47     bool isDbCorrupted(void) const {
48         return m_dbCorrupted;
49     }
50
51     const std::vector<PolicyDescription> &descriptions(void) const {
52         return m_descriptions;
53     }
54
55 private:
56     std::vector<PolicyDescription> m_descriptions;
57     bool m_dbCorrupted;
58 };
59
60 } // namespace Cynara
61
62 #endif /* SRC_COMMON_RESPONSE_DESCRIPTIONLISTRESPONSE_H_ */