From a7001dfd139fbb9d5cf5434fc40370f8da0cf04c Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sat, 28 Jul 2012 12:35:00 +0000 Subject: perversive error reporting schema in DATABASELINK removed git-svn-id: http://svn.miranda-ng.org/main/trunk@1223 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Dbx_mmap_SA/src/init.cpp | 77 +++++++++++----------------------------- 1 file changed, 21 insertions(+), 56 deletions(-) (limited to 'plugins/Dbx_mmap_SA/src/init.cpp') diff --git a/plugins/Dbx_mmap_SA/src/init.cpp b/plugins/Dbx_mmap_SA/src/init.cpp index a59ae1bc09..f7d96822a8 100644 --- a/plugins/Dbx_mmap_SA/src/init.cpp +++ b/plugins/Dbx_mmap_SA/src/init.cpp @@ -49,56 +49,25 @@ LIST g_Dbs(1, (LIST::FTSortFunc)HandleKeySort); ///////////////////////////////////////////////////////////////////////////////////////// // returns 0 if the profile is created, EMKPRF* -static int makeDatabase(const TCHAR *profile, int *error) +static int makeDatabase(const TCHAR *profile) { - CDdxMmapSA *tmp = new CDdxMmapSA(profile); - if (tmp->Create() == ERROR_SUCCESS) { - tmp->CreateDbHeaders(); - delete tmp; + std::auto_ptr db( new CDdxMmapSA(profile)); + if (db->Create() == ERROR_SUCCESS) { + db->CreateDbHeaders(); return 0; } - delete tmp; - if (error != NULL) *error = EMKPRF_CREATEFAILED; - return 1; + + return EMKPRF_CREATEFAILED; } // returns 0 if the given profile has a valid header -static int grokHeader(const TCHAR *profile, int *error) +static int grokHeader(const TCHAR *profile) { - CDdxMmapSA *tmp = new CDdxMmapSA(profile); - if (tmp->Load(true) != ERROR_SUCCESS) { - delete tmp; - if (error != NULL) *error = EGROKPRF_CANTREAD; - return 1; - } + std::auto_ptr db( new CDdxMmapSA(profile)); + if (db->Load(true) != ERROR_SUCCESS) + return EGROKPRF_CANTREAD; - int chk = tmp->CheckDbHeaders(); - delete tmp; - if ( chk == 0 ) { - // all the internal tests passed, hurrah - if (error != NULL) *error = 0; - return 0; - } - - // didn't pass at all, or some did. - switch ( chk ) { - case 1: - // "Miranda ICQ DB" wasn't present - if (error != NULL) *error = EGROKPRF_UNKHEADER; - break; - - case 2: - // header was present, but version information newer - if (error != NULL) *error = EGROKPRF_VERNEWER; - break; - - case 3: - // header/version OK, internal data missing - if (error != NULL) *error = EGROKPRF_DAMAGED; - break; - } - - return 1; + return db->CheckDbHeaders(); } // returns 0 if all the APIs are injected otherwise, 1 @@ -107,14 +76,12 @@ static MIDatabase* LoadDatabase(const TCHAR *profile) // set the memory, lists & UTF8 manager mir_getLP( &pluginInfo ); - CDdxMmapSA* db = new CDdxMmapSA(profile); - if (db->Load(false) != ERROR_SUCCESS) { - delete db; + std::auto_ptr db( new CDdxMmapSA(profile)); + if (db->Load(false) != ERROR_SUCCESS) return NULL; - } - g_Dbs.insert(db); - return db; + g_Dbs.insert(db.get()); + return db.release(); } static int UnloadDatabase(MIDatabase* db) @@ -124,24 +91,22 @@ static int UnloadDatabase(MIDatabase* db) return 0; } -MIDatabaseChecker* CheckDb(const TCHAR* ptszFileName, int *error) +MIDatabaseChecker* CheckDb(const TCHAR* profile, int *error) { - CDdxMmapSA *tmp = new CDdxMmapSA(ptszFileName); - if (tmp->Load(true) != ERROR_SUCCESS) { - delete tmp; - if (error != NULL) *error = EGROKPRF_CANTREAD; + std::auto_ptr db( new CDdxMmapSA(profile)); + if (db->Load(true) != ERROR_SUCCESS) { + *error = EGROKPRF_CANTREAD; return NULL; } - int chk = tmp->CheckDbHeaders(); + int chk = db->CheckDbHeaders(); if (chk != ERROR_SUCCESS) { - delete tmp; *error = chk; return NULL; } *error = 0; - return tmp; + return db.release(); } static DATABASELINK dblink = -- cgit v1.2.3