summaryrefslogtreecommitdiff
path: root/library/alarmserver.cpp
blob: ba7b015be9f50e504cbbcae9918470070808528d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
/**********************************************************************
** Copyright (C) 2000-2002 Trolltech AS.  All rights reserved.
**
** This file is part of the Qtopia Environment.
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
** See http://www.trolltech.com/gpl/ for GPL licensing information.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
**********************************************************************/

#include "alarmserver.h"

#include <qpe/global.h>
#include <qpe/qpeapplication.h>
#include <qpe/qcopenvelope_qws.h>
#include <qpe/timeconversion.h>

#include <qdir.h>

#include <sys/types.h>
#include <sys/stat.h>
#include <stdlib.h>
#include <unistd.h>


#undef USE_ATD   // not used anymore -- we run opie-alarm on suspend/resume


struct timerEventItem
{
	time_t UTCtime;
	QCString channel, message;
	int data;
	bool operator==( const timerEventItem &right ) const
	{
		return ( UTCtime == right.UTCtime
		         && channel == right.channel
		         && message == right.message
		         && data == right.data );
	}
};

class TimerReceiverObject : public QObject
{
public:
	TimerReceiverObject()
	{ }
	~TimerReceiverObject()
	{ }
	void resetTimer();
	void setTimerEventItem();
	void deleteTimer();
protected:
	void timerEvent( QTimerEvent *te );

#ifdef USE_ATD
private:
	QString atfilename;
#endif
};

TimerReceiverObject *timerEventReceiver = NULL;
QList<timerEventItem> timerEventList;
timerEventItem *nearestTimerEvent = NULL;


// set the timer to go off on the next event in the list
void setNearestTimerEvent()
{
	nearestTimerEvent = NULL;
	QListIterator<timerEventItem> it( timerEventList );
	if ( *it )
		nearestTimerEvent = *it;
	for ( ; *it; ++it )
		if ( (*it)->UTCtime < nearestTimerEvent->UTCtime )
			nearestTimerEvent = *it;
	if (nearestTimerEvent)
		timerEventReceiver->resetTimer();
	else
		timerEventReceiver->deleteTimer();
}


//store current state to file
//Simple implementation. Should run on a timer.

static void saveState()
{
	QString savefilename = Global::applicationFileName( "AlarmServer", "saveFile" );
	if ( timerEventList.isEmpty() ) {
		unlink( savefilename );
		return ;
	}

	QFile savefile(savefilename + ".new");
	if ( savefile.open(IO_WriteOnly) ) {
		QDataStream ds( &savefile );

		//save

		QListIterator<timerEventItem> it( timerEventList );
		for ( ; *it; ++it ) {
			ds << it.current()->UTCtime;
			ds << it.current()->channel;
			ds << it.current()->message;
			ds << it.current()->data;
		}


		savefile.close();
		unlink( savefilename );
		QDir d;
		d.rename(savefilename + ".new", savefilename);

	}
}

/*!
  Sets up the alarm server. Restoring to previous state (session management).
 */
void AlarmServer::initialize()
{
	//read autosave file and put events in timerEventList

	QString savefilename = Global::applicationFileName( "AlarmServer", "saveFile" );

	QFile savefile(savefilename);
	if ( savefile.open(IO_ReadOnly) ) {
		QDataStream ds( &savefile );
		while ( !ds.atEnd() ) {
			timerEventItem *newTimerEventItem = new timerEventItem;
			ds >> newTimerEventItem->UTCtime;
			ds >> newTimerEventItem->channel;
			ds >> newTimerEventItem->message;
			ds >> newTimerEventItem->data;
			timerEventList.append( newTimerEventItem );
		}
		savefile.close();
		if (!timerEventReceiver)
			timerEventReceiver = new TimerReceiverObject;
		setNearestTimerEvent();
	}
}


#ifdef USE_ATD

static const char* atdir = "/var/spool/at/";

static bool triggerAtd( bool writeHWClock = FALSE )
{
	QFile trigger(QString(atdir) + "trigger");
	if ( trigger.open(IO_WriteOnly | IO_Raw) ) {
		if ( trigger.writeBlock("\n", 2) != 2 ) {
			QMessageBox::critical( 0, QObject::tr( "Out of Space" ),
			                       QObject::tr( "Unable to schedule alarm.\nFree some memory and try again." ) );
			trigger.close();
			QFile::remove
				( trigger.name() );
			return FALSE;
		}
		return TRUE;
	}
	return FALSE;
}

#else

static bool writeResumeAt ( time_t wakeup )
{
	FILE *fp = ::fopen ( "/var/run/resumeat", "w" );

	if ( fp ) {
		::fprintf ( fp, "%d\n", (int) wakeup );
		::fclose ( fp );
	}
	else
		qWarning ( "Failed to write wakeup time to /var/run/resumeat" );

	return ( fp );
}

#endif

void TimerReceiverObject::deleteTimer()
{
#ifdef USE_ATD
	if ( !atfilename.isEmpty() ) {
		unlink( atfilename );
		atfilename = QString::null;
		triggerAtd( FALSE );
	}
#else
	writeResumeAt ( 0 );
#endif
}

