1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
|
/*
* Copyright (C) 2011 Mark Hills <mark@pogo.org.uk>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License version 2 for more details.
*
* You should have received a copy of the GNU General Public License
* version 2 along with this program; if not, write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*
*/
#define _BSD_SOURCE /* vfork() */
#define _GNU_SOURCE /* getdelim(), strdupa() */
#include <assert.h>
#include <libgen.h> /* basename() */
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include "library.h"
#define CRATE_ALL "All records"
/*
* Initialise a crate
*
* Note the deep copy of the crate name
*
* Return: 0 on success or -1 on memory allocation failure
*/
static int crate_init(struct crate_t *c, const char *name, bool is_fixed)
{
c->name = strdup(name);
if (c->name == NULL) {
perror("strdup");
return -1;
}
c->is_fixed = is_fixed;
listing_init(&c->listing);
return 0;
}
/*
* Deallocate resources associated with this crate
*
* The crate does not 'own' the memory allocated by the records
* in it, so we don't free them here.
*/
static void crate_clear(struct crate_t *c)
{
listing_clear(&c->listing);
free(c->name);
}
/*
* Comparison function for two crates
*/
static int crate_cmp(const struct crate_t *a, const struct crate_t *b)
{
if (a->is_fixed && !b->is_fixed)
return -1;
if (!a->is_fixed && b->is_fixed)
return 1;
return strcmp(a->name, b->name);
}
/*
* Comparison function, see qsort(3)
*/
static int qcompar(const void *a, const void *b)
{
return crate_cmp(*(struct crate_t**)a, *(struct crate_t**)b);
}
/*
* Sort all crates into a defined order
*/
static void sort_crates(struct library_t *lib)
{
qsort(lib->crate, lib->crates, sizeof(struct crate_t*), qcompar);
}
/*
* Add a crate to the list of all crates
*
* Return: 0 on success or -1 on memory allocation failure
*/
static int add_crate(struct library_t *lib, struct crate_t *c)
{
struct crate_t **cn;
cn = realloc(lib->crate, sizeof(struct crate_t*) * (lib->crates + 1));
if (cn == NULL) {
perror("realloc");
return -1;
}
lib->crate = cn;
lib->crate[lib->crates++] = c;
sort_crates(lib);
return 0;
}
/*
* Get a crate by the given name
*
* Beware: The match could match the fixed crates if the name is the
* same.
*
* Return: pointer to crate, or NULL if no crate has the given name
*/
struct crate_t* get_crate(struct library_t *lib, const char *name)
{
int n;
for (n = 0; n < lib->crates; n++) {
if (strcmp(lib->crate[n]->name, name) == 0)
return lib->crate[n];
}
return NULL;
}
/*
* Get an existing crate, or create a new one if necessary
*
* Return: pointer to crate, or NULL on memory allocation failure
*/
struct crate_t* use_crate(struct library_t *lib, char *name, bool is_fixed)
{
struct crate_t *new_crate;
/* does this crate already exist? then return existing crate */
new_crate = get_crate(lib, name);
if (new_crate != NULL) {
fprintf(stderr, "Crate '%s' already exists...\n", name);
return new_crate;
}
/* allocate and fill space for new crate */
new_crate = malloc(sizeof(struct crate_t));
if (new_crate == NULL) {
perror("malloc");
return NULL;
}
if (crate_init(new_crate, name, is_fixed) == -1)
goto fail;
if (add_crate(lib, new_crate) == -1)
goto fail;
return new_crate;
fail:
free(new_crate);
return NULL;
}
/*
* Initialise the record library
*
* Return: 0 on success or -1 on memory allocation failure
*/
int library_init(struct library_t *li)
{
li->crate = NULL;
li->crates = 0;
if (crate_init(&li->all, CRATE_ALL, true) == -1)
return -1;
if (add_crate(li, &li->all) == -1) {
crate_clear(&li->all);
return -1;
}
return 0;
}
/*
* Free resources associated with a record
*/
static void record_clear(struct record_t *re)
{
free(re->pathname);
free(re->artist);
free(re->title);
}
/*
* Free resources associated with the music library
*/
void library_clear(struct library_t *li)
{
int n;
/* This object is responsible for all the record pointers */
for (n = 0; n < li->all.listing.entries; n++) {
struct record_t *re;
re = li->all.listing.record[n];
record_clear(re);
free(re);
}
/* Clear crates */
for (n = 1; n < li->crates; n++) { /* skip the 'all' crate */
struct crate_t *crate;
crate = li->crate[n];
crate_clear(crate);
free(crate);
}
free(li->crate);
crate_clear(&li->all);
}
/*
* Read a string from a file.
*
* A null-terminated string is read from the given file handle
* by reading until the delimiter.
*
* Return: 0 on success, -1 on error or EOF
* Post: On success, *s is an alloc'd string returned to the caller;
* if an empty string is read, *s is set to NULL
*/
static int get_field(FILE *fp, char delim, char **f)
{
char *s = NULL;
size_t n, z;
z = getdelim(&s, &n, delim, fp);
if (z == -1) {
free(s);
return -1;
}
s[z - 1] = '\0'; /* don't include delimiter */
*f = s;
return 0;
}
/*
* Scan a record library
*
* Launch the given scan script and pass it the path argument.
* Parse the results into the crates.
*
* Return: 0 on success, -1 on fatal error (may leak)
*/
int library_import(struct library_t *li, bool sort,
const char *scan, const char *path)
{
int pstdout[2], status;
char *cratename, *pathname;
pid_t pid;
FILE *fp;
struct crate_t *crate, *all_crate;
fprintf(stderr, "Scanning '%s'...\n", path);
all_crate = get_crate(li, CRATE_ALL);
assert(all_crate != NULL);
pathname = strdupa(path);
cratename = basename(pathname); /* POSIX version, see basename(3) */
assert(cratename != NULL);
crate = use_crate(li, cratename, false);
if (crate == NULL)
return -1;
if (pipe(pstdout) == -1) {
perror("pipe");
return -1;
}
pid = vfork();
if (pid == -1) {
perror("vfork");
return -1;
} else if (pid == 0) { /* child */
if (close(pstdout[0]) == -1) {
perror("close");
abort();
}
if (dup2(pstdout[1], STDOUT_FILENO) == -1) {
perror("dup2");
_exit(EXIT_FAILURE); /* vfork() was used */
}
if (close(pstdout[1]) == -1) {
perror("close");
abort();
}
if (execl(scan, "scan", path, NULL) == -1) {
perror("execl");
fprintf(stderr, "Failed to launch library scanner %s\n", scan);
_exit(EXIT_FAILURE); /* vfork() was used */
}
abort(); /* execl() does not return */
}
if (close(pstdout[1]) == -1) {
perror("close");
abort();
}
fp = fdopen(pstdout[0], "r");
if (fp == NULL) {
perror("fdopen");
return -1;
}
for (;;) {
struct record_t *d, *x;
char *pathname;
if (get_field(fp, '\t', &pathname) != 0)
break;
d = malloc(sizeof(struct record_t));
if (d == NULL) {
perror("malloc");
return -1;
}
d->pathname = pathname;
if (get_field(fp, '\t', &d->artist) != 0) {
fprintf(stderr, "EOF when reading artist for '%s'.\n", d->pathname);
return -1;
}
if (get_field(fp, '\n', &d->title) != 0) {
fprintf(stderr, "EOF when reading title for '%s'.\n", d->pathname);
return -1;
}
/* Add to the crate of all records */
x = listing_insert(&all_crate->listing, d);
if (x == NULL)
return -1;
/* If there is an existing entry, use it instead */
if (x != d) {
record_clear(d);
free(d);
d = x;
}
/* Insert into the user's crate */
if (sort) {
if (listing_insert(&crate->listing, d) == NULL)
return -1;
} else {
if (listing_add(&crate->listing, d) == -1)
return -1;
}
}
if (fclose(fp) == -1) {
perror("close");
abort(); /* assumption fclose() can't on read-only descriptor */
}
if (waitpid(pid, &status, 0) == -1) {
perror("waitpid");
return -1;
}
if (!WIFEXITED(status) || WEXITSTATUS(status) != EXIT_SUCCESS) {
fputs("Library scan exited reporting failure.\n", stderr);
return -1;
}
return 0;
}
|