CustomHandlerDAO implementation
[framework/web/wrt-commons.git] / modules / custom_handler_dao / include / wrt-commons / custom-handler-dao-ro / custom_handler_dao_read_only.h
1 /*
2  * Copyright (c) 2012 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  * This file contains the declaration of custom handler dao class.
18  *
19  * @file    custom_handler_dao_read_only.h
20  * @author  Krzysztof Jackiewicz (k.jackiewicz@samsung.com)
21  * @version 1.0
22  * @brief   This file contains the declaration of custom handler dao
23  */
24
25 #ifndef _CUSTOM_HANDLER_DAO_READ_ONLY_H_
26 #define _CUSTOM_HANDLER_DAO_READ_ONLY_H_
27
28 #include <dpl/string.h>
29 #include <dpl/exception.h>
30 #include "common_dao_types.h"
31
32 namespace CustomHandlerDB {
33
34 class CustomHandlerDAOReadOnly
35 {
36   public:
37     /**
38      * CustomHandlerDAOReadOnly Exception classes
39      */
40     class Exception
41     {
42       public:
43         DECLARE_EXCEPTION_TYPE(DPL::Exception, Base)
44         DECLARE_EXCEPTION_TYPE(Base, DatabaseError)
45     };
46
47   public:
48     explicit CustomHandlerDAOReadOnly(const DPL::String& pkgName);
49     virtual ~CustomHandlerDAOReadOnly();
50
51     /**
52      * Returns protocol handler
53      */
54     CustomHandlerPtr getProtocolHandler(const DPL::String& protocol,
55                                         const DPL::String& url);
56
57     /**
58      * Returns content handler
59      */
60     CustomHandlerPtr getContentHandler(const DPL::String& content,
61                                        const DPL::String& url);
62
63     /**
64      * Returns allowed handler for given protocol
65      */
66     CustomHandlerPtr getAllowedProtocolHandler(const DPL::String& protocol);
67
68     /**
69      * Returns allowed handler for given content
70      */
71     CustomHandlerPtr getAllowedContentHandler(const DPL::String& protocol);
72
73   protected:
74     DPL::String m_pkgName;
75 };
76
77 } // namespace CustomHandlerDB
78
79 #endif // _CUSTOM_HANDLER_DAO_READ_ONLY_H_
80