tizen beta release
[platform/framework/web/wrt-plugins-common.git] / src / modules / tizen / Messaging / MailSender.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  * @author          Zbigniew Kostrzewa (z.kostrzewa@samsung.com)
18  */
19
20 #ifndef MAILSENDER_H_
21 #define MAILSENDER_H_
22
23 #include <map>
24 #include <dpl/event/event_listener.h>
25 #include <dpl/thread.h>
26 #include <dpl/scoped_ptr.h>
27 #include <DBus/Connection.h>
28 #include <DBus/MessageEvent.h>
29 #include <API/Messaging/IEmail.h>
30
31 namespace WrtDeviceApis {
32 namespace Messaging {
33 // TODO Not thread-safe, make it.
34 class MailSender : private DPL::Event::EventListener<DBus::MessageEvent>
35 {
36   public:
37     static MailSender& getInstance();
38
39   public:
40     void send(const Api::IEmailPtr& mail);
41     void cancel(int mailId);
42
43   protected:
44     void OnEventReceived(const DBus::MessageEvent& event);
45
46   private:
47     struct SendRequestData
48     {
49         unsigned int handle;
50         Api::IEmailPtr mail;
51
52         explicit SendRequestData(const Api::IEmailPtr& mail) :
53             handle(0),
54             mail(mail)
55         {
56         }
57     };
58
59     typedef std::map<int, SendRequestData> SendRequests;
60     typedef SendRequests::iterator SendRequestsIterator;
61
62   private:
63     MailSender();
64     ~MailSender();
65
66     void sendInternal(const Api::IEmailPtr& data);
67     void cancelInternal(const SendRequestData& data);
68
69   private:
70     DPL::ScopedPtr<DPL::Thread> m_dbusThread;
71     DBus::ConnectionPtr m_dbus;
72     SendRequests m_requests;
73 };
74 }
75 }
76
77 #endif // MAILSENDER_H_