mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
lib: introduce notmuch_database_create_with_config
This takes a config path parameter, and can use that to decide the new database location.
This commit is contained in:
parent
55f5e87096
commit
ac67cd84ee
4 changed files with 58 additions and 23 deletions
|
@ -80,7 +80,7 @@ class TestCreate:
|
||||||
db.create(tmppath)
|
db.create(tmppath)
|
||||||
|
|
||||||
def test_create_existing(self, tmppath, db):
|
def test_create_existing(self, tmppath, db):
|
||||||
with pytest.raises(errors.FileError):
|
with pytest.raises(errors.DatabaseExistsError):
|
||||||
dbmod.Database.create(path=tmppath)
|
dbmod.Database.create(path=tmppath)
|
||||||
|
|
||||||
def test_close(self, db):
|
def test_close(self, db):
|
||||||
|
|
|
@ -442,6 +442,33 @@ notmuch_database_open_with_config (const char *database_path,
|
||||||
const char *profile,
|
const char *profile,
|
||||||
notmuch_database_t **database,
|
notmuch_database_t **database,
|
||||||
char **error_message);
|
char **error_message);
|
||||||
|
/**
|
||||||
|
* Create a new notmuch database located at 'database_path', using
|
||||||
|
* configuration in 'config_path'.
|
||||||
|
*
|
||||||
|
* For description of arguments, @see notmuch_database_open_with_config
|
||||||
|
*
|
||||||
|
* @retval NOTMUCH_STATUS_SUCCESS: Successfully created the database.
|
||||||
|
*
|
||||||
|
* @retval NOTMUCH_STATUS_DATABASE_EXISTS: Database already exists, not created
|
||||||
|
*
|
||||||
|
* @retval NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory.
|
||||||
|
*
|
||||||
|
* @retval NOTMUCH_STATUS_FILE_ERROR: An error occurred trying to open the
|
||||||
|
* database or config file (such as permission denied, or file not found,
|
||||||
|
* etc.)
|
||||||
|
*
|
||||||
|
* @retval NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred.
|
||||||
|
*
|
||||||
|
* @since libnotmuch 5.4 (notmuch 0.32)
|
||||||
|
*/
|
||||||
|
|
||||||
|
notmuch_status_t
|
||||||
|
notmuch_database_create_with_config (const char *database_path,
|
||||||
|
const char *config_path,
|
||||||
|
const char *profile,
|
||||||
|
notmuch_database_t **database,
|
||||||
|
char **error_message);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve last status string for given database.
|
* Retrieve last status string for given database.
|
||||||
|
|
50
lib/open.cc
50
lib/open.cc
|
@ -363,30 +363,32 @@ notmuch_status_t
|
||||||
notmuch_database_create_verbose (const char *path,
|
notmuch_database_create_verbose (const char *path,
|
||||||
notmuch_database_t **database,
|
notmuch_database_t **database,
|
||||||
char **status_string)
|
char **status_string)
|
||||||
|
{
|
||||||
|
return notmuch_database_create_with_config (path, "", NULL, database, status_string);
|
||||||
|
}
|
||||||
|
|
||||||
|
notmuch_status_t
|
||||||
|
notmuch_database_create_with_config (const char *database_path,
|
||||||
|
const char *config_path,
|
||||||
|
const char *profile,
|
||||||
|
notmuch_database_t **database,
|
||||||
|
char **status_string)
|
||||||
{
|
{
|
||||||
notmuch_status_t status = NOTMUCH_STATUS_SUCCESS;
|
notmuch_status_t status = NOTMUCH_STATUS_SUCCESS;
|
||||||
notmuch_database_t *notmuch = NULL;
|
notmuch_database_t *notmuch = NULL;
|
||||||
char *notmuch_path = NULL;
|
char *notmuch_path = NULL;
|
||||||
char *message = NULL;
|
char *message = NULL;
|
||||||
|
GKeyFile *key_file = NULL;
|
||||||
struct stat st;
|
struct stat st;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
if (path == NULL) {
|
if ((status = _choose_database_path (config_path, profile, &key_file, &database_path, &message)))
|
||||||
message = strdup ("Error: Cannot create a database for a NULL path.\n");
|
|
||||||
status = NOTMUCH_STATUS_NULL_POINTER;
|
|
||||||
goto DONE;
|
goto DONE;
|
||||||
}
|
|
||||||
|
|
||||||
if (path[0] != '/') {
|
err = stat (database_path, &st);
|
||||||
message = strdup ("Error: Database path must be absolute.\n");
|
|
||||||
status = NOTMUCH_STATUS_PATH_ERROR;
|
|
||||||
goto DONE;
|
|
||||||
}
|
|
||||||
|
|
||||||
err = stat (path, &st);
|
|
||||||
if (err) {
|
if (err) {
|
||||||
IGNORE_RESULT (asprintf (&message, "Error: Cannot create database at %s: %s.\n",
|
IGNORE_RESULT (asprintf (&message, "Error: Cannot create database at %s: %s.\n",
|
||||||
path, strerror (errno)));
|
database_path, strerror (errno)));
|
||||||
status = NOTMUCH_STATUS_FILE_ERROR;
|
status = NOTMUCH_STATUS_FILE_ERROR;
|
||||||
goto DONE;
|
goto DONE;
|
||||||
}
|
}
|
||||||
|
@ -394,25 +396,31 @@ notmuch_database_create_verbose (const char *path,
|
||||||
if (! S_ISDIR (st.st_mode)) {
|
if (! S_ISDIR (st.st_mode)) {
|
||||||
IGNORE_RESULT (asprintf (&message, "Error: Cannot create database at %s: "
|
IGNORE_RESULT (asprintf (&message, "Error: Cannot create database at %s: "
|
||||||
"Not a directory.\n",
|
"Not a directory.\n",
|
||||||
path));
|
database_path));
|
||||||
status = NOTMUCH_STATUS_FILE_ERROR;
|
status = NOTMUCH_STATUS_FILE_ERROR;
|
||||||
goto DONE;
|
goto DONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
notmuch_path = talloc_asprintf (NULL, "%s/%s", path, ".notmuch");
|
notmuch_path = talloc_asprintf (NULL, "%s/%s", database_path, ".notmuch");
|
||||||
|
|
||||||
err = mkdir (notmuch_path, 0755);
|
err = mkdir (notmuch_path, 0755);
|
||||||
|
|
||||||
if (err) {
|
if (err) {
|
||||||
IGNORE_RESULT (asprintf (&message, "Error: Cannot create directory %s: %s.\n",
|
if (errno == EEXIST) {
|
||||||
notmuch_path, strerror (errno)));
|
status = NOTMUCH_STATUS_DATABASE_EXISTS;
|
||||||
status = NOTMUCH_STATUS_FILE_ERROR;
|
} else {
|
||||||
|
IGNORE_RESULT (asprintf (&message, "Error: Cannot create directory %s: %s.\n",
|
||||||
|
notmuch_path, strerror (errno)));
|
||||||
|
status = NOTMUCH_STATUS_FILE_ERROR;
|
||||||
|
}
|
||||||
goto DONE;
|
goto DONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
status = notmuch_database_open_verbose (path,
|
/* XXX this reads the config file twice, which is a bit wasteful */
|
||||||
NOTMUCH_DATABASE_MODE_READ_WRITE,
|
status = notmuch_database_open_with_config (database_path,
|
||||||
¬much, &message);
|
NOTMUCH_DATABASE_MODE_READ_WRITE,
|
||||||
|
config_path,
|
||||||
|
profile,
|
||||||
|
¬much, &message);
|
||||||
if (status)
|
if (status)
|
||||||
goto DONE;
|
goto DONE;
|
||||||
|
|
||||||
|
|
|
@ -93,7 +93,7 @@ EOF
|
||||||
cat <<'EOF' >EXPECTED
|
cat <<'EOF' >EXPECTED
|
||||||
== stdout ==
|
== stdout ==
|
||||||
== stderr ==
|
== stderr ==
|
||||||
Error: Cannot create a database for a NULL path.
|
Error: Cannot open a database for a NULL path.
|
||||||
EOF
|
EOF
|
||||||
test_expect_equal_file EXPECTED OUTPUT
|
test_expect_equal_file EXPECTED OUTPUT
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue