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