summaryrefslogtreecommitdiff
path: root/libopie2
authoreilers <eilers>2004-05-16 16:03:30 (UTC)
committer eilers <eilers>2004-05-16 16:03:30 (UTC)
commit52691aca593d6b321597d26467b9e9af9ec0b6fe (patch) (side-by-side diff)
treede3091da50aed7ed265f3f50f884dc7bbfa84f2b /libopie2
parent680c8c7a6db8f5b79a6541629f54465709b79b02 (diff)
downloadopie-52691aca593d6b321597d26467b9e9af9ec0b6fe.zip
opie-52691aca593d6b321597d26467b9e9af9ec0b6fe.tar.gz
opie-52691aca593d6b321597d26467b9e9af9ec0b6fe.tar.bz2
Backendfactory allows to request the default database style which is defined
by Settings/pimaccess.conf. This will be used by the OPimAccessFactory .. see next commit..
Diffstat (limited to 'libopie2') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiepim/backend/obackendfactory.h61
-rw-r--r--libopie2/opiepim/core/opimglobal.h2
2 files changed, 46 insertions, 17 deletions
diff --git a/libopie2/opiepim/backend/obackendfactory.h b/libopie2/opiepim/backend/obackendfactory.h
index d101373..d8caa80 100644
--- a/libopie2/opiepim/backend/obackendfactory.h
+++ b/libopie2/opiepim/backend/obackendfactory.h
@@ -78,7 +78,7 @@ class OBackendFactory
OBackendFactory() {};
/**
- * Returns a backend implementation
+ * Returns a selected backend implementation
* @param type the type of the backend
* @param database the type of the used database
* @param appName The name of your application. It will be passed on to the backend.
@@ -125,6 +125,43 @@ class OBackendFactory
}
+
+ static OPimGlobal::DatabaseStyle defaultDB( OPimGlobal::PimType backend ){
+ QString group_name;
+ switch ( backend ){
+ case OPimGlobal::TODOLIST:
+ group_name = "todo";
+ break;
+ case OPimGlobal::CONTACTLIST:
+ group_name = "contact";
+ break;
+ case OPimGlobal::DATEBOOK:
+ group_name = "datebook";
+ break;
+ default:
+ group_name = "unknown";
+ }
+
+ Config config( "pimaccess" );
+ config.setGroup ( group_name );
+ QString db_String = config.readEntry( "usebackend" );
+
+ QAsciiDict<int> dictDbTypes( OPimGlobal::_END_DatabaseStyle );
+ dictDbTypes.setAutoDelete( TRUE );
+
+ dictDbTypes.insert( "xml", new int (OPimGlobal::XML) );
+ dictDbTypes.insert( "sql", new int (OPimGlobal::SQL) );
+ dictDbTypes.insert( "vcard", new int (OPimGlobal::VCARD) );
+
+ int* db_find = dictDbTypes[ db_String ];
+
+ if ( !db_find )
+ return OPimGlobal::UNKNOWN;
+
+ return (OPimGlobal::DatabaseStyle) *db_find;
+ }
+
+
/**
* Returns the default backend implementation for backendName. Which one is used, is defined
* by the configfile "pimaccess.conf".
@@ -140,25 +177,15 @@ class OBackendFactory
dictBackends.insert( "contact", new int (OPimGlobal::CONTACTLIST) );
dictBackends.insert( "datebook", new int(OPimGlobal::DATEBOOK) );
- QAsciiDict<int> dictDbTypes( OPimGlobal::_END_DatabaseStyle );
- dictDbTypes.setAutoDelete( TRUE );
-
- dictDbTypes.insert( "xml", new int (OPimGlobal::XML) );
- dictDbTypes.insert( "sql", new int (OPimGlobal::SQL) );
- dictDbTypes.insert( "vcard", new int (OPimGlobal::VCARD) );
-
- Config config( "pimaccess" );
- config.setGroup ( backendName );
- QString db_String = config.readEntry( "usebackend" );
-
- int* db_find = dictDbTypes[ db_String ];
int* backend_find = dictBackends[ backendName ];
- if ( !backend_find || !db_find ) return NULL;
+ if ( !backend_find ) return NULL;
+
+ OPimGlobal::DatabaseStyle style = defaultDB( static_cast<OPimGlobal::PimType>( *backend_find ) );
- qDebug( "OBackendFactory::Default -> Backend is %s, Database is %s", backendName.latin1(),
- db_String.latin1() );
+ qDebug( "OBackendFactory::Default -> Backend is %s, Database is %d", backendName.latin1(),
+ style );
- return create( (OPimGlobal::PimType) *backend_find, (OPimGlobal::DatabaseStyle) *db_find, appName );
+ return create( (OPimGlobal::PimType) *backend_find, style, appName );
}
private:
diff --git a/libopie2/opiepim/core/opimglobal.h b/libopie2/opiepim/core/opimglobal.h
index 2d336b4..d56c9be 100644
--- a/libopie2/opiepim/core/opimglobal.h
+++ b/libopie2/opiepim/core/opimglobal.h
@@ -46,6 +46,8 @@ class OPimGlobal{
};
enum DatabaseStyle {
+ DEFAULT, // Use default Database
+ UNKNOWN, // Unknown database style
XML,
SQL,
VCARD,