void TimerReceiverObject::resetTimer()
{
	const int maxsecs = 2147000;
	QDateTime nearest = TimeConversion::fromUTC(nearestTimerEvent->UTCtime);
	QDateTime now = QDateTime::currentDateTime();
	if ( nearest < now )
		nearest = now;
	int secs = TimeConversion::secsTo( now, nearest );
	if ( secs > maxsecs ) {
		// too far for millisecond timing
		secs = maxsecs;
	}

	// System timer (needed so that we wake from deep sleep),
	// from the Epoch in seconds.
	//
	int at_secs = TimeConversion::toUTC(nearest);
	// qDebug("reset timer to %d seconds from Epoch",at_secs);

#ifdef USE_ATD

	QString fn = atdir + QString::number(at_secs) + "."
	             + QString::number(getpid());
	if ( fn != atfilename ) {
		QFile atfile(fn + ".new");
		if ( atfile.open(IO_WriteOnly | IO_Raw) ) {
			int total_written;

			// just wake up and delete the at file
			QString cmd = "#!/bin/sh\nrm " + fn;
			total_written = atfile.writeBlock(cmd.latin1(), cmd.length());
			if ( total_written != int(cmd.length()) ) {
				QMessageBox::critical( 0, tr("Out of Space"),
				                       tr("Unable to schedule alarm.\n"
				                          "Please free up space and try again") );
				atfile.close();
				QFile::remove
					( atfile.name() );
				return ;
			}
			atfile.close();
			unlink( atfilename );
			QDir d;
			d.rename(fn + ".new", fn);
			chmod(fn.latin1(), 0755);
			atfilename = fn;
			triggerAtd( FALSE );
		}
		else {
			qWarning("Cannot open atd file %s", fn.latin1());
		}
	}
#else
    writeResumeAt ( at_secs );

#endif

	// Qt timers (does the actual alarm)
	// from now in milliseconds
	//
	qDebug("AlarmServer waiting %d seconds", secs);
	startTimer( 1000 * secs + 500 );
}

void TimerReceiverObject::timerEvent( QTimerEvent * )
{
	bool needSave = FALSE;
	killTimers();
	if (nearestTimerEvent) {
		if ( nearestTimerEvent->UTCtime
		        <= TimeConversion::toUTC(QDateTime::currentDateTime()) ) {
#ifndef QT_NO_COP
			QCopEnvelope e( nearestTimerEvent->channel,
			                nearestTimerEvent->message );
			e << TimeConversion::fromUTC( nearestTimerEvent->UTCtime )
			<< nearestTimerEvent->data;
#endif

			timerEventList.remove( nearestTimerEvent );
			needSave = TRUE;
		}
		setNearestTimerEvent();
	}
	else {
		resetTimer();
	}
	if ( needSave )
		saveState();
}

/*!
  \class AlarmServer alarmserver.h
  \brief The AlarmServer class allows alarms to be scheduled and unscheduled.

    Applications can schedule alarms with addAlarm() and can
    unschedule alarms with deleteAlarm(). When the time for an alarm
    to go off is reached the specified \link qcop.html QCop\endlink
    message is sent on the specified channel (optionally with
    additional data).

    Scheduling an alarm using this class is important (rather just using
    a QTimer) since the machine may be asleep and needs to get woken up using
    the Linux kernel which implements this at the kernel level to minimize
    battery usage while asleep.

    A small example on how to use AlarmServer.

    First we need to connect a slot the AppMessage QCOP call. appMessage
    will be emitted if QPE/Application/appname gets called.

    \code
     TestApp::TestApp(QWidget *parent, const char* name, WFlags fl )
         : QMainWindow(parent,name,fl){
         connect(qApp,SIGNAL(appMessage(const QCString&,const QByteArray&)),
                 this,SLOT(slotAppMessage(const QCString&,const QByteArray&)));
     }
    \endcode

    To add / delete an alarm, you can use the static method AlarmServer::addAlarm and
    AlarmServer::deleteAlarm. Note that an old (expired) alarm will automatically be deleted
    from the alarmserver list, but a change in timing will have the effect, that both
    alarms will be emitted. So if you change an Alarm be sure to delete the old one!
    @see addAlarm

    \code
       QDateTime oldDt = oldAlarmDateTime();
       QPEApplication::execDialog(ourDlg);
       QDateTime newDt = ourDlg->dateTime();
       if(newDt == oldDt ) return;
       @slash* code is missing for unsetting an alarm *@slash

       AlarmServer::deleteAlarm(oldDt,"QPE/Application/appname","checkAlarm(QDateTime,int)",0);
       AlarmServer::addAlarm(   newDt,"QPE/AlarmServer/appname","checkAlarm(QDateTime,int)",0);

    \endcode

    Now once the Alarm is emitted you need to check the appMessage and then do what you want.
    \code
       void TestApp::slotAppMessage(const QCString& str, const QByteArray& ar ){
           QDataStream stream(ar,IO_ReadOnly);
           if(str == "checkAlarm(QDateTime,int)" ){
              QDateTime dt;
              int a;
              stream >> dt >> a;
              // fire up alarm
           }
       }
    \endcode

    \ingroup qtopiaemb
    \sa QCopEnvelope
    @see QPEApplication::appMessage(const QCString&,const QByteArray&)
    @see OPimMainWindow
    @see ODevice::alarmSound()
    @see Sound::soundAlarm()
*/

