author | eilers <eilers> | 2002-11-10 15:41:53 (UTC) |
---|---|---|
committer | eilers <eilers> | 2002-11-10 15:41:53 (UTC) |
commit | b0b173498acde27957f8ed9297bb2ed2346eb700 (patch) (unidiff) | |
tree | 615180f2fda640ae036450701cf7a728461e7055 | |
parent | a982df01d5755c1280c6279df6d46791bd4c9e7e (diff) | |
download | opie-b0b173498acde27957f8ed9297bb2ed2346eb700.zip opie-b0b173498acde27957f8ed9297bb2ed2346eb700.tar.gz opie-b0b173498acde27957f8ed9297bb2ed2346eb700.tar.bz2 |
Bugfixes..
-rw-r--r-- | libopie/pim/ocontactaccessbackend_vcard.cpp | 18 | ||||
-rw-r--r-- | libopie/pim/ocontactaccessbackend_vcard.h | 5 | ||||
-rw-r--r-- | libopie2/opiepim/backend/ocontactaccessbackend_vcard.cpp | 18 | ||||
-rw-r--r-- | libopie2/opiepim/backend/ocontactaccessbackend_vcard.h | 5 |
4 files changed, 36 insertions, 10 deletions
diff --git a/libopie/pim/ocontactaccessbackend_vcard.cpp b/libopie/pim/ocontactaccessbackend_vcard.cpp index 903c0b7..013f3af 100644 --- a/libopie/pim/ocontactaccessbackend_vcard.cpp +++ b/libopie/pim/ocontactaccessbackend_vcard.cpp | |||
@@ -1,42 +1,48 @@ | |||
1 | /* | 1 | /* |
2 | * VCard Backend for the OPIE-Contact Database. | 2 | * VCard Backend for the OPIE-Contact Database. |
3 | * | 3 | * |
4 | * Copyright (C) 2000 Trolltech AS. All rights reserved. | ||
4 | * Copyright (c) 2002 by Stefan Eilers (Eilers.Stefan@epost.de) | 5 | * Copyright (c) 2002 by Stefan Eilers (Eilers.Stefan@epost.de) |
5 | * | 6 | * |
6 | * ===================================================================== | 7 | * ===================================================================== |
7 | *This program is free software; you can redistribute it and/or | 8 | *This program is free software; you can redistribute it and/or |
8 | *modify it under the terms of the GNU Library General Public | 9 | *modify it under the terms of the GNU Library General Public |
9 | * License as published by the Free Software Foundation; either | 10 | * License as published by the Free Software Foundation; either |
10 | * version 2 of the License, or (at your option) any later version. | 11 | * version 2 of the License, or (at your option) any later version. |
11 | * ===================================================================== | 12 | * ===================================================================== |
12 | * ToDo: | 13 | * ToDo: |
13 | * | 14 | * |
14 | * ===================================================================== | 15 | * ===================================================================== |
15 | * Version: $Id$ | 16 | * Version: $Id$ |
16 | * ===================================================================== | 17 | * ===================================================================== |
17 | * History: | 18 | * History: |
18 | * $Log$ | 19 | * $Log$ |
20 | * Revision 1.2 2002/11/10 15:41:53 eilers | ||
21 | * Bugfixes.. | ||
22 | * | ||
19 | * Revision 1.1 2002/11/09 14:34:52 eilers | 23 | * Revision 1.1 2002/11/09 14:34:52 eilers |
20 | * Added VCard Backend. | 24 | * Added VCard Backend. |
21 | * | 25 | * |
22 | */ | 26 | */ |
23 | #include "ocontactaccessbackend_vcard.h" | 27 | #include "ocontactaccessbackend_vcard.h" |
24 | #include "../../library/backend/vobject_p.h" | 28 | #include "../../library/backend/vobject_p.h" |
25 | #include "../../library/backend/qfiledirect_p.h" | 29 | #include "../../library/backend/qfiledirect_p.h" |
26 | 30 | ||
27 | #include <qpe/timeconversion.h> | 31 | #include <qpe/timeconversion.h> |
28 | 32 | ||
29 | #include <qfile.h> | 33 | #include <qfile.h> |
30 | 34 | ||
31 | OContactAccessBackend_VCard::OContactAccessBackend_VCard ( QString , QString filename = 0l ): | 35 | OContactAccessBackend_VCard::OContactAccessBackend_VCard ( QString , QString filename = 0l ): |
32 | m_dirty( false ), | 36 | m_dirty( false ), |
33 | m_file( filename ) | 37 | m_file( filename ) |
34 | {} | 38 | { |
39 | load(); | ||
40 | } | ||
35 | 41 | ||
36 | 42 | ||
37 | bool OContactAccessBackend_VCard::load () | 43 | bool OContactAccessBackend_VCard::load () |
38 | { | 44 | { |
39 | m_map.clear(); | 45 | m_map.clear(); |
40 | m_dirty = false; | 46 | m_dirty = false; |
41 | 47 | ||
42 | VObject* obj = 0l; | 48 | VObject* obj = 0l; |
@@ -81,21 +87,19 @@ bool OContactAccessBackend_VCard::save() | |||
81 | 87 | ||
82 | VObject *obj; | 88 | VObject *obj; |
83 | obj = newVObject( VCCalProp ); | 89 | obj = newVObject( VCCalProp ); |
84 | addPropValue( obj, VCVersionProp, "1.0" ); | 90 | addPropValue( obj, VCVersionProp, "1.0" ); |
85 | 91 | ||
86 | VObject *vo; | 92 | VObject *vo; |
87 | for(QMap<int, OContact>::ConstIterator it=m_map.begin(); it !=m_map.end(); ++it ){ | 93 | for(QMap<int, OContact>::ConstIterator it=m_map.begin(); it !=m_map.end(); ++it ){ |
88 | vo = createVObject( *it ); | 94 | vo = createVObject( *it ); |
89 | addVObjectProp( obj, vo ); | 95 | writeVObject( file.directHandle() , vo ); |
96 | cleanVObject( vo ); | ||
90 | } | 97 | } |
91 | writeVObject( file.directHandle() , obj ); | ||
92 | cleanVObject( obj ); | ||
93 | |||
94 | cleanStrTbl(); | 98 | cleanStrTbl(); |
95 | 99 | ||
96 | m_dirty = false; | 100 | m_dirty = false; |
97 | return true; | 101 | return true; |
98 | 102 | ||
99 | 103 | ||
100 | } | 104 | } |
101 | void OContactAccessBackend_VCard::clear () | 105 | void OContactAccessBackend_VCard::clear () |
@@ -161,16 +165,20 @@ const uint OContactAccessBackend_VCard::querySettings() | |||
161 | return 0; // No search possible | 165 | return 0; // No search possible |
162 | } | 166 | } |
163 | 167 | ||
164 | bool OContactAccessBackend_VCard::hasQuerySettings (uint ) const | 168 | bool OContactAccessBackend_VCard::hasQuerySettings (uint ) const |
165 | { | 169 | { |
166 | return false; // No search possible, therefore all settings invalid ;) | 170 | return false; // No search possible, therefore all settings invalid ;) |
167 | } | 171 | } |
168 | 172 | ||
173 | bool OContactAccessBackend_VCard::wasChangedExternally() | ||
174 | { | ||
175 | return false; // Don't expect concurrent access | ||
176 | } | ||
169 | 177 | ||
170 | // *** Private stuff *** | 178 | // *** Private stuff *** |
171 | 179 | ||
172 | 180 | ||
173 | OContact OContactAccessBackend_VCard::parseVObject( VObject *obj ) | 181 | OContact OContactAccessBackend_VCard::parseVObject( VObject *obj ) |
174 | { | 182 | { |
175 | OContact c; | 183 | OContact c; |
176 | 184 | ||
diff --git a/libopie/pim/ocontactaccessbackend_vcard.h b/libopie/pim/ocontactaccessbackend_vcard.h index c1422b0..177ec24 100644 --- a/libopie/pim/ocontactaccessbackend_vcard.h +++ b/libopie/pim/ocontactaccessbackend_vcard.h | |||
@@ -1,26 +1,30 @@ | |||
1 | /* | 1 | /* |
2 | * VCard Backend for the OPIE-Contact Database. | 2 | * VCard Backend for the OPIE-Contact Database. |
3 | * | 3 | * |
4 | * Copyright (C) 2000 Trolltech AS. All rights reserved. | ||
4 | * Copyright (c) 2002 by Stefan Eilers (Eilers.Stefan@epost.de) | 5 | * Copyright (c) 2002 by Stefan Eilers (Eilers.Stefan@epost.de) |
5 | * | 6 | * |
6 | * ===================================================================== | 7 | * ===================================================================== |
7 | *This program is free software; you can redistribute it and/or | 8 | *This program is free software; you can redistribute it and/or |
8 | *modify it under the terms of the GNU Library General Public | 9 | *modify it under the terms of the GNU Library General Public |
9 | * License as published by the Free Software Foundation; either | 10 | * License as published by the Free Software Foundation; either |
10 | * version 2 of the License, or (at your option) any later version. | 11 | * version 2 of the License, or (at your option) any later version. |
11 | * ===================================================================== | 12 | * ===================================================================== |
12 | * ToDo: | 13 | * ToDo: |
13 | * | 14 | * |
14 | * ===================================================================== | 15 | * ===================================================================== |
15 | * Version: $Id$ | 16 | * Version: $Id$ |
16 | * ===================================================================== | 17 | * ===================================================================== |
17 | * History: | 18 | * History: |
18 | * $Log$ | 19 | * $Log$ |
20 | * Revision 1.2 2002/11/10 15:41:53 eilers | ||
21 | * Bugfixes.. | ||
22 | * | ||
19 | * Revision 1.1 2002/11/09 14:34:52 eilers | 23 | * Revision 1.1 2002/11/09 14:34:52 eilers |
20 | * Added VCard Backend. | 24 | * Added VCard Backend. |
21 | * | 25 | * |
22 | */ | 26 | */ |
23 | #ifndef __OCONTACTACCESSBACKEND_VCARD_H_ | 27 | #ifndef __OCONTACTACCESSBACKEND_VCARD_H_ |
24 | #define __OCONTACTACCESSBACKEND_VCARD_H_ | 28 | #define __OCONTACTACCESSBACKEND_VCARD_H_ |
25 | 29 | ||
26 | #include <opie/ocontact.h> | 30 | #include <opie/ocontact.h> |
@@ -44,16 +48,17 @@ class OContactAccessBackend_VCard : public OContactAccessBackend { | |||
44 | 48 | ||
45 | OContact find ( int uid ) const; | 49 | OContact find ( int uid ) const; |
46 | QArray<int> allRecords() const; | 50 | QArray<int> allRecords() const; |
47 | QArray<int> queryByExample ( const OContact &query, int settings ); | 51 | QArray<int> queryByExample ( const OContact &query, int settings ); |
48 | QArray<int> matchRegexp( const QRegExp &r ) const; | 52 | QArray<int> matchRegexp( const QRegExp &r ) const; |
49 | 53 | ||
50 | const uint querySettings(); | 54 | const uint querySettings(); |
51 | bool hasQuerySettings (uint querySettings) const; | 55 | bool hasQuerySettings (uint querySettings) const; |
56 | bool wasChangedExternally(); | ||
52 | 57 | ||
53 | private: | 58 | private: |
54 | OContact parseVObject( VObject* obj ); | 59 | OContact parseVObject( VObject* obj ); |
55 | VObject* createVObject( const OContact& c ); | 60 | VObject* createVObject( const OContact& c ); |
56 | QDate convVCardDateToDate( const QString& datestr ); | 61 | QDate convVCardDateToDate( const QString& datestr ); |
57 | VObject *safeAddPropValue( VObject *o, const char* prop, const QString& value ); | 62 | VObject *safeAddPropValue( VObject *o, const char* prop, const QString& value ); |
58 | VObject *safeAddProp( VObject* o, const char* prop); | 63 | VObject *safeAddProp( VObject* o, const char* prop); |
59 | 64 | ||
diff --git a/libopie2/opiepim/backend/ocontactaccessbackend_vcard.cpp b/libopie2/opiepim/backend/ocontactaccessbackend_vcard.cpp index 903c0b7..013f3af 100644 --- a/libopie2/opiepim/backend/ocontactaccessbackend_vcard.cpp +++ b/libopie2/opiepim/backend/ocontactaccessbackend_vcard.cpp | |||
@@ -1,42 +1,48 @@ | |||
1 | /* | 1 | /* |
2 | * VCard Backend for the OPIE-Contact Database. | 2 | * VCard Backend for the OPIE-Contact Database. |
3 | * | 3 | * |
4 | * Copyright (C) 2000 Trolltech AS. All rights reserved. | ||
4 | * Copyright (c) 2002 by Stefan Eilers (Eilers.Stefan@epost.de) | 5 | * Copyright (c) 2002 by Stefan Eilers (Eilers.Stefan@epost.de) |
5 | * | 6 | * |
6 | * ===================================================================== | 7 | * ===================================================================== |
7 | *This program is free software; you can redistribute it and/or | 8 | *This program is free software; you can redistribute it and/or |
8 | *modify it under the terms of the GNU Library General Public | 9 | *modify it under the terms of the GNU Library General Public |
9 | * License as published by the Free Software Foundation; either | 10 | * License as published by the Free Software Foundation; either |
10 | * version 2 of the License, or (at your option) any later version. | 11 | * version 2 of the License, or (at your option) any later version. |
11 | * ===================================================================== | 12 | * ===================================================================== |
12 | * ToDo: | 13 | * ToDo: |
13 | * | 14 | * |
14 | * ===================================================================== | 15 | * ===================================================================== |
15 | * Version: $Id$ | 16 | * Version: $Id$ |
16 | * ===================================================================== | 17 | * ===================================================================== |
17 | * History: | 18 | * History: |
18 | * $Log$ | 19 | * $Log$ |
20 | * Revision 1.2 2002/11/10 15:41:53 eilers | ||
21 | * Bugfixes.. | ||
22 | * | ||
19 | * Revision 1.1 2002/11/09 14:34:52 eilers | 23 | * Revision 1.1 2002/11/09 14:34:52 eilers |
20 | * Added VCard Backend. | 24 | * Added VCard Backend. |
21 | * | 25 | * |
22 | */ | 26 | */ |
23 | #include "ocontactaccessbackend_vcard.h" | 27 | #include "ocontactaccessbackend_vcard.h" |
24 | #include "../../library/backend/vobject_p.h" | 28 | #include "../../library/backend/vobject_p.h" |
25 | #include "../../library/backend/qfiledirect_p.h" | 29 | #include "../../library/backend/qfiledirect_p.h" |
26 | 30 | ||
27 | #include <qpe/timeconversion.h> | 31 | #include <qpe/timeconversion.h> |
28 | 32 | ||
29 | #include <qfile.h> | 33 | #include <qfile.h> |
30 | 34 | ||
31 | OContactAccessBackend_VCard::OContactAccessBackend_VCard ( QString , QString filename = 0l ): | 35 | OContactAccessBackend_VCard::OContactAccessBackend_VCard ( QString , QString filename = 0l ): |
32 | m_dirty( false ), | 36 | m_dirty( false ), |
33 | m_file( filename ) | 37 | m_file( filename ) |
34 | {} | 38 | { |
39 | load(); | ||
40 | } | ||
35 | 41 | ||
36 | 42 | ||
37 | bool OContactAccessBackend_VCard::load () | 43 | bool OContactAccessBackend_VCard::load () |
38 | { | 44 | { |
39 | m_map.clear(); | 45 | m_map.clear(); |
40 | m_dirty = false; | 46 | m_dirty = false; |
41 | 47 | ||
42 | VObject* obj = 0l; | 48 | VObject* obj = 0l; |
@@ -81,21 +87,19 @@ bool OContactAccessBackend_VCard::save() | |||
81 | 87 | ||
82 | VObject *obj; | 88 | VObject *obj; |
83 | obj = newVObject( VCCalProp ); | 89 | obj = newVObject( VCCalProp ); |
84 | addPropValue( obj, VCVersionProp, "1.0" ); | 90 | addPropValue( obj, VCVersionProp, "1.0" ); |
85 | 91 | ||
86 | VObject *vo; | 92 | VObject *vo; |
87 | for(QMap<int, OContact>::ConstIterator it=m_map.begin(); it !=m_map.end(); ++it ){ | 93 | for(QMap<int, OContact>::ConstIterator it=m_map.begin(); it !=m_map.end(); ++it ){ |
88 | vo = createVObject( *it ); | 94 | vo = createVObject( *it ); |
89 | addVObjectProp( obj, vo ); | 95 | writeVObject( file.directHandle() , vo ); |
96 | cleanVObject( vo ); | ||
90 | } | 97 | } |
91 | writeVObject( file.directHandle() , obj ); | ||
92 | cleanVObject( obj ); | ||
93 | |||
94 | cleanStrTbl(); | 98 | cleanStrTbl(); |
95 | 99 | ||
96 | m_dirty = false; | 100 | m_dirty = false; |
97 | return true; | 101 | return true; |
98 | 102 | ||
99 | 103 | ||
100 | } | 104 | } |
101 | void OContactAccessBackend_VCard::clear () | 105 | void OContactAccessBackend_VCard::clear () |
@@ -161,16 +165,20 @@ const uint OContactAccessBackend_VCard::querySettings() | |||
161 | return 0; // No search possible | 165 | return 0; // No search possible |
162 | } | 166 | } |
163 | 167 | ||
164 | bool OContactAccessBackend_VCard::hasQuerySettings (uint ) const | 168 | bool OContactAccessBackend_VCard::hasQuerySettings (uint ) const |
165 | { | 169 | { |
166 | return false; // No search possible, therefore all settings invalid ;) | 170 | return false; // No search possible, therefore all settings invalid ;) |
167 | } | 171 | } |
168 | 172 | ||
173 | bool OContactAccessBackend_VCard::wasChangedExternally() | ||
174 | { | ||
175 | return false; // Don't expect concurrent access | ||
176 | } | ||
169 | 177 | ||
170 | // *** Private stuff *** | 178 | // *** Private stuff *** |
171 | 179 | ||
172 | 180 | ||
173 | OContact OContactAccessBackend_VCard::parseVObject( VObject *obj ) | 181 | OContact OContactAccessBackend_VCard::parseVObject( VObject *obj ) |
174 | { | 182 | { |
175 | OContact c; | 183 | OContact c; |
176 | 184 | ||
diff --git a/libopie2/opiepim/backend/ocontactaccessbackend_vcard.h b/libopie2/opiepim/backend/ocontactaccessbackend_vcard.h index c1422b0..177ec24 100644 --- a/libopie2/opiepim/backend/ocontactaccessbackend_vcard.h +++ b/libopie2/opiepim/backend/ocontactaccessbackend_vcard.h | |||
@@ -1,26 +1,30 @@ | |||
1 | /* | 1 | /* |
2 | * VCard Backend for the OPIE-Contact Database. | 2 | * VCard Backend for the OPIE-Contact Database. |
3 | * | 3 | * |
4 | * Copyright (C) 2000 Trolltech AS. All rights reserved. | ||
4 | * Copyright (c) 2002 by Stefan Eilers (Eilers.Stefan@epost.de) | 5 | * Copyright (c) 2002 by Stefan Eilers (Eilers.Stefan@epost.de) |
5 | * | 6 | * |
6 | * ===================================================================== | 7 | * ===================================================================== |
7 | *This program is free software; you can redistribute it and/or | 8 | *This program is free software; you can redistribute it and/or |
8 | *modify it under the terms of the GNU Library General Public | 9 | *modify it under the terms of the GNU Library General Public |
9 | * License as published by the Free Software Foundation; either | 10 | * License as published by the Free Software Foundation; either |
10 | * version 2 of the License, or (at your option) any later version. | 11 | * version 2 of the License, or (at your option) any later version. |
11 | * ===================================================================== | 12 | * ===================================================================== |
12 | * ToDo: | 13 | * ToDo: |
13 | * | 14 | * |
14 | * ===================================================================== | 15 | * ===================================================================== |
15 | * Version: $Id$ | 16 | * Version: $Id$ |
16 | * ===================================================================== | 17 | * ===================================================================== |
17 | * History: | 18 | * History: |
18 | * $Log$ | 19 | * $Log$ |
20 | * Revision 1.2 2002/11/10 15:41:53 eilers | ||
21 | * Bugfixes.. | ||
22 | * | ||
19 | * Revision 1.1 2002/11/09 14:34:52 eilers | 23 | * Revision 1.1 2002/11/09 14:34:52 eilers |
20 | * Added VCard Backend. | 24 | * Added VCard Backend. |
21 | * | 25 | * |
22 | */ | 26 | */ |
23 | #ifndef __OCONTACTACCESSBACKEND_VCARD_H_ | 27 | #ifndef __OCONTACTACCESSBACKEND_VCARD_H_ |
24 | #define __OCONTACTACCESSBACKEND_VCARD_H_ | 28 | #define __OCONTACTACCESSBACKEND_VCARD_H_ |
25 | 29 | ||
26 | #include <opie/ocontact.h> | 30 | #include <opie/ocontact.h> |
@@ -44,16 +48,17 @@ class OContactAccessBackend_VCard : public OContactAccessBackend { | |||
44 | 48 | ||
45 | OContact find ( int uid ) const; | 49 | OContact find ( int uid ) const; |
46 | QArray<int> allRecords() const; | 50 | QArray<int> allRecords() const; |
47 | QArray<int> queryByExample ( const OContact &query, int settings ); | 51 | QArray<int> queryByExample ( const OContact &query, int settings ); |
48 | QArray<int> matchRegexp( const QRegExp &r ) const; | 52 | QArray<int> matchRegexp( const QRegExp &r ) const; |
49 | 53 | ||
50 | const uint querySettings(); | 54 | const uint querySettings(); |
51 | bool hasQuerySettings (uint querySettings) const; | 55 | bool hasQuerySettings (uint querySettings) const; |
56 | bool wasChangedExternally(); | ||
52 | 57 | ||
53 | private: | 58 | private: |
54 | OContact parseVObject( VObject* obj ); | 59 | OContact parseVObject( VObject* obj ); |
55 | VObject* createVObject( const OContact& c ); | 60 | VObject* createVObject( const OContact& c ); |
56 | QDate convVCardDateToDate( const QString& datestr ); | 61 | QDate convVCardDateToDate( const QString& datestr ); |
57 | VObject *safeAddPropValue( VObject *o, const char* prop, const QString& value ); | 62 | VObject *safeAddPropValue( VObject *o, const char* prop, const QString& value ); |
58 | VObject *safeAddProp( VObject* o, const char* prop); | 63 | VObject *safeAddProp( VObject* o, const char* prop); |
59 | 64 | ||