Update wrt-security_0.0.42
[framework/web/wrt-security.git] / popup_process / PopupInvoker.h
1 /*
2  * Copyright (c) 2011 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 #ifndef WRT_POPUP_INVOKER_H
18 #define WRT_POPUP_INVOKER_H
19
20 #include <ace-dao-ro/PromptModel.h>
21
22 #include <string>
23 #include <dpl/named_input_pipe.h>
24 #include <dpl/named_output_pipe.h>
25 #include <dpl/dbus/dbus_client.h>
26 #include <dpl/scoped_ptr.h>
27
28 #include "popup_ace_data_types.h"
29
30 /*
31
32  Example usage:
33
34  bool result = PopupInvoker().askYesNo("title", "message");
35
36  */
37
38 class PopupInvoker
39 {
40 public:
41     class Exception
42     {
43       public:
44         DECLARE_EXCEPTION_TYPE(DPL::Exception, Base)
45         DECLARE_EXCEPTION_TYPE(Base, PopupInvokerException)
46     };
47
48     PopupInvoker();
49     ~PopupInvoker();
50
51     bool showSyncPopup(int popupType, const AceUserdata& aceData);
52
53     bool askYesNo(const std::string &title, const std::string &message);
54
55 private:
56
57     void executePopup();
58     bool securityDaemonCall(bool allowed,
59                             Prompt::Validity valid,
60                             const AceUserdata &data);
61
62     DPL::NamedInputPipe m_input;
63     DPL::NamedOutputPipe m_output;
64     const std::string m_inputName;
65     const std::string m_outputName;
66     DPL::ScopedPtr<DPL::DBus::Client> m_dbusPopupClient;
67 };
68
69 #endif