Got the new stuff working, last commit before final pull push
[qtmeetings] / src / BusinessLogic / Engine.h
1 #ifndef ENGINE_H_
2 #define ENGINE_H_
3
4 #include <QObject>
5 #include <QDateTime>
6 #include "Room.h"
7 #include "WindowManager.h"
8 #include "DeviceManager.h"
9 #include "PasswordDialog.h"
10
11 class QTimer;
12 class Clock;
13 class Configuration;
14 class CommunicationManager;
15 class Meeting;
16 class UIManager;
17
18 //! BusinessLogic class. Contains all the business logic of the application.
19 /*!
20  * BusinessLogic class. Contains all the business logic of the application. It is responsible
21  * for connecting user interface to lower application layers (IO).
22  */
23 class Engine : public QObject
24 {
25         Q_OBJECT
26
27 public:
28         //! Constructor.
29         /*!
30          * Constructor to initialize an Engine instance.
31          */
32         Engine();
33         //! Destructor.
34         virtual ~Engine();
35         //! Gets default room of the application.
36         /*!
37          * Gets default room of the application.
38          * \return Pointer to the default Room instance.
39          */
40         Room* defaultRoom();
41
42 signals:
43
44 private slots:
45         //! Slot. Closes the application.
46         /*!
47          * Slot. Closes the application.
48          */
49         void closeApplication();
50         //! Slot. Checks actual availability information of the specified room.
51         /*!
52          * Slot. Checks actual availability information of the specified room.
53          * \param aRoom The room which availability information is needed.
54          */
55         void roomStatusInfoNeeded( Room *aRoom );
56         //! Slot. Asks the communication to fetch new meeting data.
57         /*!
58          * Slot. Asks the communication to fetch new meeting data.
59          * \param aCurrentRoom The current room.
60          */
61         void shownWeekChanged( QDate aDate );
62         //! Slot. Handles errors.
63         /*!
64          * Slot. Handles errors and informs the UI by emitting the error() signal with the message in
65          * parameter.
66          * \param aCode The error code.
67          * \param aAddInfo Possible addition info.
68          */
69         void errorHandler( int aCode, const QString &aAddInfo = "" );
70         //! Slot. Fetches meetings from the server.
71         /*!
72          * Slot. Fetches meetings from the server. Parameters are hard coded: the meetings of the default
73          * room from current and +/- 2 weeks are fetched.
74          */
75         void fetchMeetings();
76         //! Slot. Saves fetched meetings to the current instance's local storage.
77         /*!
78          * Slot. Saves fetched meetings to the current instance's local storage. Meetings are soted in a
79          * private QList, it is iterated through and signals are emitted if there is any new, updated or
80          * deleted meeting.
81          * \param aMeetings The list of freshly fetched meetings.
82          */
83         void meetingsFetched( const QList<Meeting*>& );
84         //! Slot. Checks the availability of all the rooms.
85         /*!
86          * Slot. Checks the availability of all the rooms by iterating through the current object's local
87          * room storage and calling the roomStatusInfoNeeded() separately on each of them.
88          */
89         void checkStatusOfAllRooms();
90         //! Slot for receiving the failure event of operation mode changing.
91         /*!
92          * Slot. Receives the failure event of operation mode changing.
93          */
94         void changeModeFailed();
95         //! Slot for receiving the cancel event of the progress bar.
96         /*!
97          *  Receives the cancel event of the progress bar when meeting details requested.
98          */
99         void fetchMeetingDetails( Meeting *aMeeting );
100         void cancelFetchMeetingDetails();
101         
102         void handleViewEvent();
103         void previousViewRestored();
104         
105         //! Slot for dialog activation signal.
106         /*!
107          * This slot is used to inform that dialog is activated. It stops
108          * the idle time counter so screensaver is not activated while the
109          * dialog is displayed.
110          */
111         void dialogActivated();
112         //! Slot for dialog deactivation signal.
113         /*!
114          * This slot is used to inform that dialog is deactivated. It restarts
115          * the idle time counter so that the screensaver is being activated again
116          * as needed.
117          */
118         void dialogDeactivated();
119         
120         void stopIdleTimeCounter();
121         void startIdleTimeCounter();
122
123         void changeDeviceMode( bool aChange );
124         
125 private:
126         // Make the UIManager as friendly class so it can connect to private slots.
127         friend class UIManager;
128         
129         //! Provides the index of the Meeting instance which is at the specified time.
130         /*!
131          * Provides the index of the Meeting instance which is at the specified time. If there are
132          * overlapping meetings then returns one of then undetetministically.
133          * \param aRoom The room which meetings are looked through.
134          * \param aAt Date and time when the meeting is already going.
135          * \return Index of the meeting if found; otherwise, -1.
136          */
137         int indexOfMeetingAt( Room *aRoom, QDateTime aAt );
138         //! Provides the index of the Meeting instance which is starts the closest to the specified time.
139         /*!
140          * Provides the index of the Meeting instance which is starts the closest to the specified time.
141          * If there are overlapping meetings then returns one of then undetetministically.
142          * \param aRoom The room which meetings are looked through.
143          * \param aAt Date and time when the meeting is not yet started.
144          * \return Index of the meeting if found; otherwise, -1.
145          */
146         int indexOfMeetingAfter( Room *aRoom, QDateTime aAfter );
147         //! Slot. Fetches meetings from the server.
148         /*!
149          * Slot. Fetches meetings from the server, exact parameters are specified in the parameter list.
150          * \param aFrom Time from when the meetings need to be fetched.
151          * \param aUntil Time until when the meetings need to be fetched.
152          * \param aIn The room which meetings need to be fetched.
153          */
154         void fetchMeetings( const QDateTime &aFrom, const QDateTime &aUntil, const Room *aIn );
155         //! Initialize configuration package.
156         /*!
157          * This method initializes configuration classes and
158          * connects signals from and to the engine.
159          */
160         void initConfiguration();
161         //! Initialize device package.
162         /*!
163          * This method initializes device manager and
164          * connects signals from and to the engine.
165          */
166         void initDevice();
167         //! Initialize communication package.
168         /*!
169          * This method initializes the communication manager and
170          * connects signals from and to the engine.
171          */
172         void initCommunication();
173         //! Initialize user interface package.
174         /*!
175          * This method initializes the user interface and
176          * connects signals from and to the engine. This method
177          * makes the window manager visible and shows weekly
178          * view as the first view.
179          */
180         void initUserInterface();
181         //! Connects signal between objects.
182         /*!
183          * Signals that could not be connected while initializing different
184          * packages are connected here.
185          */
186         void connectSignals();
187         
188         bool isMeetingInList(const QList<Meeting*> &aList, const Meeting *aMeeting);
189
190 private:
191         static QTime endOfTheDay;
192
193         WindowManager *iWindowManager;
194         
195         QTimer *iIdleTimeCounter;
196         Clock *iClock;
197         Configuration *iConfiguration;
198         CommunicationManager *iCommunication;
199         DeviceManager *iDevice;
200         UIManager *iUIManager;
201
202         QTimer *iAutoRefresh;
203
204         QList<Meeting*> iMeetings;
205 };
206
207 #endif /*ENGINE_H_*/