summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor V. Kovalenko <igor.v.kovalenko@gmail.com>2020-12-21 19:27:53 +0300
committerArun Raghavan <arun@asymptotic.io>2021-01-12 21:03:13 -0500
commitc6b7837df361f5d3010b4cc8cab2edda9098819b (patch)
tree2cd4565d106e4aaed8ce80f602f49aa7b57f4dc6
parentf8653fa5c1cabd2aa727e49dd2d96a081b2c4dcb (diff)
downloadpulseaudio-c6b7837df361f5d3010b4cc8cab2edda9098819b.tar.gz
database: pick old database file from any arch
Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/425>
-rw-r--r--src/pulsecore/database-gdbm.c8
-rw-r--r--src/pulsecore/database-simple.c5
-rw-r--r--src/pulsecore/database-tdb.c5
-rw-r--r--src/pulsecore/database.c57
-rw-r--r--src/pulsecore/database.h21
5 files changed, 42 insertions, 54 deletions
diff --git a/src/pulsecore/database-gdbm.c b/src/pulsecore/database-gdbm.c
index cd03405f5..b39f7dee2 100644
--- a/src/pulsecore/database-gdbm.c
+++ b/src/pulsecore/database-gdbm.c
@@ -59,14 +59,6 @@ void pa_datum_free(pa_datum *d) {
pa_zero(d);
}
-const char* pa_database_get_arch_suffix(void) {
- /* We include the host identifier in the file name because gdbm
- * files are CPU dependent, and we don't want things to go wrong
- * if we are on a multiarch system. */
-
- return CANONICAL_HOST;
-}
-
const char* pa_database_get_filename_suffix(void) {
return ".gdbm";
}
diff --git a/src/pulsecore/database-simple.c b/src/pulsecore/database-simple.c
index ebfbe4c61..96af8e098 100644
--- a/src/pulsecore/database-simple.c
+++ b/src/pulsecore/database-simple.c
@@ -222,11 +222,6 @@ static int fill_data(simple_data *db, FILE *f) {
return pa_hashmap_size(db->map);
}
-const char* pa_database_get_arch_suffix(void) {
- /* Simple database binary file format is CPU dependent. */
- return CANONICAL_HOST;
-}
-
const char* pa_database_get_filename_suffix(void) {
return ".simple";
}
diff --git a/src/pulsecore/database-tdb.c b/src/pulsecore/database-tdb.c
index 5e7315901..6605ed8fc 100644
--- a/src/pulsecore/database-tdb.c
+++ b/src/pulsecore/database-tdb.c
@@ -97,11 +97,6 @@ finish:
return c;
}
-const char* pa_database_get_arch_suffix(void) {
- /* TDB binary file format is not dependent on system architecture */
- return NULL;
-}
-
const char* pa_database_get_filename_suffix(void) {
return ".tdb";
}
diff --git a/src/pulsecore/database.c b/src/pulsecore/database.c
index 3e6f102f4..8b3b89c56 100644
--- a/src/pulsecore/database.c
+++ b/src/pulsecore/database.c
@@ -33,7 +33,6 @@
pa_database* pa_database_open(const char *path, const char *fn, bool prependmid, bool for_write) {
- const char *arch_suffix = pa_database_get_arch_suffix();
const char *filename_suffix = pa_database_get_filename_suffix();
char *machine_id = NULL, *filename_prefix, *full_path;
@@ -43,7 +42,6 @@ pa_database* pa_database_open(const char *path, const char *fn, bool prependmid,
pa_database *f;
- pa_assert(!arch_suffix || arch_suffix[0]);
pa_assert(filename_suffix && filename_suffix[0]);
if (prependmid && !(machine_id = pa_machine_id())) {
@@ -56,41 +54,38 @@ pa_database* pa_database_open(const char *path, const char *fn, bool prependmid,
else
filename_prefix = pa_xstrdup(fn);
- if (arch_suffix) {
- /* Search for existing database directory entry name matching architecture suffix and filename suffix. */
- database_dir = opendir(path);
-
- if (database_dir) {
- for (;;) {
- errno = 0;
- de = readdir(database_dir);
- if (!de) {
- if (errno) {
- pa_log_warn("Unable to search for compatible database file, readdir() failed: %s", pa_cstrerror(errno));
- /* can continue as if there is no matching database file candidate */
- }
-
- break;
+ /* Search for existing database directory entry name matching architecture suffix and filename suffix. */
+ database_dir = opendir(path);
+
+ if (database_dir) {
+ for (;;) {
+ errno = 0;
+ de = readdir(database_dir);
+ if (!de) {
+ if (errno) {
+ pa_log_warn("Unable to search for existing database file, readdir() failed: %s", pa_cstrerror(errno));
+ /* can continue as if there is no matching database file candidate */
}
- if (pa_startswith(de->d_name, filename_prefix)
- && de->d_name[strlen(filename_prefix)] == '.'
- && pa_startswith(de->d_name + strlen(filename_prefix) + 1, arch_suffix)
- && pa_endswith(de->d_name + strlen(filename_prefix) + 1 + strlen(arch_suffix), filename_suffix)) {
+ break;
+ }
- /* candidate filename found, replace filename_prefix with this one */
+ if (pa_startswith(de->d_name, filename_prefix)
+ && de->d_name[strlen(filename_prefix)] == '.'
+ && pa_endswith(de->d_name + strlen(filename_prefix) + 1, filename_suffix)) {
- pa_log_debug("Found compatible database file '%s/%s', using it", path, de->d_name);
- pa_xfree(filename_prefix);
- filename_prefix = pa_xstrndup(de->d_name, strlen(de->d_name) - strlen(filename_suffix));
- break;
- }
- }
+ /* candidate filename found, replace filename_prefix with this one */
- closedir(database_dir);
- } else {
- pa_log_warn("Unable to search for compatible database file, failed to open directory %s: %s", path, pa_cstrerror(errno));
+ pa_log_debug("Found existing database file '%s/%s', using it", path, de->d_name);
+ pa_xfree(filename_prefix);
+ filename_prefix = pa_xstrndup(de->d_name, strlen(de->d_name) - strlen(filename_suffix));
+ break;
+ }
}
+
+ closedir(database_dir);
+ } else {
+ pa_log_warn("Unable to search for existing database file, failed to open directory %s: %s", path, pa_cstrerror(errno));
}
full_path = pa_sprintf_malloc("%s" PA_PATH_SEP "%s%s", path, filename_prefix, filename_suffix);
diff --git a/src/pulsecore/database.h b/src/pulsecore/database.h
index cc16e535d..7fa489c67 100644
--- a/src/pulsecore/database.h
+++ b/src/pulsecore/database.h
@@ -38,14 +38,25 @@ typedef struct pa_datum {
void pa_datum_free(pa_datum *d);
-/* Database implementation; returns non-empty system architecture name string if database file format depends on system architecture, or NULL otherwise. */
-const char* pa_database_get_arch_suffix(void);
/* Database implementation; returns non-empty database filename extension string */
const char* pa_database_get_filename_suffix(void);
-/* This will attempt opening database file matching compiled CANONICAL_HOST implementation architecture name prefix,
- * or new database file will be created and opened with implementation architecture name suffix if required.
- * If prependmid is true, file name is augmented with machine id prefix. */
+/* Opens a database file. The file is loaded from the directory indicated by
+ * path. The file name is constructed by using fn as the base and then adding
+ * several parts:
+ * 1) If prependmid is true, the machine id is prepended to the file name.
+ * 2) The database implementation specific suffix is added.
+ * 3) Older versions of PulseAudio in some cases added the CPU architecture
+ * to the file name, which was later deemed unnecessary, but for
+ * compatibility reasons we still need to look for those files, so we scan
+ * the directory for files that match the prefix (possible machine id plus
+ * fn) and the suffix, and if any matches are found, we use the first one.
+ *
+ * When no existing file is found, we create a new file for the database
+ * (without the CPU architecture part in the name).
+ *
+ * For a read-only database, set for_write to false. */
+
pa_database* pa_database_open(const char *path, const char *fn, bool prependmid, bool for_write);
/* Database implementation; opens specified database file using provided path. */