annotate demos/browser/autosaver.d @ 45:71b382c10ef6

add coarse and incomplete QT browser port
author mandel
date Sun, 17 May 2009 18:49:59 +0000
parents
children 7bfd46c330dc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
45
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
1 /****************************************************************************
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
2 **
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
4 ** Contact: Qt Software Information (qt-info@nokia.com)
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
5 **
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
6 ** This file is part of the demonstration applications of the Qt Toolkit.
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
7 **
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
8 ** $QT_BEGIN_LICENSE:LGPL$
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
9 ** Commercial Usage
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
10 ** Licensees holding valid Qt Commercial licenses may use this file in
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
11 ** accordance with the Qt Commercial License Agreement provided with the
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
12 ** Software or, alternatively, in accordance with the terms contained in
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
13 ** a written agreement between you and Nokia.
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
14 **
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
15 ** GNU Lesser General Public License Usage
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
16 ** Alternatively, this file may be used under the terms of the GNU Lesser
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
17 ** General Public License version 2.1 as published by the Free Software
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
18 ** Foundation and appearing in the file LICENSE.LGPL included in the
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
19 ** packaging of this file. Please review the following information to
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
20 ** ensure the GNU Lesser General Public License version 2.1 requirements
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
21 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
22 **
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
23 ** In addition, as a special exception, Nokia gives you certain
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
24 ** additional rights. These rights are described in the Nokia Qt LGPL
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
25 ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
26 ** package.
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
27 **
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
28 ** GNU General Public License Usage
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
29 ** Alternatively, this file may be used under the terms of the GNU
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
30 ** General Public License version 3.0 as published by the Free Software
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
31 ** Foundation and appearing in the file LICENSE.GPL included in the
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
32 ** packaging of this file. Please review the following information to
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
33 ** ensure the GNU General Public License version 3.0 requirements will be
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
34 ** met: http://www.gnu.org/copyleft/gpl.html.
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
35 **
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
36 ** If you are unsure which license is appropriate for your use, please
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
37 ** contact the sales department at qt-sales@nokia.com.
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
38 ** $QT_END_LICENSE$
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
39 **
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
40 ****************************************************************************/
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
41 module autosaver;
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
42
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
43 import QtCore.QObject;
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
44 import QtCore.QBasicTimer;
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
45 import QtCore.QTime;
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
46
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
47 import QtCore.QDir;
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
48 import QtCore.QCoreApplication;
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
49 import QtCore.QMetaObject;
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
50 import QtDebug;
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
51
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
52 const uint AUTOSAVE_IN = 1000 * 3 // seconds
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
53 const uint MAXWAIT = 1000 * 15 // seconds
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
54
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
55 /*
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
56 This class will call the save() slot on the parent object when the parent changes.
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
57 It will wait several seconds after changed() to combining multiple changes and
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
58 prevent continuous writing to disk.
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
59 */
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
60 class AutoSaver : public QObject {
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
61
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
62 Q_OBJECT
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
63
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
64 public:
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
65 this(QObject *parent)
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
66 {
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
67 super(parent);
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
68 Q_ASSERT(parent);
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
69 }
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
70 ~this();
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
71 {
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
72 if (m_timer.isActive())
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
73 qWarning() << "AutoSaver: still active when destroyed, changes not saved.";
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
74 }
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
75 void saveIfNeccessary()
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
76 {
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
77 if (!m_timer.isActive())
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
78 return;
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
79 m_timer.stop();
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
80 m_firstChange = QTime();
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
81 if (!QMetaObject::invokeMethod(parent(), "save", Qt::DirectConnection)) {
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
82 qWarning() << "AutoSaver: error invoking slot save() on parent";
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
83 }
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
84 }
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
85
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
86 public slots:
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
87 void changeOccurred();
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
88 {
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
89 if (m_firstChange.isNull())
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
90 m_firstChange.start();
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
91
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
92 if (m_firstChange.elapsed() > MAXWAIT) {
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
93 saveIfNeccessary();
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
94 } else {
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
95 m_timer.start(AUTOSAVE_IN, this);
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
96 }
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
97 }
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
98
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
99 protected:
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
100 void timerEvent(QTimerEvent *event)
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
101 {
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
102 if (event.timerId() == m_timer.timerId()) {
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
103 saveIfNeccessary();
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
104 } else {
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
105 QObject::timerEvent(event);
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
106 }
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
107 }
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
108
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
109
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
110 private:
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
111 QBasicTimer m_timer;
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
112 QTime m_firstChange;
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
113 }
71b382c10ef6 add coarse and incomplete QT browser port
mandel
parents:
diff changeset
114