Skip to content
Snippets Groups Projects
Commit a3223509 authored by ale's avatar ale
Browse files

Resolve symlinks when loading drumkits

Sometimes (like with LV2 presets) we get sent a symlink to the
original drumkit, which messes up the relative filenames for the
samples.
parent 5fd1ec15
Branches
No related tags found
No related merge requests found
......@@ -3,6 +3,8 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <unistd.h>
#include <libxml/parser.h>
#include <libxml/tree.h>
......@@ -450,6 +452,32 @@ static void fix_bad_xml(xmlNodePtr cur, xmlNsPtr ns) {
}
}
// Return the final location pointed at by filename if it's a symbolic
// link. In all cases, the resulting memory must be freed by the caller.
static char *resolve_symlink(const char *filename) {
char buf[1024];
struct stat stbuf;
char *cur = strdup(filename);
int n;
while (1) {
if (lstat(cur, &stbuf) < 0) {
return NULL;
}
if ((stbuf.st_mode & S_IFLNK) != S_IFLNK) {
return cur;
}
n = readlink(cur, buf, sizeof(buf)-1);
if (n < 0) {
return NULL;
}
buf[n] = '\0';
free(cur);
cur = strdup(buf);
}
}
int drumkit_load(struct drumkit *kit, const char *filename, int target_samplerate) {
char *basedir = NULL;
xmlDocPtr doc = NULL;
......@@ -459,6 +487,10 @@ int drumkit_load(struct drumkit *kit, const char *filename, int target_samplerat
xmlXPathObjectPtr xpathObj = NULL;
int n, r = 1;
// Resolve symlinks because sometimes (i.e. in presets) we get sent
// a symbolic link to the actual drumkit.xml, which messes up the
// relative filenames of the samples.
filename = resolve_symlink(filename);
basedir = path_dirname(filename);
kit->instruments = NULL;
......@@ -508,6 +540,7 @@ int drumkit_load(struct drumkit *kit, const char *filename, int target_samplerat
fix_midi_notes(kit);
cleanup:
free(filename);
free(basedir);
if (xpathObj) {
xmlXPathFreeObject(xpathObj);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment