#ifndef OPIE_PIM_ACCESS_BACKEND #define OPIE_PIM_ACCESS_BACKEND #include #include #include /** * OPimAccessBackend is the base class * for all private backends * it operates on OPimRecord as the base class * and it's responsible for fast manipulating * the resource the implementation takes care * of */ template class OPimAccessBackend { public: typedef OTemplateBase Frontend; OPimAccessBackend(); virtual ~OPimAccessBackend(); /** * load the resource */ virtual bool load() = 0; /** * reload the resource */ virtual bool reload() = 0; /** * save the resource and * all it's changes */ virtual bool save() = 0; /** * return an array of * all available uids */ virtual QArray allRecords()const = 0; /** * queryByExample for T with the SortOrder * sort */ virtual QArray queryByExample( const T& t, int sort ) = 0; /** * find the OPimRecord with uid @param uid * returns T and T.isEmpty() if nothing was found */ virtual T find(int uid )const = 0; virtual T find(int uid, const QArray& items, uint current, typename Frontend::CacheDirection )const ; /** * clear the back end */ virtual void clear() = 0; /** * add T */ virtual bool add( const T& t ) = 0; /** * remove */ virtual bool remove( int uid ) = 0; /** * replace a record with T.uid() */ virtual bool replace( const T& t ) = 0; /* * setTheFrontEnd!!! */ void setFrontend( Frontend* front ); /** * set the read ahead count */ void setReadAhead( uint count ); protected: void cache( const T& t )const; /** * use a prime number here! */ void setSaneCacheSize( int ); uint readAhead()const; private: Frontend* m_front; uint m_read; }; template OPimAccessBackend::OPimAccessBackend() { m_front = 0l; } template OPimAccessBackend::~OPimAccessBackend() { } template void OPimAccessBackend::setFrontend( Frontend* fr ) { m_front = fr; } template void OPimAccessBackend::cache( const T& t )const { if (m_front ) m_front->cache( t ); } template void OPimAccessBackend::setSaneCacheSize( int size) { if (m_front ) m_front->setSaneCacheSize( size ); } template T OPimAccessBackend::find( int uid, const QArray&, uint, typename Frontend::CacheDirection )const { return find( uid ); } template void OPimAccessBackend::setReadAhead( uint count ) { m_read = count; } template uint OPimAccessBackend::readAhead()const { return m_read; } #endif