/*!
  Schedules an alarm to go off at (or soon after) time \a when. When
  the alarm goes off, the \link qcop.html QCop\endlink \a message will
  be sent to \a channel, with \a data as a parameter.

  If this function is called with exactly the same data as a previous
  call the subsequent call is ignored, so there is only ever one alarm
  with a given set of parameters.

  Once an alarm is emitted. The \a channel with a  \a message will be emitted
  and data will be send.
  The QDateTime and int  are the two parameters included in the QCOP message.
  You can specify channel, message and the integer parameter. QDateTime will be
  the datetime of the QCop call.

  @param when The QDateTime of the alarm
  @param channel The channel which gets called once the alarm is emitted
  @param message The message to be send to the channel
  @param data Additional data as integer

  @see QCopChannel
  \sa deleteAlarm()
*/
void AlarmServer::addAlarm ( QDateTime when, const QCString& channel,
                             const QCString& message, int data)
{
	if ( qApp->type() == QApplication::GuiServer ) {
		bool needSave = FALSE;
		// Here we are the server so either it has been directly called from
		// within the server or it has been sent to us from a client via QCop
		if (!timerEventReceiver)
			timerEventReceiver = new TimerReceiverObject;

		timerEventItem *newTimerEventItem = new timerEventItem;
		newTimerEventItem->UTCtime = TimeConversion::toUTC( when );
		newTimerEventItem->channel = channel;
		newTimerEventItem->message = message;
		newTimerEventItem->data = data;
		// explore the case of already having the event in here...
		QListIterator<timerEventItem> it( timerEventList );
		for ( ; *it; ++it )
			if ( *(*it) == *newTimerEventItem )
				return ;
		// if we made it here, it is okay to add the item...
		timerEventList.append( newTimerEventItem );
		needSave = TRUE;
		// quicker than using setNearestTimerEvent()
		if ( nearestTimerEvent ) {
			if (newTimerEventItem->UTCtime < nearestTimerEvent->UTCtime) {
				nearestTimerEvent = newTimerEventItem;
				timerEventReceiver->killTimers();
				timerEventReceiver->resetTimer();
			}
		}
		else {
			nearestTimerEvent = newTimerEventItem;
			timerEventReceiver->resetTimer();
		}
		if ( needSave )
			saveState();
	}
	else {
#ifndef QT_NO_COP
		QCopEnvelope e( "QPE/System", "addAlarm(QDateTime,QCString,QCString,int)" );
		e << when << channel << message << data;
#endif

	}
}

/*!
  Deletes previously scheduled alarms which match \a when, \a channel,
  \a message, and \a data.

  Passing null values for \a when, \a channel, or for the \link
  qcop.html QCop\endlink \a message, acts as a wildcard meaning "any".
  Similarly, passing -1 for \a data indicates "any".

  If there is no matching alarm, nothing happens.

  \sa addAlarm()

*/
void AlarmServer::deleteAlarm (QDateTime when, const QCString& channel, const QCString& message, int data)
{
	if ( qApp->type() == QApplication::GuiServer) {
		bool needSave = FALSE;
		if ( timerEventReceiver != NULL ) {
			timerEventReceiver->killTimers();

			// iterate over the list of events
			QListIterator<timerEventItem> it( timerEventList );
			time_t deleteTime = TimeConversion::toUTC( when );
			for ( ; *it; ++it ) {
				// if its a match, delete it
				if ( ( (*it)->UTCtime == deleteTime || when.isNull() )
				        && ( channel.isNull() || (*it)->channel == channel )
				        && ( message.isNull() || (*it)->message == message )
				        && ( data == -1 || (*it)->data == data ) ) {
					// if it's first, then we need to update the timer
					if ( (*it) == nearestTimerEvent ) {
						timerEventList.remove(*it);
						setNearestTimerEvent();
					}
					else {
						timerEventList.remove(*it);
					}
					needSave = TRUE;
				}
			}
			if ( nearestTimerEvent )
				timerEventReceiver->resetTimer();
		}
		if ( needSave )
			saveState();
	}
	else {
#ifndef QT_NO_COP
		QCopEnvelope e( "QPE/System", "deleteAlarm(QDateTime,QCString,QCString,int)" );
		e << when << channel << message << data;
#endif

	}
}

/*!
  The implementation depends on the mode of AlarmServer. If the AlarmServer
  uses atd the current system time will be written to the hardware clock.
  If the AlarmServer relies on opie-alarm the time will be written once the
  device gets suspended. opie-alarm is used by the Zaurus, iPAQs and SIMpad
*/
void Global::writeHWClock()
{
#ifdef USE_ATD
	if ( !triggerAtd( TRUE ) ) {
		// atd not running? set it ourselves
		system("/sbin/hwclock --systohc"); // ##### UTC?
	}
#else
	// hwclock is written on suspend
#endif
}