mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
lib: add NOTMUCH_STATUS_NO_DATABASE
This will allow more precise return values from various open related functions.
This commit is contained in:
parent
dd9112e7d8
commit
2e39ce6eb5
5 changed files with 11 additions and 0 deletions
|
@ -51,6 +51,7 @@ ffibuilder.cdef(
|
|||
NOTMUCH_STATUS_FAILED_CRYPTO_CONTEXT_CREATION,
|
||||
NOTMUCH_STATUS_UNKNOWN_CRYPTO_PROTOCOL,
|
||||
NOTMUCH_STATUS_NO_CONFIG,
|
||||
NOTMUCH_STATUS_NO_DATABASE,
|
||||
NOTMUCH_STATUS_DATABASE_EXISTS,
|
||||
NOTMUCH_STATUS_LAST_STATUS
|
||||
} notmuch_status_t;
|
||||
|
|
|
@ -52,6 +52,8 @@ class NotmuchError(Exception):
|
|||
IllegalArgumentError,
|
||||
capi.lib.NOTMUCH_STATUS_NO_CONFIG:
|
||||
NoConfigError,
|
||||
capi.lib.NOTMUCH_STATUS_NO_DATABASE:
|
||||
NoDatabaseError,
|
||||
capi.lib.NOTMUCH_STATUS_DATABASE_EXISTS:
|
||||
DatabaseExistsError,
|
||||
}
|
||||
|
@ -99,6 +101,7 @@ class UpgradeRequiredError(NotmuchError): pass
|
|||
class PathError(NotmuchError): pass
|
||||
class IllegalArgumentError(NotmuchError): pass
|
||||
class NoConfigError(NotmuchError): pass
|
||||
class NoDatabaseError(NotmuchError): pass
|
||||
class DatabaseExistsError(NotmuchError): pass
|
||||
|
||||
class ObjectDestroyedError(NotmuchError):
|
||||
|
|
|
@ -305,6 +305,8 @@ notmuch_status_to_string (notmuch_status_t status)
|
|||
return "Unknown crypto protocol";
|
||||
case NOTMUCH_STATUS_NO_CONFIG:
|
||||
return "No configuration file found";
|
||||
case NOTMUCH_STATUS_NO_DATABASE:
|
||||
return "No database found";
|
||||
case NOTMUCH_STATUS_DATABASE_EXISTS:
|
||||
return "Database exists, not recreated";
|
||||
default:
|
||||
|
|
|
@ -142,6 +142,7 @@ typedef enum _notmuch_private_status {
|
|||
NOTMUCH_PRIVATE_STATUS_FAILED_CRYPTO_CONTEXT_CREATION = NOTMUCH_STATUS_FAILED_CRYPTO_CONTEXT_CREATION,
|
||||
NOTMUCH_PRIVATE_STATUS_UNKNOWN_CRYPTO_PROTOCOL = NOTMUCH_STATUS_UNKNOWN_CRYPTO_PROTOCOL,
|
||||
NOTMUCH_PRIVATE_STATUS_NO_CONFIG = NOTMUCH_STATUS_NO_CONFIG,
|
||||
NOTMUCH_PRIVATE_STATUS_NO_DATABASE = NOTMUCH_STATUS_NO_DATABASE,
|
||||
NOTMUCH_PRIVATE_STATUS_DATABASE_EXISTS = NOTMUCH_STATUS_DATABASE_EXISTS,
|
||||
|
||||
/* Then add our own private values. */
|
||||
|
|
|
@ -212,6 +212,10 @@ typedef enum _notmuch_status {
|
|||
* Unable to load a config file
|
||||
*/
|
||||
NOTMUCH_STATUS_NO_CONFIG,
|
||||
/**
|
||||
* Unable to load a database
|
||||
*/
|
||||
NOTMUCH_STATUS_NO_DATABASE,
|
||||
/**
|
||||
* Database exists, so not (re)-created
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue