summaryrefslogtreecommitdiff
path: root/libopie/tododb.cpp
Unidiff
Diffstat (limited to 'libopie/tododb.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/tododb.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/libopie/tododb.cpp b/libopie/tododb.cpp
index 7814c4f..3f6dc30 100644
--- a/libopie/tododb.cpp
+++ b/libopie/tododb.cpp
@@ -1,226 +1,227 @@
1 1
2#include <qdir.h> 2#include <qdir.h>
3#include <opie/tododb.h> 3#include <opie/tododb.h>
4#include <opie/xmltree.h> 4#include <opie/xmltree.h>
5#include <opie/todoresource.h> 5#include <opie/todoresource.h>
6#include <qpe/palmtoprecord.h> 6#include <qpe/palmtoprecord.h>
7#include <qpe/global.h> 7#include <qpe/global.h>
8 8
9namespace { 9namespace {
10 10
11class FileToDoResource : public ToDoResource { 11class FileToDoResource : public ToDoResource {
12public: 12public:
13 FileToDoResource() {}; 13 FileToDoResource() {};
14 bool save(const QString &name, const QValueList<ToDoEvent> &m_todos ){ 14 bool save(const QString &name, const QValueList<ToDoEvent> &m_todos ){
15 // prepare the XML 15 // prepare the XML
16 XMLElement *tasks = new XMLElement( ); 16 XMLElement *tasks = new XMLElement( );
17 tasks->setTagName("Tasks" ); 17 tasks->setTagName("Tasks" );
18 for( QValueList<ToDoEvent>::ConstIterator it = m_todos.begin(); it != m_todos.end(); ++it ){ 18 for( QValueList<ToDoEvent>::ConstIterator it = m_todos.begin(); it != m_todos.end(); ++it ){
19 XMLElement::AttributeMap map; 19 XMLElement::AttributeMap map;
20 XMLElement *task = new XMLElement(); 20 XMLElement *task = new XMLElement();
21 map.insert( "Completed", QString::number((int)(*it).isCompleted() ) ); 21 map.insert( "Completed", QString::number((int)(*it).isCompleted() ) );
22 map.insert( "HasDate", QString::number((int)(*it).hasDate() ) ); 22 map.insert( "HasDate", QString::number((int)(*it).hasDate() ) );
23 map.insert( "Priority", QString::number( (*it).priority() ) ); 23 map.insert( "Priority", QString::number( (*it).priority() ) );
24 QArray<int> arrat = (*it).categories(); 24 QArray<int> arrat = (*it).categories();
25 QString attr; 25 QString attr;
26 for(uint i=0; i < arrat.count(); i++ ){ 26 for(uint i=0; i < arrat.count(); i++ ){
27 attr.append(QString::number(arrat[i])+";" ); 27 attr.append(QString::number(arrat[i])+";" );
28 } 28 }
29 if(!attr.isEmpty() ) // remove the last ; 29 if(!attr.isEmpty() ) // remove the last ;
30 attr.remove(attr.length()-1, 1 ); 30 attr.remove(attr.length()-1, 1 );
31 map.insert( "Categories", attr ); 31 map.insert( "Categories", attr );
32 //else 32 //else
33 //map.insert( "Categories", QString::null ); 33 //map.insert( "Categories", QString::null );
34 map.insert( "Description", (*it).description() ); 34 map.insert( "Description", (*it).description() );
35 if( (*it).hasDate() ){ 35 if( (*it).hasDate() ){
36 map.insert("DateYear", QString::number( (*it).date().year() ) ); 36 map.insert("DateYear", QString::number( (*it).date().year() ) );
37 map.insert("DateMonth", QString::number( (*it).date().month() ) ); 37 map.insert("DateMonth", QString::number( (*it).date().month() ) );
38 map.insert("DateDay", QString::number( (*it).date().day() ) ); 38 map.insert("DateDay", QString::number( (*it).date().day() ) );
39 } 39 }
40 map.insert("Uid", QString::number( (*it).uid() ) ); 40 map.insert("Uid", QString::number( (*it).uid() ) );
41 task->setTagName("Task" ); 41 task->setTagName("Task" );
42 task->setAttributes( map ); 42 task->setAttributes( map );
43 tasks->appendChild(task); 43 tasks->appendChild(task);
44 } 44 }
45 QFile file( name); 45 QFile file( name);
46 if( file.open(IO_WriteOnly ) ){ 46 if( file.open(IO_WriteOnly ) ){
47 QTextStream stream(&file ); 47 QTextStream stream(&file );
48 stream << "<!DOCTYPE Tasks>" << endl; 48 stream << "<!DOCTYPE Tasks>" << endl;
49 tasks->save(stream ); 49 tasks->save(stream );
50 delete tasks; 50 delete tasks;
51 stream << "</Tasks>" << endl;
51 file.close(); 52 file.close();
52 return true; 53 return true;
53 } 54 }
54 return false; 55 return false;
55 } 56 }
56 QValueList<ToDoEvent> load( const QString &name ){ 57 QValueList<ToDoEvent> load( const QString &name ){
57 qWarning("loading tododb" ); 58 qWarning("loading tododb" );
58 QValueList<ToDoEvent> m_todos; 59 QValueList<ToDoEvent> m_todos;
59 XMLElement *root = XMLElement::load( name ); 60 XMLElement *root = XMLElement::load( name );
60 if(root != 0l ){ // start parsing 61 if(root != 0l ){ // start parsing
61 qWarning("ToDoDB::load tagName(): %s", root->tagName().latin1() ); 62 qWarning("ToDoDB::load tagName(): %s", root->tagName().latin1() );
62 //if( root->tagName() == QString::fromLatin1("Tasks" ) ){// Start 63 //if( root->tagName() == QString::fromLatin1("Tasks" ) ){// Start
63 XMLElement *element = root->firstChild(); 64 XMLElement *element = root->firstChild();
64 element = element->firstChild(); 65 element = element->firstChild();
65 while( element ){ 66 while( element ){
66 qWarning("ToDoDB::load element tagName() : %s", element->tagName().latin1() ); 67 qWarning("ToDoDB::load element tagName() : %s", element->tagName().latin1() );
67 QString dummy; 68 QString dummy;
68 ToDoEvent event; 69 ToDoEvent event;
69 bool ok; 70 bool ok;
70 int dumInt; 71 int dumInt;
71 // completed 72 // completed
72 dummy = element->attribute("Completed" ); 73 dummy = element->attribute("Completed" );
73 dumInt = dummy.toInt(&ok ); 74 dumInt = dummy.toInt(&ok );
74 if(ok ) event.setCompleted( dumInt == 0 ? false : true ); 75 if(ok ) event.setCompleted( dumInt == 0 ? false : true );
75 // hasDate 76 // hasDate
76 dummy = element->attribute("HasDate" ); 77 dummy = element->attribute("HasDate" );
77 dumInt = dummy.toInt(&ok ); 78 dumInt = dummy.toInt(&ok );
78 if(ok ) event.setHasDate( dumInt == 0 ? false: true ); 79 if(ok ) event.setHasDate( dumInt == 0 ? false: true );
79 // set the date 80 // set the date
80 bool hasDa = dumInt; 81 bool hasDa = dumInt;
81 if ( hasDa ) { //parse the date 82 if ( hasDa ) { //parse the date
82 int year, day, month = 0; 83 int year, day, month = 0;
83 year = day = month; 84 year = day = month;
84 // year 85 // year
85 dummy = element->attribute("DateYear" ); 86 dummy = element->attribute("DateYear" );
86 dumInt = dummy.toInt(&ok ); 87 dumInt = dummy.toInt(&ok );
87 if( ok ) year = dumInt; 88 if( ok ) year = dumInt;
88 // month 89 // month
89 dummy = element->attribute("DateMonth" ); 90 dummy = element->attribute("DateMonth" );
90 dumInt = dummy.toInt(&ok ); 91 dumInt = dummy.toInt(&ok );
91 if(ok ) month = dumInt; 92 if(ok ) month = dumInt;
92 dummy = element->attribute("DateDay" ); 93 dummy = element->attribute("DateDay" );
93 dumInt = dummy.toInt(&ok ); 94 dumInt = dummy.toInt(&ok );
94 if(ok ) day = dumInt; 95 if(ok ) day = dumInt;
95 // set the date 96 // set the date
96 QDate date( year, month, day ); 97 QDate date( year, month, day );
97 event.setDate( date); 98 event.setDate( date);
98 } 99 }
99 dummy = element->attribute("Priority" ); 100 dummy = element->attribute("Priority" );
100 dumInt = dummy.toInt(&ok ); 101 dumInt = dummy.toInt(&ok );
101 if(!ok ) dumInt = ToDoEvent::NORMAL; 102 if(!ok ) dumInt = ToDoEvent::NORMAL;
102 event.setPriority( dumInt ); 103 event.setPriority( dumInt );
103 //description 104 //description
104 dummy = element->attribute("Description" ); 105 dummy = element->attribute("Description" );
105 event.setDescription( dummy ); 106 event.setDescription( dummy );
106 // category 107 // category
107 dummy = element->attribute("Categories" ); 108 dummy = element->attribute("Categories" );
108 QStringList ids = QStringList::split(";", dummy ); 109 QStringList ids = QStringList::split(";", dummy );
109 event.setCategories( ids ); 110 event.setCategories( ids );
110 111
111 //uid 112 //uid
112 dummy = element->attribute("Uid" ); 113 dummy = element->attribute("Uid" );
113 dumInt = dummy.toInt(&ok ); 114 dumInt = dummy.toInt(&ok );
114 if(ok ) event.setUid( dumInt ); 115 if(ok ) event.setUid( dumInt );
115 m_todos.append( event ); 116 m_todos.append( event );
116 element = element->nextChild(); // next element 117 element = element->nextChild(); // next element
117 } 118 }
118 //} 119 //}
119 }else { 120 }else {
120 qWarning("could not load" ); 121 qWarning("could not load" );
121 } 122 }
122 delete root; 123 delete root;
123 qWarning("returning" ); 124 qWarning("returning" );
124 return m_todos; 125 return m_todos;
125 } 126 }
126}; 127};
127 128
128} 129}
129 130
130ToDoDB::ToDoDB(const QString &fileName, ToDoResource *res ){ 131ToDoDB::ToDoDB(const QString &fileName, ToDoResource *res ){
131 m_fileName = fileName; 132 m_fileName = fileName;
132 if( fileName.isEmpty() && res == 0 ){ 133 if( fileName.isEmpty() && res == 0 ){
133 m_fileName = Global::applicationFileName("todolist","todolist.xml"); 134 m_fileName = Global::applicationFileName("todolist","todolist.xml");
134 res = new FileToDoResource(); 135 res = new FileToDoResource();
135 //qWarning("%s", m_fileName.latin1() ); 136 //qWarning("%s", m_fileName.latin1() );
136 }else if(res == 0 ){ // let's create a ToDoResource for xml 137 }else if(res == 0 ){ // let's create a ToDoResource for xml
137 res = new FileToDoResource(); 138 res = new FileToDoResource();
138 } 139 }
139 m_res = res; 140 m_res = res;
140 load(); 141 load();
141} 142}
142ToDoResource* ToDoDB::resource(){ 143ToDoResource* ToDoDB::resource(){
143 return m_res; 144 return m_res;
144}; 145};
145void ToDoDB::setResource( ToDoResource *res ) 146void ToDoDB::setResource( ToDoResource *res )
146{ 147{
147 delete m_res; 148 delete m_res;
148 m_res = res; 149 m_res = res;
149} 150}
150ToDoDB::~ToDoDB() 151ToDoDB::~ToDoDB()
151{ 152{
152 delete m_res; 153 delete m_res;
153} 154}
154QValueList<ToDoEvent> ToDoDB::effectiveToDos(const QDate &from, const QDate &to, 155QValueList<ToDoEvent> ToDoDB::effectiveToDos(const QDate &from, const QDate &to,
155 bool all ) 156 bool all )
156{ 157{
157 QValueList<ToDoEvent> events; 158 QValueList<ToDoEvent> events;
158 for( QValueList<ToDoEvent>::Iterator it = m_todos.begin(); it!= m_todos.end(); ++it ){ 159 for( QValueList<ToDoEvent>::Iterator it = m_todos.begin(); it!= m_todos.end(); ++it ){
159 if( (*it).hasDate() ){ 160 if( (*it).hasDate() ){
160 if( (*it).date() >= from && (*it).date() <= to ) 161 if( (*it).date() >= from && (*it).date() <= to )
161 events.append( (*it) ); 162 events.append( (*it) );
162 }else if( all ){ 163 }else if( all ){
163 events.append( (*it) ); 164 events.append( (*it) );
164 } 165 }
165 } 166 }
166 return events; 167 return events;
167} 168}
168QValueList<ToDoEvent> ToDoDB::effectiveToDos(const QDate &from, 169QValueList<ToDoEvent> ToDoDB::effectiveToDos(const QDate &from,
169 bool all) 170 bool all)
170{ 171{
171 return effectiveToDos( from, QDate::currentDate(), all ); 172 return effectiveToDos( from, QDate::currentDate(), all );
172} 173}
173QValueList<ToDoEvent> ToDoDB::overDue() 174QValueList<ToDoEvent> ToDoDB::overDue()
174{ 175{
175 QValueList<ToDoEvent> events; 176 QValueList<ToDoEvent> events;
176 for( QValueList<ToDoEvent>::Iterator it = m_todos.begin(); it!= m_todos.end(); ++it ){ 177 for( QValueList<ToDoEvent>::Iterator it = m_todos.begin(); it!= m_todos.end(); ++it ){
177 if( (*it).isOverdue() ) 178 if( (*it).isOverdue() )
178 events.append((*it) ); 179 events.append((*it) );
179 } 180 }
180 return events; 181 return events;
181} 182}
182QValueList<ToDoEvent> ToDoDB::rawToDos() 183QValueList<ToDoEvent> ToDoDB::rawToDos()
183{ 184{
184 return m_todos; 185 return m_todos;
185} 186}
186void ToDoDB::addEvent( const ToDoEvent &event ) 187void ToDoDB::addEvent( const ToDoEvent &event )
187{ 188{
188 m_todos.append( event ); 189 m_todos.append( event );
189} 190}
190void ToDoDB::editEvent( const ToDoEvent &event ) 191void ToDoDB::editEvent( const ToDoEvent &event )
191{ 192{
192 m_todos.remove( event ); 193 m_todos.remove( event );
193 m_todos.append( event ); 194 m_todos.append( event );
194} 195}
195void ToDoDB::removeEvent( const ToDoEvent &event ) 196void ToDoDB::removeEvent( const ToDoEvent &event )
196{ 197{
197 m_todos.remove( event ); 198 m_todos.remove( event );
198} 199}
199void ToDoDB::reload() 200void ToDoDB::reload()
200{ 201{
201 load(); 202 load();
202} 203}
203void ToDoDB::setFileName(const QString &file ) 204void ToDoDB::setFileName(const QString &file )
204{ 205{
205 m_fileName =file; 206 m_fileName =file;
206} 207}
207QString ToDoDB::fileName()const 208QString ToDoDB::fileName()const
208{ 209{
209 return m_fileName; 210 return m_fileName;
210} 211}
211void ToDoDB::load() 212void ToDoDB::load()
212{ 213{
213 m_todos = m_res->load( m_fileName ); 214 m_todos = m_res->load( m_fileName );
214} 215}
215bool ToDoDB::save() 216bool ToDoDB::save()
216{ 217{
217 return m_res->save( m_fileName, m_todos ); 218 return m_res->save( m_fileName, m_todos );
218} 219}
219 220
220 221
221 222
222 223
223 224
224 225
225 226
226 227