blob: f2a241d83d8bd677437aed4b120d6567779d7f36 (
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
|
#ifndef OPIE_PIM_ACCESS_TEMPLATE_H
#define OPIE_PIM_ACCESS_TEMPLATE_H
#include <qarray.h>
#include <opie/opimrecord.h>
#include <opie/opimaccessbackend.h>
#include <opie/orecordlist.h>
template <class T = OPimRecord >
class OPimAccessTemplate {
public:
typedef ORecordList<T> List;
typedef OPimAccessBackend<T> BackEnd;
OPimAccessTemplate( BackEnd* end)
: m_backEnd( end ) {
}
~OPimAccessTemplate() {
delete m_backEnd;
}
virtual void load() {
m_backEnd->load();
}
virtual void reload() {
m_backEnd->reload();
}
virtual void save() {
m_backEnd->save();
}
/*
*do array to Records conversion
* QArray<int> ids
*/
virtual List allRecords()const {
QArray<int> ints = m_backEnd->allRecords();
List lis( ints, this );
return lis;
}
virtual List queryByExample( const T& t, int sortOrder ) {
QArray<int> ints = m_backEnd->query( t, sortOrder );
List lis( ints, this );
return lis;
}
/* implement QCache here */
virtual T find( int uid ) {
T t = m_backEnd->find( uid );
return t;
}
/* invalidate cache here */
virtual void clear() {
invalidateCache();
m_backEnd->clear();
}
virtual bool add( const T& t ) {
return m_backEnd->add( t );
}
/* only the uid matters */
virtual bool remove( const T& t ) {
/* remove from cache */
return m_backEnd->remove( t.uid() );
}
virtual bool remove( int uid ) {
/* remove from cache */
return m_backEnd->remove(uid);
}
virtual bool replace( const T& t) {
return m_backEnd->replace( t );
}
protected:
void invalidateCache() {
}
BackEnd* m_backEnd;
};
#endif
|