Do not check return value of WRITE_STATUS_ITEM().
[paraslash.git] / aft.c
1 /*
2  * Copyright (C) 2007 Andre Noll <maan@tuebingen.mpg.de>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 /** \file aft.c Audio file table functions. */
8
9 #include <regex.h>
10 #include <sys/mman.h>
11 #include <fnmatch.h>
12 #include <sys/shm.h>
13 #include <osl.h>
14
15 #include "para.h"
16 #include "error.h"
17 #include "crypt.h"
18 #include "string.h"
19 #include "afh.h"
20 #include "afs.h"
21 #include "fd.h"
22 #include "ipc.h"
23 #include "portable_io.h"
24 #include "sideband.h"
25 #include "command.h"
26
27 static struct osl_table *audio_file_table;
28 static char *status_items;
29 static char *parser_friendly_status_items;
30
31 /** The different sorting methods of the ls command. */
32 enum ls_sorting_method {
33         /** -sp (default) */
34         LS_SORT_BY_PATH,
35         /** -ss */
36         LS_SORT_BY_SCORE,
37         /** -sl */
38         LS_SORT_BY_LAST_PLAYED,
39         /** -sn */
40         LS_SORT_BY_NUM_PLAYED,
41         /** -sf */
42         LS_SORT_BY_FREQUENCY,
43         /** -sc */
44         LS_SORT_BY_CHANNELS,
45         /** -si */
46         LS_SORT_BY_IMAGE_ID,
47         /** -sy */
48         LS_SORT_BY_LYRICS_ID,
49         /** -sb */
50         LS_SORT_BY_BITRATE,
51         /** -sd */
52         LS_SORT_BY_DURATION,
53         /** -sa */
54         LS_SORT_BY_AUDIO_FORMAT,
55         /** -sh */
56         LS_SORT_BY_HASH,
57 };
58
59 /** The different listing modes of the ls command. */
60 enum ls_listing_mode {
61         /** Default listing mode. */
62         LS_MODE_SHORT,
63         /** -l or -ll */
64         LS_MODE_LONG,
65         /** -lv */
66         LS_MODE_VERBOSE,
67         /** -lm */
68         LS_MODE_MBOX,
69         /** -lc */
70         LS_MODE_CHUNKS,
71         /** -lp */
72         LS_MODE_PARSER,
73 };
74
75 /* Data about one audio file. Needed for ls and stat output. */
76 struct ls_data {
77         /* Usual audio format handler information. */
78         struct afh_info afhi;
79         /* Audio file selector information. */
80         struct afs_info afsi;
81         /* The full path of the audio file. */
82         char *path;
83         /* The score value (if -a was given). */
84         long score;
85         /* The hash value of the audio file data. */
86         unsigned char *hash;
87 };
88
89 /** The flags accepted by the ls command. */
90 enum ls_flags {
91         /** -p */
92         LS_FLAG_FULL_PATH = 1,
93         /** -a */
94         LS_FLAG_ADMISSIBLE_ONLY = 2,
95         /** -r */
96         LS_FLAG_REVERSE = 4,
97         /** -d */
98         LS_FLAG_UNIXDATE = 8,
99 };
100
101 /**
102  * The size of the individual output fields of the ls command.
103  *
104  * These depend on the content being listed. For example, if each listed file
105  * is shorter than an hour, the duration format is set to mm:ss. Otherwise it
106  * is set to hh:mm:ss.
107  */
108 struct ls_widths {
109         /** size of the score field. */
110         unsigned short score_width;
111         /** size of the image id field. */
112         unsigned short image_id_width;
113         /** size of the lyrics id field. */
114         unsigned short lyrics_id_width;
115         /** size of the bitrate field. */
116         unsigned short bitrate_width;
117         /** size of the frequency field. */
118         unsigned short frequency_width;
119         /** size of the duration field. */
120         unsigned short duration_width;
121         /** size of the num played field. */
122         unsigned short num_played_width;
123         /** size of the amp field. */
124         unsigned short amp_width;
125         /** size of the audio format field. */
126         unsigned short audio_format_width;
127 };
128
129 /** Data passed from the ls command handler to its callback function. */
130 struct ls_options {
131         /** The given command line flags. */
132         unsigned flags;
133         /** The sorting method given at the command line. */
134         enum ls_sorting_method sorting;
135         /** The given listing mode (short, long, verbose, mbox). */
136         enum ls_listing_mode mode;
137         /** The arguments passed to the ls command. */
138         char **patterns;
139         /** Number of non-option arguments. */
140         int num_patterns;
141         /** Used for long listing mode to align the output fields. */
142         struct ls_widths widths;
143         /** Size of the \a data array. */
144         uint32_t array_size;
145         /** Number of used entries in the data array. */
146         uint32_t num_matching_paths;
147         /** Array of matching entries. */
148         struct ls_data *data;
149         /** Used to sort the array. */
150         struct ls_data **data_ptr;
151 };
152
153 /**
154  * Describes the layout of the mmapped-afs info struct.
155  *
156  * \sa struct afs_info.
157  */
158 enum afsi_offsets {
159         /** Where .last_played is stored. */
160         AFSI_LAST_PLAYED_OFFSET = 0,
161         /** Storage position of the attributes bitmap. */
162         AFSI_ATTRIBUTES_OFFSET = 8,
163         /** Storage position of the .num_played field. */
164         AFSI_NUM_PLAYED_OFFSET = 16,
165         /** Storage position of the .image_id field. */
166         AFSI_IMAGE_ID_OFFSET = 20,
167         /** Storage position of the .lyrics_id field. */
168         AFSI_LYRICS_ID_OFFSET = 24,
169         /** Storage position of the .audio_format_id field. */
170         AFSI_AUDIO_FORMAT_ID_OFFSET = 28,
171         /** Storage position of the amplification field. */
172         AFSI_AMP_OFFSET = 29,
173         /** 2 bytes reserved space for future usage. */
174         AFSI_AUDIO_FORMAT_UNUSED_OFFSET = 30,
175         /** On-disk storage space needed. */
176         AFSI_SIZE = 32
177 };
178
179 /*
180  * Convert a struct afs_info to an osl object.
181  *
182  * \param afsi Pointer to the audio file info to be converted.
183  * \param obj Result pointer.
184  *
185  * \sa load_afsi().
186  */
187 static void save_afsi(struct afs_info *afsi, struct osl_object *obj)
188 {
189         char *buf = obj->data;
190
191         write_u64(buf + AFSI_LAST_PLAYED_OFFSET, afsi->last_played);
192         write_u64(buf + AFSI_ATTRIBUTES_OFFSET, afsi->attributes);
193         write_u32(buf + AFSI_NUM_PLAYED_OFFSET, afsi->num_played);
194         write_u32(buf + AFSI_IMAGE_ID_OFFSET, afsi->image_id);
195         write_u32(buf + AFSI_LYRICS_ID_OFFSET, afsi->lyrics_id);
196         write_u8(buf + AFSI_AUDIO_FORMAT_ID_OFFSET,
197                 afsi->audio_format_id);
198         write_u8(buf + AFSI_AMP_OFFSET, afsi->amp);
199         memset(buf + AFSI_AUDIO_FORMAT_UNUSED_OFFSET, 0, 2);
200 }
201
202 /*
203  * Get the audio file selector info struct stored in an osl object.
204  *
205  * \param afsi Points to the audio_file info structure to be filled in.
206  * \param obj The osl object holding the data.
207  *
208  * \return Standard.
209  *
210  * \sa save_afsi().
211  */
212 static int load_afsi(struct afs_info *afsi, struct osl_object *obj)
213 {
214         char *buf = obj->data;
215         if (obj->size < AFSI_SIZE)
216                 return -E_BAD_AFSI;
217         afsi->last_played = read_u64(buf + AFSI_LAST_PLAYED_OFFSET);
218         afsi->attributes = read_u64(buf + AFSI_ATTRIBUTES_OFFSET);
219         afsi->num_played = read_u32(buf + AFSI_NUM_PLAYED_OFFSET);
220         afsi->image_id = read_u32(buf + AFSI_IMAGE_ID_OFFSET);
221         afsi->lyrics_id = read_u32(buf + AFSI_LYRICS_ID_OFFSET);
222         afsi->audio_format_id = read_u8(buf +
223                 AFSI_AUDIO_FORMAT_ID_OFFSET);
224         afsi->amp = read_u8(buf + AFSI_AMP_OFFSET);
225         return 1;
226 }
227
228 /** The columns of the audio file table. */
229 enum audio_file_table_columns {
230         /** The hash on the content of the audio file. */
231         AFTCOL_HASH,
232         /** The full path in the filesystem. */
233         AFTCOL_PATH,
234         /** The audio file selector info. */
235         AFTCOL_AFSI,
236         /** The audio format handler info. */
237         AFTCOL_AFHI,
238         /** The chunk table info and the chunk table of the audio file. */
239         AFTCOL_CHUNKS,
240         /** The number of columns of this table. */
241         NUM_AFT_COLUMNS
242 };
243
244 /**
245  * Compare two osl objects pointing to hash values.
246  *
247  * \param obj1 Pointer to the first hash object.
248  * \param obj2 Pointer to the second hash object.
249  *
250  * \return The values required for an osl compare function.
251  *
252  * \sa osl_compare_func, uint32_compare().
253  */
254 static int aft_hash_compare(const struct osl_object *obj1, const struct osl_object *obj2)
255 {
256         return hash_compare((unsigned char *)obj1->data, (unsigned char *)obj2->data);
257 }
258
259 static struct osl_column_description aft_cols[] = {
260         [AFTCOL_HASH] = {
261                 .storage_type = OSL_MAPPED_STORAGE,
262                 .storage_flags = OSL_RBTREE | OSL_FIXED_SIZE | OSL_UNIQUE,
263                 .name = "hash",
264                 .compare_function = aft_hash_compare,
265                 .data_size = HASH_SIZE
266         },
267         [AFTCOL_PATH] = {
268                 .storage_type = OSL_MAPPED_STORAGE,
269                 .storage_flags = OSL_RBTREE | OSL_UNIQUE,
270                 .name = "path",
271                 .compare_function = string_compare,
272         },
273         [AFTCOL_AFSI] = {
274                 .storage_type = OSL_MAPPED_STORAGE,
275                 .storage_flags = OSL_FIXED_SIZE,
276                 .name = "afs_info",
277                 .data_size = AFSI_SIZE
278         },
279         [AFTCOL_AFHI] = {
280                 .storage_type = OSL_MAPPED_STORAGE,
281                 .name = "afh_info",
282         },
283         [AFTCOL_CHUNKS] = {
284                 .storage_type = OSL_DISK_STORAGE,
285                 .name = "chunks",
286         }
287 };
288
289 static struct osl_table_description audio_file_table_desc = {
290         .name = "audio_files",
291         .num_columns = NUM_AFT_COLUMNS,
292         .flags = OSL_LARGE_TABLE,
293         .column_descriptions = aft_cols
294 };
295
296 /*
297  * Produce a canonicalized absolute pathname.
298  *
299  * Returns one if the resolved path a directory, zero if it is a regular file,
300  * negative on errors.
301  */
302 static int verify_path(const char *orig_path, char **resolved_path)
303 {
304         int ret;
305         char *path = NULL;
306         struct stat statbuf;
307
308         if (*orig_path != '/') /* we only accept absolute paths */
309                 goto fail;
310         path = realpath(orig_path, NULL);
311         if (!path)
312                 goto fail;
313         if (stat(path, &statbuf) < 0)
314                 goto fail;
315         if (S_ISREG(statbuf.st_mode))
316                 ret = 0;
317         else if (S_ISDIR(statbuf.st_mode))
318                 ret = 1;
319         else
320                 goto fail;
321         *resolved_path = path;
322         return ret;
323 fail:
324         *resolved_path = NULL;
325         free(path);
326         return -E_BAD_PATH;
327 }
328
329 /** The on-disk layout of a afhi struct. */
330 enum afhi_offsets {
331         /** Where the number of seconds is stored. */
332         AFHI_SECONDS_TOTAL_OFFSET = 0,
333         /** Position of the bitrate. */
334         AFHI_BITRATE_OFFSET = 4,
335         /** Position of the frequency. */
336         AFHI_FREQUENCY_OFFSET = 8,
337         /** Was: Location of the audio file header. */
338         AFHI_UNUSED1_OFFSET = 12,
339         /* Length of the audio file header. Zero means: No header. */
340         AFHI_HEADER_LEN_OFFSET = 16,
341         /** The total number of chunks (4 bytes). */
342         CHUNKS_TOTAL_OFFSET = 20,
343         /** The length of the audio file header (4 bytes). */
344         HEADER_LEN_OFFSET = 24,
345         /** Was: The start of the audio file header (4 bytes). */
346         AFHI_UNUSED2_OFFSET = 28,
347         /** The seconds part of the chunk time (4 bytes). */
348         CHUNK_TV_TV_SEC_OFFSET = 32,
349         /** The microseconds part of the chunk time (4 bytes). */
350         CHUNK_TV_TV_USEC_OFFSET = 36,
351         /** Number of channels is stored here. (1 byte) */
352         AFHI_CHANNELS_OFFSET = 40,
353         /** The tag info position. */
354         AFHI_INFO_STRING_OFFSET = 41,
355         /** Minimal on-disk size of a valid afhi struct. */
356         MIN_AFHI_SIZE = 47, /* at least 6 null bytes for techinfo/tags */
357 };
358
359 static unsigned sizeof_afhi_buf(const struct afh_info *afhi)
360 {
361         if (!afhi)
362                 return 0;
363         return MIN_AFHI_SIZE
364                 + strlen(afhi->techinfo)
365                 + strlen(afhi->tags.artist)
366                 + strlen(afhi->tags.title)
367                 + strlen(afhi->tags.year)
368                 + strlen(afhi->tags.album)
369                 + strlen(afhi->tags.comment);
370 }
371
372 static void save_afhi(struct afh_info *afhi, char *buf)
373 {
374         char *p;
375
376         if (!afhi)
377                 return;
378         write_u32(buf + AFHI_SECONDS_TOTAL_OFFSET, afhi->seconds_total);
379         write_u32(buf + AFHI_BITRATE_OFFSET, afhi->bitrate);
380         write_u32(buf + AFHI_FREQUENCY_OFFSET, afhi->frequency);
381         write_u32(buf + AFHI_UNUSED1_OFFSET, 0);
382         write_u32(buf + AFHI_HEADER_LEN_OFFSET, afhi->header_len);
383         write_u8(buf + AFHI_CHANNELS_OFFSET, afhi->channels);
384         write_u32(buf + CHUNKS_TOTAL_OFFSET, afhi->chunks_total);
385         write_u32(buf + HEADER_LEN_OFFSET, afhi->header_len);
386         write_u32(buf + AFHI_UNUSED2_OFFSET, 0);
387         write_u32(buf + CHUNK_TV_TV_SEC_OFFSET, afhi->chunk_tv.tv_sec);
388         write_u32(buf + CHUNK_TV_TV_USEC_OFFSET, afhi->chunk_tv.tv_usec);
389         p = buf + AFHI_INFO_STRING_OFFSET;
390         /* The sprintf's below are OK as our caller made sure that buf is large enough */
391         p += sprintf(p, "%s", afhi->techinfo) + 1;
392         p += sprintf(p, "%s", afhi->tags.artist) + 1;
393         p += sprintf(p, "%s", afhi->tags.title) + 1;
394         p += sprintf(p, "%s", afhi->tags.year) + 1;
395         p += sprintf(p, "%s", afhi->tags.album) + 1;
396         sprintf(p, "%s", afhi->tags.comment);
397 }
398
399 static void load_afhi(const char *buf, struct afh_info *afhi)
400 {
401         afhi->seconds_total = read_u32(buf + AFHI_SECONDS_TOTAL_OFFSET);
402         afhi->bitrate = read_u32(buf + AFHI_BITRATE_OFFSET);
403         afhi->frequency = read_u32(buf + AFHI_FREQUENCY_OFFSET);
404         afhi->header_len = read_u32(buf + AFHI_HEADER_LEN_OFFSET);
405         afhi->channels = read_u8(buf + AFHI_CHANNELS_OFFSET);
406         afhi->chunks_total = read_u32(buf + CHUNKS_TOTAL_OFFSET);
407         afhi->header_len = read_u32(buf + HEADER_LEN_OFFSET);
408         afhi->chunk_tv.tv_sec = read_u32(buf + CHUNK_TV_TV_SEC_OFFSET);
409         afhi->chunk_tv.tv_usec = read_u32(buf + CHUNK_TV_TV_USEC_OFFSET);
410         afhi->techinfo = (char *)buf + AFHI_INFO_STRING_OFFSET;
411         afhi->tags.artist = afhi->techinfo + strlen(afhi->techinfo) + 1;
412         afhi->tags.title = afhi->tags.artist + strlen(afhi->tags.artist) + 1;
413         afhi->tags.year = afhi->tags.title + strlen(afhi->tags.title) + 1;
414         afhi->tags.album = afhi->tags.year + strlen(afhi->tags.year) + 1;
415         afhi->tags.comment = afhi->tags.album + strlen(afhi->tags.album) + 1;
416 }
417
418 static unsigned sizeof_chunk_table(struct afh_info *afhi)
419 {
420         if (!afhi)
421                 return 0;
422         return 4 * (afhi->chunks_total + 1);
423 }
424
425 static uint32_t save_chunk_table(struct afh_info *afhi, char *buf)
426 {
427         int i;
428         uint32_t max = 0, old = 0;
429
430         for (i = 0; i <= afhi->chunks_total; i++) {
431                 uint32_t val = afhi->chunk_table[i];
432                 write_u32(buf + 4 * i, val);
433                 /*
434                  * If the first chunk is the header, do not consider it for the
435                  * calculation of the largest chunk size.
436                  */
437                 if (i == 0 || (i == 1 && afhi->header_len > 0)) {
438                         old = val;
439                         continue;
440                 }
441                 max = PARA_MAX(max, val - old);
442                 old = val;
443         }
444         return max;
445 }
446
447 static void load_chunk_table(struct afh_info *afhi, char *buf)
448 {
449         int i;
450
451         afhi->chunk_table = para_malloc(sizeof_chunk_table(afhi));
452         for (i = 0; i <= afhi->chunks_total; i++)
453                 afhi->chunk_table[i] = read_u32(buf + 4 * i);
454 }
455
456 /**
457  * Get the row of the audio file table corresponding to the given path.
458  *
459  * \param path The full path of the audio file.
460  * \param row Result pointer.
461  *
462  * \return Standard.
463  */
464 int aft_get_row_of_path(const char *path, struct osl_row **row)
465 {
466         struct osl_object obj = {.data = (char *)path, .size = strlen(path) + 1};
467
468         return osl(osl_get_row(audio_file_table, AFTCOL_PATH, &obj, row));
469 }
470
471 /**
472  * Get the row of the audio file table corresponding to the given hash value.
473  *
474  * \param hash The hash value of the desired audio file.
475  * \param row Result pointer.
476  *
477  * \return Standard.
478  */
479 static int aft_get_row_of_hash(unsigned char *hash, struct osl_row **row)
480 {
481         const struct osl_object obj = {.data = hash, .size = HASH_SIZE};
482         return osl(osl_get_row(audio_file_table, AFTCOL_HASH, &obj, row));
483 }
484
485 /*
486  * Get the audio file selector info object of a row.
487  *
488  * \param row Pointer to a row in the audio file table.
489  * \param obj Result pointer.
490  *
491  * \return Standard.
492  */
493 static int get_afsi_object_of_row(const struct osl_row *row,
494                 struct osl_object *obj)
495 {
496         return osl(osl_get_object(audio_file_table, row, AFTCOL_AFSI, obj));
497 }
498
499 /**
500  * Get the osl object holding the audio file selector info, given a path.
501  *
502  *
503  * \param path The full path of the audio file.
504  * \param obj Result pointer.
505  *
506  * \return Positive on success, negative on errors.
507  */
508 static int get_afsi_object_of_path(const char *path, struct osl_object *obj)
509 {
510         struct osl_row *row;
511         int ret = aft_get_row_of_path(path, &row);
512         if (ret < 0)
513                 return ret;
514         return get_afsi_object_of_row(row, obj);
515 }
516
517 /**
518  * Get the audio file selector info, given a row of the audio file table.
519  *
520  * \param row Pointer to a row in the audio file table.
521  * \param afsi Result pointer.
522  *
523  * \return Positive on success, negative on errors.
524  */
525 int get_afsi_of_row(const struct osl_row *row, struct afs_info *afsi)
526 {
527         struct osl_object obj;
528         int ret = get_afsi_object_of_row(row, &obj);
529         if (ret < 0)
530                 return ret;
531         return load_afsi(afsi, &obj);
532 }
533
534 /*
535  * Get the audio file selector info, given the path of an audio table.
536  *
537  * \param path The full path of the audio file.
538  * \param afsi Result pointer.
539  *
540  * \return Standard.
541  */
542 static int get_afsi_of_path(const char *path, struct afs_info *afsi)
543 {
544         struct osl_object obj;
545         int ret = get_afsi_object_of_path(path, &obj);
546         if (ret < 0)
547                 return ret;
548         return load_afsi(afsi, &obj);
549 }
550
551 /**
552  * Get the path of an audio file, given a row of the audio file table.
553  *
554  * \param row Pointer to a row in the audio file table.
555  * \param path Result pointer.
556  *
557  * The result is a pointer to mmapped data. The caller must not attempt
558  * to free it.
559  *
560  * \return Standard.
561  */
562 int get_audio_file_path_of_row(const struct osl_row *row, char **path)
563 {
564         struct osl_object path_obj;
565         int ret = osl(osl_get_object(audio_file_table, row, AFTCOL_PATH,
566                 &path_obj));
567         if (ret < 0)
568                 return ret;
569         *path = path_obj.data;
570         return 1;
571 }
572
573 /**
574  * Get the object containing the hash value of an audio file, given a row.
575  *
576  * \param row Pointer to a row of the audio file table.
577  * \param obj Result pointer.
578  *
579  * \return The return value of the underlying call to osl_get_object().
580  *
581  * \sa get_hash_of_row().
582  */
583 static int get_hash_object_of_aft_row(const struct osl_row *row,
584                 struct osl_object *obj)
585 {
586         return osl(osl_get_object(audio_file_table, row, AFTCOL_HASH, obj));
587 }
588
589 /**
590  * Get the hash value of an audio file, given a row of the audio file table.
591  *
592  * \param row Pointer to a row of the audio file table.
593  * \param hash Result pointer.
594  *
595  * \a hash points to mapped data and must not be freed by the caller.
596  *
597  * \return The return value of the underlying call to
598  * get_hash_object_of_aft_row().
599  */
600 static int get_hash_of_row(const struct osl_row *row, unsigned char **hash)
601 {
602         struct osl_object obj;
603         int ret = get_hash_object_of_aft_row(row, &obj);
604
605         if (ret < 0)
606                 return ret;
607         *hash = obj.data;
608         return 1;
609 }
610
611 /**
612  * Get the audio format handler info, given a row of the audio file table.
613  *
614  * \param row Pointer to a row of the audio file table.
615  * \param afhi Result pointer.
616  *
617  * \return The return value of the underlying call to osl_get_object().
618  *
619  * \sa get_chunk_table_of_row().
620  */
621 int get_afhi_of_row(const struct osl_row *row, struct afh_info *afhi)
622 {
623         struct osl_object obj;
624         int ret = osl(osl_get_object(audio_file_table, row, AFTCOL_AFHI,
625                 &obj));
626         if (ret < 0)
627                 return ret;
628         load_afhi(obj.data, afhi);
629         return 1;
630 }
631
632 /* returns shmid on success */
633 static int save_afd(struct audio_file_data *afd)
634 {
635         size_t size = sizeof(*afd) + sizeof_chunk_table(&afd->afhi);
636         int shmid, ret = shm_new(size);
637         void *shm_afd;
638         char *buf;
639
640         if (ret < 0)
641                 return ret;
642         shmid = ret;
643         ret = shm_attach(shmid, ATTACH_RW, &shm_afd);
644         if (ret < 0)
645                 goto err;
646         buf = shm_afd;
647         buf += sizeof(*afd);
648         afd->max_chunk_size = save_chunk_table(&afd->afhi, buf);
649         *(struct audio_file_data *)shm_afd = *afd;
650         shm_detach(shm_afd);
651         return shmid;
652 err:
653         shm_destroy(shmid);
654         return ret;
655 }
656
657 /**
658  * Extract a afd stored in a shared memory area.
659  *
660  * Attach the shared memory area given by \a shmid, load the audio file data
661  * stored therein and detach the area afterwards.  Called by vss, after
662  * receiving a positive response to the request for the next audio file.
663  +
664  * \param shmid The identifier of the shared memory area containing the afd.
665  * \param afd Result pointer.
666  *
667  * \return Standard.
668  */
669 int load_afd(int shmid, struct audio_file_data *afd)
670 {
671         void *shm_afd;
672         int ret;
673
674         ret = shm_attach(shmid, ATTACH_RO, &shm_afd);
675         if (ret < 0)
676                 return ret;
677         *afd = *(struct audio_file_data *)shm_afd;
678         load_chunk_table(&afd->afhi, shm_afd + sizeof(*afd));
679         shm_detach(shm_afd);
680         return 1;
681 }
682
683 static int get_local_time(uint64_t *seconds, char *buf, size_t size,
684         time_t current_time, enum ls_listing_mode lm)
685 {
686         struct tm t;
687
688         if (!localtime_r((time_t *)seconds, &t))
689                 return -E_LOCALTIME;
690         if (lm == LS_MODE_MBOX) {
691                 if (!strftime(buf, size, "%c", &t))
692                         return -E_STRFTIME;
693                 return 1;
694         }
695         if (*seconds + 6 * 30 * 24 * 3600 > current_time) {
696                 if (!strftime(buf, size, "%b %e %k:%M", &t))
697                         return -E_STRFTIME;
698                 return 1;
699         }
700         if (!strftime(buf, size, "%b %e  %Y", &t))
701                 return -E_STRFTIME;
702         return 1;
703 }
704
705 /** Compute the number of (decimal) digits of a number. */
706 #define GET_NUM_DIGITS(x, num) { \
707         typeof((x)) _tmp = PARA_ABS(x); \
708         *num = 1; \
709         if ((_tmp)) \
710                 while ((_tmp) > 9) { \
711                         (_tmp) /= 10; \
712                         (*num)++; \
713                 } \
714         }
715
716 __a_const static short unsigned get_duration_width(int seconds)
717 {
718         short unsigned width;
719         unsigned hours = seconds / 3600, mins = (seconds % 3600) / 60;
720
721         if (!hours) /* less than one hour => m:ss or mm:ss => 4 or 5 digits */
722                 return 4 + (mins > 9);
723         /* more than one hour => h:mm:ss, hh:mm:ss, hhh:mm:ss, ... */
724         GET_NUM_DIGITS(hours, &width);
725         return width + 6;
726 }
727
728 static void get_duration_buf(int seconds, char *buf, struct ls_options *opts)
729 {
730         unsigned hours = seconds / 3600, mins = (seconds % 3600) / 60;
731         short unsigned max_width;
732
733         if (!hours) { /* m:ss or mm:ss */
734                 max_width = opts->mode == LS_MODE_LONG?
735                         opts->widths.duration_width : 4;
736                 sprintf(buf, "%*u:%02u", max_width - 3, mins, seconds % 60);
737         } else { /* more than one hour => h:mm:ss, hh:mm:ss, hhh:mm:ss, ... */
738                 max_width = opts->mode == LS_MODE_LONG?
739                         opts->widths.duration_width : 7;
740                 sprintf(buf, "%*u:%02u:%02u", max_width - 6, hours, mins,
741                         seconds % 60);
742         }
743 }
744
745 static int write_attribute_items(struct para_buffer *b,
746                 const char *att_bitmap, struct afs_info *afsi)
747 {
748         char *att_text;
749         int ret;
750
751         WRITE_STATUS_ITEM(b, SI_ATTRIBUTES_BITMAP, "%s\n", att_bitmap);
752         ret = get_attribute_text(&afsi->attributes, " ", &att_text);
753         if (ret < 0)
754                 return ret;
755         WRITE_STATUS_ITEM(b, SI_ATTRIBUTES_TXT, "%s\n", att_text);
756         free(att_text);
757         return ret;
758 }
759
760 static void write_lyrics_items(struct para_buffer *b, struct afs_info *afsi)
761 {
762         char *lyrics_name;
763
764         WRITE_STATUS_ITEM(b, SI_LYRICS_ID, "%u\n", afsi->lyrics_id);
765         lyr_get_name_by_id(afsi->lyrics_id, &lyrics_name);
766         WRITE_STATUS_ITEM(b, SI_LYRICS_NAME, "%s\n", lyrics_name?
767                 lyrics_name : "(none)");
768 }
769
770 static void write_image_items(struct para_buffer *b, struct afs_info *afsi)
771 {
772         char *image_name;
773
774         WRITE_STATUS_ITEM(b, SI_IMAGE_ID, "%u\n", afsi->image_id);
775         img_get_name_by_id(afsi->image_id, &image_name);
776         WRITE_STATUS_ITEM(b, SI_IMAGE_NAME, "%s\n", image_name?
777                 image_name : "(none)");
778 }
779
780 static void write_filename_items(struct para_buffer *b, const char *path,
781                 unsigned flags)
782 {
783         char *val;
784
785         if (!(flags & LS_FLAG_FULL_PATH)) {
786                 WRITE_STATUS_ITEM(b, SI_BASENAME, "%s\n", path);
787                 return;
788         }
789         WRITE_STATUS_ITEM(b, SI_PATH, "%s\n", path);
790         val = para_basename(path);
791         WRITE_STATUS_ITEM(b, SI_BASENAME, "%s\n", val? val : "");
792         val = para_dirname(path);
793         WRITE_STATUS_ITEM(b, SI_DIRECTORY, "%s\n", val? val : "");
794         free(val);
795 }
796
797 static int print_chunk_table(struct ls_data *d, struct para_buffer *b)
798 {
799         struct osl_object chunk_table_obj;
800         struct osl_row *aft_row;
801         int ret, i;
802         char *buf;
803
804         ret = aft_get_row_of_hash(d->hash, &aft_row);
805         if (ret < 0)
806                 return ret;
807         ret = osl(osl_open_disk_object(audio_file_table, aft_row,
808                 AFTCOL_CHUNKS, &chunk_table_obj));
809         if (ret < 0)
810                 return ret;
811         para_printf(b, "%s\n"
812                 "chunk_time: %lu:%lu\nchunk_offsets: ",
813                 d->path,
814                 (long unsigned) d->afhi.chunk_tv.tv_sec,
815                 (long unsigned) d->afhi.chunk_tv.tv_usec
816         );
817         buf = chunk_table_obj.data;
818         for (i = 0; i <= d->afhi.chunks_total; i++)
819                 para_printf(b, "%u ", (unsigned) read_u32(buf + 4 * i));
820         para_printf(b, "\n");
821         ret = 1;
822         osl_close_disk_object(&chunk_table_obj);
823         return ret;
824 }
825
826 static void write_score(struct para_buffer *b, struct ls_data *d,
827                 struct ls_options *opts)
828 {
829         if (!(opts->flags & LS_FLAG_ADMISSIBLE_ONLY)) /* no score*/
830                 return;
831         WRITE_STATUS_ITEM(b, SI_SCORE, "%li\n", d->score);
832 }
833
834 static int print_list_item(struct ls_data *d, struct ls_options *opts,
835         struct para_buffer *b, time_t current_time)
836 {
837         int ret;
838         char att_buf[65];
839         char last_played_time[30];
840         char duration_buf[30]; /* nobody has an audio file long enough to overflow this */
841         struct afs_info *afsi = &d->afsi;
842         struct afh_info *afhi = &d->afhi;
843         char asc_hash[2 * HASH_SIZE + 1];
844
845         if (opts->mode == LS_MODE_SHORT) {
846                 para_printf(b, "%s\n", d->path);
847                 ret = 1;
848                 goto out;
849         }
850         if (opts->mode == LS_MODE_CHUNKS) {
851                 ret = print_chunk_table(d, b);
852                 goto out;
853         }
854         get_attribute_bitmap(&afsi->attributes, att_buf);
855         if (opts->flags & LS_FLAG_UNIXDATE)
856                 sprintf(last_played_time, "%llu",
857                         (long long unsigned)afsi->last_played);
858         else {
859                 ret = get_local_time(&afsi->last_played, last_played_time,
860                         sizeof(last_played_time), current_time, opts->mode);
861                 if (ret < 0)
862                         goto out;
863         }
864         get_duration_buf(afhi->seconds_total, duration_buf, opts);
865         if (opts->mode == LS_MODE_LONG) {
866                 struct ls_widths *w = &opts->widths;
867                 if (opts->flags & LS_FLAG_ADMISSIBLE_ONLY) {
868                         para_printf(b, "%*li ", opts->widths.score_width,
869                                 d->score);
870                 }
871                 para_printf(b,
872                         "%s "   /* attributes */
873                         "%*u "  /* amp */
874                         "%*d "  /* image_id  */
875                         "%*d "  /* lyrics_id */
876                         "%*d "  /* bitrate */
877                         "%*s "  /* audio format */
878                         "%*d "  /* frequency */
879                         "%d "   /* channels */
880                         "%s "   /* duration */
881                         "%*d "  /* num_played */
882                         "%s "   /* last_played */
883                         "%s\n", /* path */
884                         att_buf,
885                         w->amp_width, afsi->amp,
886                         w->image_id_width, afsi->image_id,
887                         w->lyrics_id_width, afsi->lyrics_id,
888                         w->bitrate_width, afhi->bitrate,
889                         w->audio_format_width,
890                         audio_format_name(afsi->audio_format_id),
891                         w->frequency_width, afhi->frequency,
892                         afhi->channels,
893                         duration_buf,
894                         w->num_played_width, afsi->num_played,
895                         last_played_time,
896                         d->path
897                 );
898                 ret = 1;
899                 goto out;
900         }
901         if (opts->mode == LS_MODE_MBOX) {
902                 const char *bn = para_basename(d->path);
903                 para_printf(b,
904                         "From foo@localhost %s\n"
905                         "Received: from\nTo: bar\nFrom: a\n"
906                         "Subject: %s\n\n",
907                         last_played_time,
908                         bn? bn : "?");
909         }
910         write_filename_items(b, d->path, opts->flags);
911         write_score(b, d, opts);
912         ret = write_attribute_items(b, att_buf, afsi);
913         if (ret < 0)
914                 goto out;
915         write_image_items(b, afsi);
916         write_lyrics_items(b, afsi);
917         hash_to_asc(d->hash, asc_hash);
918         WRITE_STATUS_ITEM(b, SI_HASH, "%s\n", asc_hash);
919         WRITE_STATUS_ITEM(b, SI_BITRATE, "%dkbit/s\n", afhi->bitrate);
920         WRITE_STATUS_ITEM(b, SI_FORMAT, "%s\n",
921                 audio_format_name(afsi->audio_format_id));
922         WRITE_STATUS_ITEM(b, SI_FREQUENCY, "%dHz\n", afhi->frequency);
923         WRITE_STATUS_ITEM(b, SI_CHANNELS, "%d\n", afhi->channels);
924         WRITE_STATUS_ITEM(b, SI_DURATION, "%s\n", duration_buf);
925         WRITE_STATUS_ITEM(b, SI_SECONDS_TOTAL, "%lu\n", afhi->seconds_total);
926         WRITE_STATUS_ITEM(b, SI_LAST_PLAYED, "%s\n", last_played_time);
927         WRITE_STATUS_ITEM(b, SI_NUM_PLAYED, "%d\n", afsi->num_played);
928         WRITE_STATUS_ITEM(b, SI_AMPLIFICATION, "%u\n", afsi->amp);
929         WRITE_STATUS_ITEM(b, SI_CHUNK_TIME, "%lu\n", tv2ms(&afhi->chunk_tv));
930         WRITE_STATUS_ITEM(b, SI_NUM_CHUNKS, "%lu\n", afhi->chunks_total);
931         WRITE_STATUS_ITEM(b, SI_TECHINFO, "%s\n", afhi->techinfo);
932         WRITE_STATUS_ITEM(b, SI_ARTIST, "%s\n", afhi->tags.artist);
933         WRITE_STATUS_ITEM(b, SI_TITLE, "%s\n", afhi->tags.title);
934         WRITE_STATUS_ITEM(b, SI_YEAR, "%s\n", afhi->tags.year);
935         WRITE_STATUS_ITEM(b, SI_ALBUM, "%s\n", afhi->tags.album);
936         WRITE_STATUS_ITEM(b, SI_COMMENT, "%s\n", afhi->tags.comment);
937         if (opts->mode == LS_MODE_MBOX) {
938                 struct osl_object lyrics_def;
939                 lyr_get_def_by_id(afsi->lyrics_id, &lyrics_def);
940                 if (lyrics_def.data) {
941                         para_printf(b, "Lyrics:\n~~~~~~~\n%s",
942                                 (char *)lyrics_def.data);
943                         osl_close_disk_object(&lyrics_def);
944                 }
945         }
946 out:
947         return ret;
948 }
949
950 static struct ls_data status_item_ls_data;
951 static struct osl_row *current_aft_row;
952
953 static void make_inode_status_items(struct para_buffer *pb)
954 {
955         struct stat statbuf = {.st_size = 0};
956         char *path, mtime_str[30] = "\0";
957         struct tm mtime_tm;
958         int ret;
959
960         ret = get_audio_file_path_of_row(current_aft_row, &path);
961         if (ret < 0)
962                 goto out;
963         ret = stat(path, &statbuf);
964         if (ret < 0)
965                 goto out;
966         localtime_r(&statbuf.st_mtime, &mtime_tm);
967         ret = strftime(mtime_str, 29, "%b %d %Y", &mtime_tm);
968         assert(ret > 0); /* number of bytes placed in mtime_str */
969 out:
970         WRITE_STATUS_ITEM(pb, SI_MTIME, "%s\n", mtime_str);
971         WRITE_STATUS_ITEM(pb, SI_FILE_SIZE, "%ld\n", statbuf.st_size / 1024);
972 }
973
974 static int make_status_items(void)
975 {
976         struct ls_options opts = {
977                 .flags = LS_FLAG_FULL_PATH | LS_FLAG_ADMISSIBLE_ONLY,
978                 .mode = LS_MODE_VERBOSE,
979         };
980         struct para_buffer pb = {.max_size = shm_get_shmmax() - 1};
981         time_t current_time;
982         int ret;
983
984         time(&current_time);
985         ret = print_list_item(&status_item_ls_data, &opts, &pb, current_time);
986         if (ret < 0)
987                 return ret;
988         make_inode_status_items(&pb);
989         free(status_items);
990         status_items = pb.buf;
991         memset(&pb, 0, sizeof(pb));
992         pb.max_size = shm_get_shmmax() - 1;
993         pb.flags = PBF_SIZE_PREFIX;
994         ret = print_list_item(&status_item_ls_data, &opts, &pb, current_time);
995         if (ret < 0) {
996                 free(status_items);
997                 status_items = NULL;
998                 return ret;
999         }
1000         make_inode_status_items(&pb);
1001         free(parser_friendly_status_items);
1002         parser_friendly_status_items = pb.buf;
1003         return 1;
1004 }
1005
1006 /**
1007  * Open the audio file with highest score and set up an afd structure.
1008  *
1009  * \param afd Result pointer.
1010  *
1011  * On success, the numplayed field of the audio file selector info is increased
1012  * and the lastplayed time is set to the current time. Finally, the score of
1013  * the audio file is updated.
1014  *
1015  * \return Positive shmid on success, negative on errors.
1016  */
1017 int open_and_update_audio_file(struct audio_file_data *afd)
1018 {
1019         unsigned char file_hash[HASH_SIZE];
1020         struct osl_object afsi_obj;
1021         struct afs_info new_afsi;
1022         int ret;
1023         struct afsi_change_event_data aced;
1024         struct osl_object map, chunk_table_obj;
1025         struct ls_data *d = &status_item_ls_data;
1026 again:
1027         ret = score_get_best(&current_aft_row, &d->score);
1028         if (ret < 0)
1029                 return ret;
1030         ret = get_hash_of_row(current_aft_row, &d->hash);
1031         if (ret < 0)
1032                 return ret;
1033         ret = get_audio_file_path_of_row(current_aft_row, &d->path);
1034         if (ret < 0)
1035                 return ret;
1036         PARA_NOTICE_LOG("%s\n", d->path);
1037         ret = get_afsi_object_of_row(current_aft_row, &afsi_obj);
1038         if (ret < 0)
1039                 return ret;
1040         ret = load_afsi(&d->afsi, &afsi_obj);
1041         if (ret < 0)
1042                 return ret;
1043         ret = get_afhi_of_row(current_aft_row, &afd->afhi);
1044         if (ret < 0)
1045                 return ret;
1046         d->afhi = afd->afhi;
1047         d->afhi.chunk_table = afd->afhi.chunk_table = NULL;
1048         ret = osl(osl_open_disk_object(audio_file_table, current_aft_row,
1049                 AFTCOL_CHUNKS, &chunk_table_obj));
1050         if (ret < 0)
1051                 return ret;
1052         ret = mmap_full_file(d->path, O_RDONLY, &map.data, &map.size, &afd->fd);
1053         if (ret < 0)
1054                 goto out;
1055         hash_function(map.data, map.size, file_hash);
1056         ret = hash_compare(file_hash, d->hash);
1057         para_munmap(map.data, map.size);
1058         if (ret) {
1059                 ret = -E_HASH_MISMATCH;
1060                 goto out;
1061         }
1062         new_afsi = d->afsi;
1063         new_afsi.num_played++;
1064         new_afsi.last_played = time(NULL);
1065         save_afsi(&new_afsi, &afsi_obj); /* in-place update */
1066
1067         afd->audio_format_id = d->afsi.audio_format_id;
1068         load_chunk_table(&afd->afhi, chunk_table_obj.data);
1069         aced.aft_row = current_aft_row;
1070         aced.old_afsi = &d->afsi;
1071         /*
1072          * No need to update the status items as the AFSI_CHANGE event will
1073          * recreate them.
1074          */
1075         afs_event(AFSI_CHANGE, NULL, &aced);
1076         ret = save_afd(afd);
1077 out:
1078         free(afd->afhi.chunk_table);
1079         osl_close_disk_object(&chunk_table_obj);
1080         if (ret < 0) {
1081                 PARA_ERROR_LOG("%s: %s\n", d->path, para_strerror(-ret));
1082                 ret = score_delete(current_aft_row);
1083                 if (ret >= 0)
1084                         goto again;
1085         }
1086         return ret;
1087 }
1088
1089 static int ls_audio_format_compare(const void *a, const void *b)
1090 {
1091         struct ls_data *d1 = *(struct ls_data **)a, *d2 = *(struct ls_data **)b;
1092         return NUM_COMPARE(d1->afsi.audio_format_id, d2->afsi.audio_format_id);
1093 }
1094
1095 static int ls_duration_compare(const void *a, const void *b)
1096 {
1097         struct ls_data *d1 = *(struct ls_data **)a, *d2 = *(struct ls_data **)b;
1098         return NUM_COMPARE(d1->afhi.seconds_total, d2->afhi.seconds_total);
1099 }
1100
1101 static int ls_bitrate_compare(const void *a, const void *b)
1102 {
1103         struct ls_data *d1 = *(struct ls_data **)a, *d2 = *(struct ls_data **)b;
1104         return NUM_COMPARE(d1->afhi.bitrate, d2->afhi.bitrate);
1105 }
1106
1107 static int ls_lyrics_id_compare(const void *a, const void *b)
1108 {
1109         struct ls_data *d1 = *(struct ls_data **)a, *d2 = *(struct ls_data **)b;
1110         return NUM_COMPARE(d1->afsi.lyrics_id, d2->afsi.lyrics_id);
1111 }
1112
1113 static int ls_image_id_compare(const void *a, const void *b)
1114 {
1115         struct ls_data *d1 = *(struct ls_data **)a, *d2 = *(struct ls_data **)b;
1116         return NUM_COMPARE(d1->afsi.image_id, d2->afsi.image_id);
1117 }
1118
1119 static int ls_channels_compare(const void *a, const void *b)
1120 {
1121         struct ls_data *d1 = *(struct ls_data **)a, *d2 = *(struct ls_data **)b;
1122         return NUM_COMPARE(d1->afhi.channels, d2->afhi.channels);
1123 }
1124
1125 static int ls_frequency_compare(const void *a, const void *b)
1126 {
1127         struct ls_data *d1 = *(struct ls_data **)a, *d2 = *(struct ls_data **)b;
1128         return NUM_COMPARE(d1->afhi.frequency, d2->afhi.frequency);
1129 }
1130
1131 static int ls_num_played_compare(const void *a, const void *b)
1132 {
1133         struct ls_data *d1 = *(struct ls_data **)a, *d2 = *(struct ls_data **)b;
1134         return NUM_COMPARE(d1->afsi.num_played, d2->afsi.num_played);
1135 }
1136
1137 static int ls_last_played_compare(const void *a, const void *b)
1138 {
1139         struct ls_data *d1 = *(struct ls_data **)a, *d2 = *(struct ls_data **)b;
1140         return NUM_COMPARE(d1->afsi.last_played, d2->afsi.last_played);
1141 }
1142
1143 static int ls_score_compare(const void *a, const void *b)
1144 {
1145         struct ls_data *d1 = *(struct ls_data **)a, *d2 = *(struct ls_data **)b;
1146         return NUM_COMPARE(d1->score, d2->score);
1147 }
1148
1149 static int ls_path_compare(const void *a, const void *b)
1150 {
1151         struct ls_data *d1 = *(struct ls_data **)a, *d2 = *(struct ls_data **)b;
1152         return strcmp(d1->path, d2->path);
1153 }
1154
1155 static int sort_matching_paths(struct ls_options *options)
1156 {
1157         size_t nmemb = options->num_matching_paths;
1158         size_t size = sizeof(*options->data_ptr);
1159         int (*compar)(const void *, const void *);
1160         int i;
1161
1162         options->data_ptr = para_malloc(nmemb * sizeof(*options->data_ptr));
1163         for (i = 0; i < nmemb; i++)
1164                 options->data_ptr[i] = options->data + i;
1165
1166         /* In these cases the array is already sorted */
1167         if (options->sorting == LS_SORT_BY_PATH
1168                 && !(options->flags & LS_FLAG_ADMISSIBLE_ONLY)
1169                 && (options->flags & LS_FLAG_FULL_PATH))
1170                 return 1;
1171         if (options->sorting == LS_SORT_BY_SCORE &&
1172                         options->flags & LS_FLAG_ADMISSIBLE_ONLY)
1173                 return 1;
1174
1175         switch (options->sorting) {
1176         case LS_SORT_BY_PATH:
1177                 compar = ls_path_compare; break;
1178         case LS_SORT_BY_SCORE:
1179                 compar = ls_score_compare; break;
1180         case LS_SORT_BY_LAST_PLAYED:
1181                 compar = ls_last_played_compare; break;
1182         case LS_SORT_BY_NUM_PLAYED:
1183                 compar = ls_num_played_compare; break;
1184         case LS_SORT_BY_FREQUENCY:
1185                 compar = ls_frequency_compare; break;
1186         case LS_SORT_BY_CHANNELS:
1187                 compar = ls_channels_compare; break;
1188         case LS_SORT_BY_IMAGE_ID:
1189                 compar = ls_image_id_compare; break;
1190         case LS_SORT_BY_LYRICS_ID:
1191                 compar = ls_lyrics_id_compare; break;
1192         case LS_SORT_BY_BITRATE:
1193                 compar = ls_bitrate_compare; break;
1194         case LS_SORT_BY_DURATION:
1195                 compar = ls_duration_compare; break;
1196         case LS_SORT_BY_AUDIO_FORMAT:
1197                 compar = ls_audio_format_compare; break;
1198         default:
1199                 return -E_BAD_SORT;
1200         }
1201         qsort(options->data_ptr, nmemb, size, compar);
1202         return 1;
1203 }
1204
1205 /* row is either an aft_row or a row of the score table */
1206 /* TODO: Only compute widths if we need them */
1207 static int prepare_ls_row(struct osl_row *row, void *ls_opts)
1208 {
1209         int ret, i;
1210         struct ls_options *options = ls_opts;
1211         struct ls_data *d;
1212         struct ls_widths *w;
1213         unsigned short num_digits;
1214         unsigned tmp;
1215         struct osl_row *aft_row;
1216         long score;
1217         char *path;
1218
1219         if (options->flags & LS_FLAG_ADMISSIBLE_ONLY) {
1220                 ret = get_score_and_aft_row(row, &score, &aft_row);
1221                 if (ret < 0)
1222                         return ret;
1223         } else {
1224                 aft_row = row;
1225                 score = 0;
1226         }
1227         ret = get_audio_file_path_of_row(aft_row, &path);
1228         if (ret < 0)
1229                 return ret;
1230         if (!(options->flags & LS_FLAG_FULL_PATH)) {
1231                 char *p = strrchr(path, '/');
1232                 if (p)
1233                         path = p + 1;
1234         }
1235         if (options->num_patterns) {
1236                 for (i = 0; i < options->num_patterns; i++) {
1237                         ret = fnmatch(options->patterns[i], path, 0);
1238                         if (!ret)
1239                                 break;
1240                         if (ret == FNM_NOMATCH)
1241                                 continue;
1242                         return -E_FNMATCH;
1243                 }
1244                 if (i >= options->num_patterns) /* no match */
1245                         return 1;
1246         }
1247         tmp = options->num_matching_paths++;
1248         if (options->num_matching_paths > options->array_size) {
1249                 options->array_size++;
1250                 options->array_size *= 2;
1251                 options->data = para_realloc(options->data, options->array_size
1252                         * sizeof(*options->data));
1253         }
1254         d = options->data + tmp;
1255         ret = get_afsi_of_row(aft_row, &d->afsi);
1256         if (ret < 0)
1257                 return ret;
1258         ret = get_afhi_of_row(aft_row, &d->afhi);
1259         if (ret < 0)
1260                 return ret;
1261         d->path = path;
1262         ret = get_hash_of_row(aft_row, &d->hash);
1263         if (ret < 0)
1264                 goto err;
1265         w = &options->widths;
1266         GET_NUM_DIGITS(d->afsi.image_id, &num_digits);
1267         w->image_id_width = PARA_MAX(w->image_id_width, num_digits);
1268         GET_NUM_DIGITS(d->afsi.lyrics_id, &num_digits);
1269         w->lyrics_id_width = PARA_MAX(w->lyrics_id_width, num_digits);
1270         GET_NUM_DIGITS(d->afhi.bitrate, &num_digits);
1271         w->bitrate_width = PARA_MAX(w->bitrate_width, num_digits);
1272         GET_NUM_DIGITS(d->afhi.frequency, &num_digits);
1273         w->frequency_width = PARA_MAX(w->frequency_width, num_digits);
1274         GET_NUM_DIGITS(d->afsi.num_played, &num_digits);
1275         w->num_played_width = PARA_MAX(w->num_played_width, num_digits);
1276         /* get the number of chars to print this amount of time */
1277         num_digits = get_duration_width(d->afhi.seconds_total);
1278         w->duration_width = PARA_MAX(w->duration_width, num_digits);
1279         GET_NUM_DIGITS(d->afsi.amp, &num_digits);
1280         w->amp_width = PARA_MAX(w->amp_width, num_digits);
1281         num_digits = strlen(audio_format_name(d->afsi.audio_format_id));
1282         w->audio_format_width = PARA_MAX(w->audio_format_width, num_digits);
1283         if (options->flags & LS_FLAG_ADMISSIBLE_ONLY) {
1284                 GET_NUM_DIGITS(score, &num_digits);
1285                 num_digits++; /* add one for the sign (space or "-") */
1286                 w->score_width = PARA_MAX(w->score_width, num_digits);
1287                 d->score = score;
1288         }
1289         return 1;
1290 err:
1291         return ret;
1292 }
1293
1294 static void com_ls_callback(int fd, const struct osl_object *query)
1295 {
1296         struct ls_options *opts = query->data;
1297         char *p, *pattern_start = (char *)query->data + sizeof(*opts);
1298         struct para_buffer b = {
1299                 .max_size = shm_get_shmmax(),
1300                 .flags = (opts->mode == LS_MODE_PARSER)? PBF_SIZE_PREFIX : 0,
1301                 .max_size_handler = afs_max_size_handler,
1302                 .private_data = &(struct afs_max_size_handler_data) {
1303                         .fd = fd,
1304                         .band = SBD_OUTPUT
1305                 }
1306         };
1307         int i = 0, ret;
1308         time_t current_time;
1309
1310         if (opts->num_patterns) {
1311                 opts->patterns = para_malloc(opts->num_patterns * sizeof(char *));
1312                 for (i = 0, p = pattern_start; i < opts->num_patterns; i++) {
1313                         opts->patterns[i] = p;
1314                         p += strlen(p) + 1;
1315                 }
1316         } else
1317                 opts->patterns = NULL;
1318         if (opts->flags & LS_FLAG_ADMISSIBLE_ONLY)
1319                 ret = admissible_file_loop(opts, prepare_ls_row);
1320         else
1321                 ret = osl(osl_rbtree_loop(audio_file_table, AFTCOL_PATH, opts,
1322                         prepare_ls_row));
1323         if (ret < 0)
1324                 goto out;
1325         if (opts->num_matching_paths == 0) {
1326                 if (opts->num_patterns > 0)
1327                         para_printf(&b, "no matches\n");
1328                 goto out;
1329         }
1330         ret = sort_matching_paths(opts);
1331         if (ret < 0)
1332                 goto out;
1333         time(&current_time);
1334         if (opts->flags & LS_FLAG_REVERSE)
1335                 for (i = opts->num_matching_paths - 1; i >= 0; i--) {
1336                         ret = print_list_item(opts->data_ptr[i], opts, &b, current_time);
1337                         if (ret < 0)
1338                                 goto out;
1339                 }
1340         else
1341                 for (i = 0; i < opts->num_matching_paths; i++) {
1342                         ret = print_list_item(opts->data_ptr[i], opts, &b, current_time);
1343                         if (ret < 0)
1344                                 goto out;
1345                 }
1346 out:
1347         if (b.offset)
1348                 pass_buffer_as_shm(fd, SBD_OUTPUT, b.buf, b.offset);
1349         free(b.buf);
1350         free(opts->data);
1351         free(opts->data_ptr);
1352         free(opts->patterns);
1353 }
1354
1355 /*
1356  * TODO: flags -h (sort by hash)
1357  */
1358 int com_ls(struct command_context *cc)
1359 {
1360         int i, ret;
1361         unsigned flags = 0;
1362         enum ls_sorting_method sort = LS_SORT_BY_PATH;
1363         enum ls_listing_mode mode = LS_MODE_SHORT;
1364         struct ls_options opts = {.patterns = NULL};
1365         struct osl_object query = {.data = &opts, .size = sizeof(opts)};
1366
1367         for (i = 1; i < cc->argc; i++) {
1368                 const char *arg = cc->argv[i];
1369                 if (arg[0] != '-')
1370                         break;
1371                 if (!strcmp(arg, "--")) {
1372                         i++;
1373                         break;
1374                 }
1375                 if (!strncmp(arg, "-l", 2)) {
1376                         if (!*(arg + 2)) {
1377                                 mode = LS_MODE_LONG;
1378                                 continue;
1379                         }
1380                         if (*(arg + 3))
1381                                 return -E_AFT_SYNTAX;
1382                         switch(*(arg + 2)) {
1383                         case 's':
1384                                 mode = LS_MODE_SHORT;
1385                                 continue;
1386                         case 'l':
1387                                 mode = LS_MODE_LONG;
1388                                 continue;
1389                         case 'v':
1390                                 mode = LS_MODE_VERBOSE;
1391                                 continue;
1392                         case 'm':
1393                                 mode = LS_MODE_MBOX;
1394                                 continue;
1395                         case 'c':
1396                                 mode = LS_MODE_CHUNKS;
1397                                 continue;
1398                         case 'p':
1399                                 mode = LS_MODE_PARSER;
1400                                 continue;
1401                         default:
1402                                 return -E_AFT_SYNTAX;
1403                         }
1404                 }
1405                 if (!strcmp(arg, "-p")) {
1406                         flags |= LS_FLAG_FULL_PATH;
1407                         continue;
1408                 }
1409                 if (!strcmp(arg, "-a")) {
1410                         flags |= LS_FLAG_ADMISSIBLE_ONLY;
1411                         continue;
1412                 }
1413                 if (!strcmp(arg, "-r")) {
1414                         flags |= LS_FLAG_REVERSE;
1415                         continue;
1416                 }
1417                 if (!strcmp(arg, "-d")) {
1418                         flags |= LS_FLAG_UNIXDATE;
1419                         continue;
1420                 }
1421                 if (!strncmp(arg, "-s", 2)) {
1422                         if (!*(arg + 2) || *(arg + 3))
1423                                 return -E_AFT_SYNTAX;
1424                         switch(*(arg + 2)) {
1425                         case 'p':
1426                                 sort = LS_SORT_BY_PATH;
1427                                 continue;
1428                         case 's': /* -ss implies -a */
1429                                 sort = LS_SORT_BY_SCORE;
1430                                 flags |= LS_FLAG_ADMISSIBLE_ONLY;
1431                                 continue;
1432                         case 'l':
1433                                 sort = LS_SORT_BY_LAST_PLAYED;
1434                                 continue;
1435                         case 'n':
1436                                 sort = LS_SORT_BY_NUM_PLAYED;
1437                                 continue;
1438                         case 'f':
1439                                 sort = LS_SORT_BY_FREQUENCY;
1440                                 continue;
1441                         case 'c':
1442                                 sort = LS_SORT_BY_CHANNELS;
1443                                 continue;
1444                         case 'i':
1445                                 sort = LS_SORT_BY_IMAGE_ID;
1446                                 continue;
1447                         case 'y':
1448                                 sort = LS_SORT_BY_LYRICS_ID;
1449                                 continue;
1450                         case 'b':
1451                                 sort = LS_SORT_BY_BITRATE;
1452                                 continue;
1453                         case 'd':
1454                                 sort = LS_SORT_BY_DURATION;
1455                                 continue;
1456                         case 'a':
1457                                 sort = LS_SORT_BY_AUDIO_FORMAT;
1458                                 continue;
1459                         default:
1460                                 return -E_AFT_SYNTAX;
1461                         }
1462                 }
1463                 return -E_AFT_SYNTAX;
1464         }
1465         opts.flags = flags;
1466         opts.sorting = sort;
1467         opts.mode = mode;
1468         opts.num_patterns = cc->argc - i;
1469         ret = send_option_arg_callback_request(&query, opts.num_patterns,
1470                 cc->argv + i, com_ls_callback, afs_cb_result_handler, cc);
1471         return ret;
1472 }
1473
1474 /**
1475  * Call the given function for each file in the audio file table.
1476  *
1477  * \param private_data An arbitrary data pointer, passed to \a func.
1478  * \param func The custom function to be called.
1479  *
1480  * \return Standard.
1481  */
1482 int audio_file_loop(void *private_data, osl_rbtree_loop_func *func)
1483 {
1484         return osl(osl_rbtree_loop(audio_file_table, AFTCOL_HASH, private_data,
1485                 func));
1486 }
1487
1488 static struct osl_row *find_hash_sister(unsigned char *hash)
1489 {
1490         const struct osl_object obj = {.data = hash, .size = HASH_SIZE};
1491         struct osl_row *row;
1492
1493         osl_get_row(audio_file_table, AFTCOL_HASH, &obj, &row);
1494         return row;
1495 }
1496
1497 /** The format of the data stored by save_audio_file_data(). */
1498 enum com_add_buffer_offsets {
1499         /** afhi (if present) starts here. */
1500         CAB_AFHI_OFFSET_POS = 0,
1501         /** Start of the chunk table (if present). */
1502         CAB_CHUNKS_OFFSET_POS = 2,
1503         /** Audio format id. */
1504         CAB_AUDIO_FORMAT_OFFSET = 4,
1505         /** Flags given to the add command. */
1506         CAB_FLAGS_OFFSET = 5,
1507         /** The hash of the audio file being added. */
1508         CAB_HASH_OFFSET = 9,
1509         /** Start of the path of the audio file. */
1510         CAB_PATH_OFFSET = (CAB_HASH_OFFSET + HASH_SIZE),
1511 };
1512
1513 /*
1514  * Store the given data to a single buffer. Doesn't need the audio file selector
1515  * info struct as the server knows it as well.
1516  *
1517  * It's OK to call this with afhi == NULL. In this case, the audio format
1518  * handler info won't be stored in the buffer.
1519  */
1520 static void save_add_callback_buffer(unsigned char *hash, const char *path,
1521                 struct afh_info *afhi, uint32_t flags,
1522                 uint8_t audio_format_num, struct osl_object *obj)
1523 {
1524         size_t path_len = strlen(path) + 1;
1525         size_t afhi_size = sizeof_afhi_buf(afhi);
1526         size_t size = CAB_PATH_OFFSET + path_len + afhi_size
1527                 + sizeof_chunk_table(afhi);
1528         char *buf = para_malloc(size);
1529         uint16_t pos;
1530
1531         write_u8(buf + CAB_AUDIO_FORMAT_OFFSET, audio_format_num);
1532         write_u32(buf + CAB_FLAGS_OFFSET, flags);
1533
1534         memcpy(buf + CAB_HASH_OFFSET, hash, HASH_SIZE);
1535         strcpy(buf + CAB_PATH_OFFSET, path);
1536
1537         pos = CAB_PATH_OFFSET + path_len;
1538         PARA_DEBUG_LOG("size: %zu, afhi starts at %d\n", size, pos);
1539         PARA_DEBUG_LOG("last afhi byte: %p, pos %zu\n", buf + pos + afhi_size - 1,
1540                 pos + afhi_size - 1);
1541         write_u16(buf + CAB_AFHI_OFFSET_POS, pos);
1542         save_afhi(afhi, buf + pos);
1543
1544         pos += afhi_size;
1545         PARA_DEBUG_LOG("size: %zu, chunks start at %d\n", size, pos);
1546         write_u16(buf + CAB_CHUNKS_OFFSET_POS, pos);
1547         if (afhi)
1548                 save_chunk_table(afhi, buf + pos);
1549         PARA_DEBUG_LOG("last byte in buf: %p\n", buf + size - 1);
1550         obj->data = buf;
1551         obj->size = size;
1552 }
1553
1554 /*
1555
1556 Overview of the add command.
1557
1558 Input: What was passed to the callback by the command handler.
1559 ~~~~~~
1560 HS:     Hash sister. Whether an audio file with identical hash
1561         already exists in the osl database.
1562
1563 PB:     Path brother. Whether a file with the given path exists
1564         in the table.
1565
1566 F:      Force flag given. Whether add was called with -f.
1567
1568 output: Action performed by the callback.
1569 ~~~~~~~
1570 AFHI:   Whether afhi and chunk table are computed and sent.
1571 ACTION: Table modifications to be done by the callback.
1572
1573 +----+----+---+------+---------------------------------------------------+
1574 | HS | PB | F | AFHI | ACTION
1575 +----+----+---+------+---------------------------------------------------+
1576 | Y  |  Y | Y |  Y   | if HS != PB: remove PB. HS: force afhi update,
1577 |                    | update path, keep afsi
1578 +----+----+---+------+---------------------------------------------------+
1579 | Y  |  Y | N |  N   | if HS == PB: do not send callback request at all.
1580 |                    | otherwise: remove PB, HS: update path, keep afhi,
1581 |                    | afsi.
1582 +----+----+---+------+---------------------------------------------------+
1583 | Y  |  N | Y |  Y   | (rename) force afhi update of HS, update path of
1584 |                    | HS, keep afsi
1585 +----+----+---+------+---------------------------------------------------+
1586 | Y  |  N | N |  N   | (file rename) update path of HS, keep afsi, afhi
1587 +----+----+---+------+---------------------------------------------------+
1588 | N  |  Y | Y |  Y   | (file change) update afhi, hash, of PB, keep afsi
1589 |                    | (force has no effect)
1590 +----+----+---+------+---------------------------------------------------+
1591 | N  |  Y | N |  Y   | (file change) update afhi, hash of PB, keep afsi
1592 +----+----+---+------+---------------------------------------------------+
1593 | N  |  N | Y |  Y   | (new file) create new entry (force has no effect)
1594 +----+----+---+------+---------------------------------------------------+
1595 |  N |  N | N |  Y   | (new file) create new entry
1596 +----+----+---+------+---------------------------------------------------+
1597
1598 Notes:
1599
1600         afhi <=> force or no HS
1601         F => AFHI
1602
1603 */
1604
1605 /** Flags passed to the add command. */
1606 enum com_add_flags {
1607         /** Skip paths that exist already. */
1608         ADD_FLAG_LAZY = 1,
1609         /** Force adding. */
1610         ADD_FLAG_FORCE = 2,
1611         /** Print what is being done. */
1612         ADD_FLAG_VERBOSE = 4,
1613         /** Try to add files with unknown suffixes. */
1614         ADD_FLAG_ALL = 8,
1615 };
1616
1617 static void com_add_callback(int fd, const struct osl_object *query)
1618 {
1619         char *buf = query->data, *path;
1620         struct osl_row *pb, *aft_row;
1621         struct osl_row *hs;
1622         struct osl_object objs[NUM_AFT_COLUMNS];
1623         unsigned char *hash;
1624         char asc[2 * HASH_SIZE + 1];
1625         int ret;
1626         char afsi_buf[AFSI_SIZE];
1627         uint32_t flags = read_u32(buf + CAB_FLAGS_OFFSET);
1628         struct afs_info default_afsi = {.last_played = 0};
1629         struct para_buffer msg = {
1630                 .max_size = shm_get_shmmax(),
1631                 .max_size_handler = afs_max_size_handler,
1632                 .private_data = &(struct afs_max_size_handler_data) {
1633                         .fd = fd,
1634                         .band = SBD_OUTPUT
1635                 }
1636         };
1637         uint16_t afhi_offset, chunks_offset;
1638
1639         hash = (unsigned char *)buf + CAB_HASH_OFFSET;
1640         hash_to_asc(hash, asc);
1641         objs[AFTCOL_HASH].data = buf + CAB_HASH_OFFSET;
1642         objs[AFTCOL_HASH].size = HASH_SIZE;
1643
1644         path = buf + CAB_PATH_OFFSET;
1645         objs[AFTCOL_PATH].data = path;
1646         objs[AFTCOL_PATH].size = strlen(path) + 1;
1647
1648         PARA_INFO_LOG("request to add %s\n", path);
1649         hs = find_hash_sister(hash);
1650         ret = aft_get_row_of_path(path, &pb);
1651         if (ret < 0 && ret != -OSL_ERRNO_TO_PARA_ERROR(E_OSL_RB_KEY_NOT_FOUND))
1652                 goto out;
1653         if (hs && pb && hs == pb && !(flags & ADD_FLAG_FORCE)) {
1654                 if (flags & ADD_FLAG_VERBOSE)
1655                         para_printf(&msg, "ignoring duplicate\n");
1656                 ret = 1;
1657                 goto out;
1658         }
1659         if (hs && hs != pb) {
1660                 struct osl_object obj;
1661                 if (pb) { /* hs trumps pb, remove pb */
1662                         if (flags & ADD_FLAG_VERBOSE)
1663                                 para_printf(&msg, "removing %s\n", path);
1664                         afs_event(AUDIO_FILE_REMOVE, &msg, pb);
1665                         ret = osl(osl_del_row(audio_file_table, pb));
1666                         if (ret < 0)
1667                                 goto out;
1668                         pb = NULL;
1669                 }
1670                 /* file rename, update hs' path */
1671                 if (flags & ADD_FLAG_VERBOSE) {
1672                         ret = osl(osl_get_object(audio_file_table, hs,
1673                                 AFTCOL_PATH, &obj));
1674                         if (ret < 0)
1675                                 goto out;
1676                         para_printf(&msg, "renamed from %s\n", (char *)obj.data);
1677                 }
1678                 ret = osl(osl_update_object(audio_file_table, hs, AFTCOL_PATH,
1679                         &objs[AFTCOL_PATH]));
1680                 if (ret < 0)
1681                         goto out;
1682                 afs_event(AUDIO_FILE_RENAME, &msg, hs);
1683                 if (!(flags & ADD_FLAG_FORCE))
1684                         goto out;
1685         }
1686         /* no hs or force mode, child must have sent afhi */
1687         afhi_offset = read_u16(buf + CAB_AFHI_OFFSET_POS);
1688         chunks_offset = read_u16(buf + CAB_CHUNKS_OFFSET_POS);
1689
1690         objs[AFTCOL_AFHI].data = buf + afhi_offset;
1691         objs[AFTCOL_AFHI].size = chunks_offset - afhi_offset;
1692         ret = -E_NO_AFHI;
1693         if (!objs[AFTCOL_AFHI].size) /* "impossible" */
1694                 goto out;
1695         objs[AFTCOL_CHUNKS].data = buf + chunks_offset;
1696         objs[AFTCOL_CHUNKS].size = query->size - chunks_offset;
1697         if (pb && !hs) { /* update pb's hash */
1698                 char old_asc[2 * HASH_SIZE + 1];
1699                 unsigned char *old_hash;
1700                 ret = get_hash_of_row(pb, &old_hash);
1701                 if (ret < 0)
1702                         goto out;
1703                 hash_to_asc(old_hash, old_asc);
1704                 if (flags & ADD_FLAG_VERBOSE)
1705                         para_printf(&msg, "file change: %s -> %s\n", old_asc,
1706                                 asc);
1707                 ret = osl_update_object(audio_file_table, pb, AFTCOL_HASH,
1708                         &objs[AFTCOL_HASH]);
1709                 if (ret < 0)
1710                         goto out;
1711         }
1712         if (hs || pb) { /* (hs != NULL and pb != NULL) implies hs == pb */
1713                 struct osl_row *row = pb? pb : hs;
1714                 /* update afhi and chunk_table */
1715                 if (flags & ADD_FLAG_VERBOSE)
1716                         para_printf(&msg, "updating afhi and chunk table\n");
1717                 ret = osl(osl_update_object(audio_file_table, row, AFTCOL_AFHI,
1718                         &objs[AFTCOL_AFHI]));
1719                 if (ret < 0)
1720                         goto out;
1721                 ret = osl(osl_update_object(audio_file_table, row, AFTCOL_CHUNKS,
1722                         &objs[AFTCOL_CHUNKS]));
1723                 if (ret < 0)
1724                         goto out;
1725                 afs_event(AFHI_CHANGE, &msg, row);
1726                 goto out;
1727         }
1728         /* new entry, use default afsi */
1729         if (flags & ADD_FLAG_VERBOSE)
1730                 para_printf(&msg, "new file\n");
1731         default_afsi.last_played = time(NULL) - 365 * 24 * 60 * 60;
1732         default_afsi.audio_format_id = read_u8(buf + CAB_AUDIO_FORMAT_OFFSET);
1733
1734         objs[AFTCOL_AFSI].data = &afsi_buf;
1735         objs[AFTCOL_AFSI].size = AFSI_SIZE;
1736         save_afsi(&default_afsi, &objs[AFTCOL_AFSI]);
1737         ret = osl(osl_add_and_get_row(audio_file_table, objs, &aft_row));
1738         afs_event(AUDIO_FILE_ADD, &msg, aft_row);
1739 out:
1740         if (ret < 0)
1741                 para_printf(&msg, "%s\n", para_strerror(-ret));
1742         if (msg.offset)
1743                 pass_buffer_as_shm(fd, SBD_OUTPUT, msg.buf, msg.offset);
1744         free(msg.buf);
1745 }
1746
1747 /** Used by com_add(). */
1748 struct private_add_data {
1749         /** The pointer passed to the original command handler. */
1750         struct command_context *cc;
1751         /** The given add flags. */
1752         uint32_t flags;
1753 };
1754
1755 static void path_brother_callback(int fd, const struct osl_object *query)
1756 {
1757         char *path = query->data;
1758         struct osl_row *path_brother;
1759         int ret = aft_get_row_of_path(path, &path_brother);
1760         if (ret < 0)
1761                 return;
1762         pass_buffer_as_shm(fd, SBD_OUTPUT, (char *)&path_brother,
1763                 sizeof(path_brother));
1764 }
1765
1766 static void hash_sister_callback(int fd, const struct osl_object *query)
1767 {
1768         unsigned char *hash = query->data;
1769         struct osl_row *hash_sister;
1770
1771         hash_sister = find_hash_sister(hash);
1772         if (!hash_sister)
1773                 return;
1774         pass_buffer_as_shm(fd, SBD_OUTPUT, (char *)&hash_sister,
1775                 sizeof(hash_sister));
1776 }
1777
1778 static int get_row_pointer_from_result(struct osl_object *result,
1779                 __a_unused uint8_t band, void *private)
1780 {
1781         struct osl_row **row = private;
1782         *row = *(struct osl_row **)(result->data);
1783         return 1;
1784 }
1785
1786 static int add_one_audio_file(const char *path, void *private_data)
1787 {
1788         int ret, send_ret = 1, fd;
1789         uint8_t format_num = -1;
1790         struct private_add_data *pad = private_data;
1791         struct afh_info afhi, *afhi_ptr = NULL;
1792         struct osl_row *pb = NULL, *hs = NULL; /* path brother/hash sister */
1793         struct osl_object map, obj = {.data = NULL}, query;
1794         unsigned char hash[HASH_SIZE];
1795
1796         ret = guess_audio_format(path);
1797         if (ret < 0 && !(pad->flags & ADD_FLAG_ALL)) {
1798                 ret = 0;
1799                 goto out_free;
1800         }
1801         query.data = (char *)path;
1802         query.size = strlen(path) + 1;
1803         ret = send_callback_request(path_brother_callback, &query,
1804                 get_row_pointer_from_result, &pb);
1805         if (ret < 0 && ret != -OSL_ERRNO_TO_PARA_ERROR(E_OSL_RB_KEY_NOT_FOUND))
1806                 goto out_free;
1807         ret = 1;
1808         if (pb && (pad->flags & ADD_FLAG_LAZY)) { /* lazy is really cheap */
1809                 if (pad->flags & ADD_FLAG_VERBOSE)
1810                         send_ret = send_sb_va(&pad->cc->scc, SBD_OUTPUT,
1811                                 "lazy-ignore: %s\n", path);
1812                 goto out_free;
1813         }
1814         /* We still want to add this file. Compute its hash. */
1815         ret = mmap_full_file(path, O_RDONLY, &map.data, &map.size, &fd);
1816         if (ret < 0)
1817                 goto out_free;
1818         hash_function(map.data, map.size, hash);
1819
1820         /* Check whether the database contains a file with the same hash. */
1821         query.data = hash;
1822         query.size = HASH_SIZE;
1823         ret = send_callback_request(hash_sister_callback, &query,
1824                 get_row_pointer_from_result, &hs);
1825         if (ret < 0)
1826                 goto out_unmap;
1827         /* Return success if we already know this file. */
1828         ret = 1;
1829         if (pb && hs && hs == pb && !(pad->flags & ADD_FLAG_FORCE)) {
1830                 if (pad->flags & ADD_FLAG_VERBOSE)
1831                         send_ret = send_sb_va(&pad->cc->scc, SBD_OUTPUT,
1832                                 "%s exists, not forcing update\n", path);
1833                 goto out_unmap;
1834         }
1835         /*
1836          * We won't recalculate the audio format info and the chunk table if
1837          * there is a hash sister and FORCE was not given.
1838          */
1839         if (!hs || (pad->flags & ADD_FLAG_FORCE)) {
1840                 ret = compute_afhi(path, map.data, map.size, fd, &afhi);
1841                 if (ret < 0)
1842                         goto out_unmap;
1843                 format_num = ret;
1844                 afhi_ptr = &afhi;
1845         }
1846         munmap(map.data, map.size);
1847         close(fd);
1848         if (pad->flags & ADD_FLAG_VERBOSE) {
1849                 send_ret = send_sb_va(&pad->cc->scc, SBD_OUTPUT,
1850                         "adding %s\n", path);
1851                 if (send_ret < 0)
1852                         goto out_free;
1853         }
1854         save_add_callback_buffer(hash, path, afhi_ptr, pad->flags, format_num, &obj);
1855         /* Ask afs to consider this entry for adding. */
1856         ret = send_callback_request(com_add_callback, &obj,
1857                 afs_cb_result_handler, pad->cc);
1858         goto out_free;
1859
1860 out_unmap:
1861         close(fd);
1862         munmap(map.data, map.size);
1863 out_free:
1864         if (ret < 0 && send_ret >= 0)
1865                 send_ret = send_sb_va(&pad->cc->scc, SBD_ERROR_LOG,
1866                         "failed to add %s (%s)\n", path, para_strerror(-ret));
1867         free(obj.data);
1868         clear_afhi(afhi_ptr);
1869         /* Stop adding files only on send errors. */
1870         return send_ret;
1871 }
1872
1873 int com_add(struct command_context *cc)
1874 {
1875         int i, ret;
1876         struct private_add_data pad = {.cc = cc, .flags = 0};
1877
1878         for (i = 1; i < cc->argc; i++) {
1879                 const char *arg = cc->argv[i];
1880                 if (arg[0] != '-')
1881                         break;
1882                 if (!strcmp(arg, "--")) {
1883                         i++;
1884                         break;
1885                 }
1886                 if (!strcmp(arg, "-a")) {
1887                         pad.flags |= ADD_FLAG_ALL;
1888                         continue;
1889                 }
1890                 if (!strcmp(arg, "-l")) {
1891                         pad.flags |= ADD_FLAG_LAZY;
1892                         continue;
1893                 }
1894                 if (!strcmp(arg, "-f")) {
1895                         pad.flags |= ADD_FLAG_FORCE;
1896                         continue;
1897                 }
1898                 if (!strcmp(arg, "-v")) {
1899                         pad.flags |= ADD_FLAG_VERBOSE;
1900                         continue;
1901                 }
1902         }
1903         if (cc->argc <= i)
1904                 return -E_AFT_SYNTAX;
1905         for (; i < cc->argc; i++) {
1906                 char *path;
1907                 ret = verify_path(cc->argv[i], &path);
1908                 if (ret < 0) {
1909                         ret = send_sb_va(&cc->scc, SBD_ERROR_LOG, "%s: %s\n",
1910                                 cc->argv[i], para_strerror(-ret));
1911                         if (ret < 0)
1912                                 return ret;
1913                         continue;
1914                 }
1915                 if (ret == 1) /* directory */
1916                         ret = for_each_file_in_dir(path, add_one_audio_file,
1917                                 &pad);
1918                 else /* regular file */
1919                         ret = add_one_audio_file(path, &pad);
1920                 if (ret < 0) {
1921                         send_sb_va(&cc->scc, SBD_OUTPUT, "%s: %s\n", path,
1922                                 para_strerror(-ret));
1923                         free(path);
1924                         return ret;
1925                 }
1926                 free(path);
1927         }
1928         return 1;
1929 }
1930
1931 /**
1932  * Flags used by the touch command.
1933  *
1934  * \sa com_touch().
1935  */
1936 enum touch_flags {
1937         /** Whether the \p FNM_PATHNAME flag should be passed to fnmatch(). */
1938         TOUCH_FLAG_FNM_PATHNAME = 1,
1939         /** Activates verbose mode. */
1940         TOUCH_FLAG_VERBOSE = 2
1941 };
1942
1943 /** Options used by com_touch(). */
1944 struct com_touch_options {
1945         /** New num_played value. */
1946         int32_t num_played;
1947         /** New last played count. */
1948         int64_t last_played;
1949         /** New lyrics id. */
1950         int32_t lyrics_id;
1951         /** New image id. */
1952         int32_t image_id;
1953         /** New amplification value. */
1954         int32_t amp;
1955         /** Command line flags (see \ref touch_flags). */
1956         unsigned flags;
1957 };
1958
1959 /** Data passed to the action handler of com_touch(). */
1960 struct touch_action_data {
1961         /** Command line options (see \ref com_touch_options). */
1962         struct com_touch_options *cto;
1963         /** Message buffer. */
1964         struct para_buffer pb;
1965 };
1966
1967 static int touch_audio_file(__a_unused struct osl_table *table,
1968                 struct osl_row *row, const char *name, void *data)
1969 {
1970         struct touch_action_data *tad = data;
1971         struct osl_object obj;
1972         struct afs_info old_afsi, new_afsi;
1973         int ret, no_options = tad->cto->num_played < 0 && tad->cto->last_played < 0 &&
1974                 tad->cto->lyrics_id < 0 && tad->cto->image_id < 0 && tad->cto->amp < 0;
1975         struct afsi_change_event_data aced;
1976
1977         ret = get_afsi_object_of_row(row, &obj);
1978         if (ret < 0) {
1979                 para_printf(&tad->pb, "%s: %s\n", name, para_strerror(-ret));
1980                 return ret;
1981         }
1982         ret = load_afsi(&old_afsi, &obj);
1983         if (ret < 0) {
1984                 para_printf(&tad->pb, "%s: %s\n", name, para_strerror(-ret));
1985                 return ret;
1986         }
1987         new_afsi = old_afsi;
1988         if (no_options) {
1989                 new_afsi.num_played++;
1990                 new_afsi.last_played = time(NULL);
1991                 if (tad->cto->flags & TOUCH_FLAG_VERBOSE)
1992                         para_printf(&tad->pb, "%s: num_played = %u, "
1993                                 "last_played = now()\n", name,
1994                                 new_afsi.num_played);
1995         } else {
1996                 if (tad->cto->flags & TOUCH_FLAG_VERBOSE)
1997                         para_printf(&tad->pb, "touching %s\n", name);
1998                 if (tad->cto->lyrics_id >= 0)
1999                         new_afsi.lyrics_id = tad->cto->lyrics_id;
2000                 if (tad->cto->image_id >= 0)
2001                         new_afsi.image_id = tad->cto->image_id;
2002                 if (tad->cto->num_played >= 0)
2003                         new_afsi.num_played = tad->cto->num_played;
2004                 if (tad->cto->last_played >= 0)
2005                         new_afsi.last_played = tad->cto->last_played;
2006                 if (tad->cto->amp >= 0)
2007                         new_afsi.amp = tad->cto->amp;
2008         }
2009         save_afsi(&new_afsi, &obj); /* in-place update */
2010         aced.aft_row = row;
2011         aced.old_afsi = &old_afsi;
2012         afs_event(AFSI_CHANGE, &tad->pb, &aced);
2013         return 1;
2014 }
2015
2016 static void com_touch_callback(int fd, const struct osl_object *query)
2017 {
2018         struct touch_action_data tad = {.cto = query->data,
2019                 .pb = {
2020                         .max_size = shm_get_shmmax(),
2021                         .private_data = &(struct afs_max_size_handler_data) {
2022                                 .fd = fd,
2023                                 .band = SBD_OUTPUT
2024                         },
2025                         .max_size_handler = afs_max_size_handler
2026                 }
2027         };
2028         int ret;
2029         struct pattern_match_data pmd = {
2030                 .table = audio_file_table,
2031                 .loop_col_num = AFTCOL_HASH,
2032                 .match_col_num = AFTCOL_PATH,
2033                 .patterns = {.data = (char *)query->data + sizeof(*tad.cto),
2034                         .size = query->size - sizeof(*tad.cto)},
2035                 .data = &tad,
2036                 .action = touch_audio_file
2037         };
2038         if (tad.cto->flags & TOUCH_FLAG_FNM_PATHNAME)
2039                 pmd.fnmatch_flags |= FNM_PATHNAME;
2040         ret = for_each_matching_row(&pmd);
2041         if (ret < 0)
2042                 para_printf(&tad.pb, "%s\n", para_strerror(-ret));
2043         else if (pmd.num_matches == 0)
2044                 para_printf(&tad.pb, "no matches\n");
2045         if (tad.pb.offset)
2046                 pass_buffer_as_shm(fd, SBD_OUTPUT, tad.pb.buf, tad.pb.offset);
2047         free(tad.pb.buf);
2048 }
2049
2050 int com_touch(struct command_context *cc)
2051 {
2052         struct com_touch_options cto = {
2053                 .num_played = -1,
2054                 .last_played = -1,
2055                 .lyrics_id = -1,
2056                 .image_id = -1,
2057                 .amp = -1,
2058         };
2059         struct osl_object query = {.data = &cto, .size = sizeof(cto)};
2060         int i, ret;
2061
2062
2063         for (i = 1; i < cc->argc; i++) {
2064                 const char *arg = cc->argv[i];
2065                 if (arg[0] != '-')
2066                         break;
2067                 if (!strcmp(arg, "--")) {
2068                         i++;
2069                         break;
2070                 }
2071                 if (!strncmp(arg, "-n=", 3)) {
2072                         ret = para_atoi32(arg + 3, &cto.num_played);
2073                         if (ret < 0)
2074                                 return ret;
2075                         continue;
2076                 }
2077                 if (!strncmp(arg, "-l=", 3)) {
2078                         ret = para_atoi64(arg + 3, &cto.last_played);
2079                         if (ret < 0)
2080                                 return ret;
2081                         continue;
2082                 }
2083                 if (!strncmp(arg, "-y=", 3)) {
2084                         ret = para_atoi32(arg + 3, &cto.lyrics_id);
2085                         if (ret < 0)
2086                                 return ret;
2087                         continue;
2088                 }
2089                 if (!strncmp(arg, "-i=", 3)) {
2090                         ret = para_atoi32(arg + 3, &cto.image_id);
2091                         if (ret < 0)
2092                                 return ret;
2093                         continue;
2094                 }
2095                 if (!strncmp(arg, "-a=", 3)) {
2096                         int32_t val;
2097                         ret = para_atoi32(arg + 3, &val);
2098                         if (ret < 0)
2099                                 return ret;
2100                         if (val < 0 || val > 255)
2101                                 return -ERRNO_TO_PARA_ERROR(EINVAL);
2102                         cto.amp = val;
2103                         continue;
2104                 }
2105                 if (!strcmp(arg, "-p")) {
2106                         cto.flags |= TOUCH_FLAG_FNM_PATHNAME;
2107                         continue;
2108                 }
2109                 if (!strcmp(arg, "-v")) {
2110                         cto.flags |= TOUCH_FLAG_VERBOSE;
2111                         continue;
2112                 }
2113                 break; /* non-option starting with dash */
2114         }
2115         if (i >= cc->argc)
2116                 return -E_AFT_SYNTAX;
2117         ret = send_option_arg_callback_request(&query, cc->argc - i,
2118                 cc->argv + i, com_touch_callback, afs_cb_result_handler, cc);
2119         if (ret < 0)
2120                 send_strerror(cc, -ret);
2121         return ret;
2122 }
2123
2124 /** Flags for com_rm(). */
2125 enum rm_flags {
2126         /** -v */
2127         RM_FLAG_VERBOSE = 1,
2128         /** -f */
2129         RM_FLAG_FORCE = 2,
2130         /** -p */
2131         RM_FLAG_FNM_PATHNAME = 4
2132 };
2133
2134 /** Data passed to the action handler of com_rm(). */
2135 struct com_rm_action_data {
2136         /** Command line flags ((see \ref rm_flags). */
2137         uint32_t flags;
2138         /** Message buffer. */
2139         struct para_buffer pb;
2140 };
2141
2142 static int remove_audio_file(__a_unused struct osl_table *table,
2143                 struct osl_row *row, const char *name, void *data)
2144 {
2145         struct com_rm_action_data *crd = data;
2146         int ret;
2147
2148         if (crd->flags & RM_FLAG_VERBOSE)
2149                 para_printf(&crd->pb, "removing %s\n", name);
2150         afs_event(AUDIO_FILE_REMOVE, &crd->pb, row);
2151         ret = osl(osl_del_row(audio_file_table, row));
2152         if (ret < 0)
2153                 para_printf(&crd->pb, "%s: %s\n", name, para_strerror(-ret));
2154         return ret;
2155 }
2156
2157 static void com_rm_callback(int fd, const struct osl_object *query)
2158 {
2159         struct com_rm_action_data crd = {.flags = *(uint32_t *)query->data,
2160                 .pb = {
2161                         .max_size = shm_get_shmmax(),
2162                         .private_data = &(struct afs_max_size_handler_data) {
2163                                 .fd = fd,
2164                                 .band = SBD_OUTPUT
2165                         },
2166                         .max_size_handler = afs_max_size_handler
2167                 }
2168         };
2169         int ret;
2170         struct pattern_match_data pmd = {
2171                 .table = audio_file_table,
2172                 .loop_col_num = AFTCOL_HASH,
2173                 .match_col_num = AFTCOL_PATH,
2174                 .patterns = {.data = (char *)query->data + sizeof(uint32_t),
2175                         .size = query->size - sizeof(uint32_t)},
2176                 .data = &crd,
2177                 .action = remove_audio_file
2178         };
2179         if (crd.flags & RM_FLAG_FNM_PATHNAME)
2180                 pmd.fnmatch_flags |= FNM_PATHNAME;
2181         ret = for_each_matching_row(&pmd);
2182         if (ret < 0) {
2183                 para_printf(&crd.pb, "%s\n", para_strerror(-ret));
2184                 return;
2185         }
2186         if ((pmd.num_matches == 0) && !(crd.flags & RM_FLAG_FORCE))
2187                 para_printf(&crd.pb, "no matches -- nothing removed\n");
2188         else if (crd.flags & RM_FLAG_VERBOSE)
2189                 para_printf(&crd.pb, "removed %u files\n", pmd.num_matches);
2190         if (ret >= 0 && crd.pb.offset)
2191                 pass_buffer_as_shm(fd, SBD_OUTPUT, crd.pb.buf, crd.pb.offset);
2192         free(crd.pb.buf);
2193 }
2194
2195 /* TODO options: -r (recursive) */
2196 int com_rm(struct command_context *cc)
2197 {
2198         uint32_t flags = 0;
2199         struct osl_object query = {.data = &flags, .size = sizeof(flags)};
2200         int i, ret;
2201
2202         for (i = 1; i < cc->argc; i++) {
2203                 const char *arg = cc->argv[i];
2204                 if (arg[0] != '-')
2205                         break;
2206                 if (!strcmp(arg, "--")) {
2207                         i++;
2208                         break;
2209                 }
2210                 if (!strcmp(arg, "-f")) {
2211                         flags |= RM_FLAG_FORCE;
2212                         continue;
2213                 }
2214                 if (!strcmp(arg, "-p")) {
2215                         flags |= RM_FLAG_FNM_PATHNAME;
2216                         continue;
2217                 }
2218                 if (!strcmp(arg, "-v")) {
2219                         flags |= RM_FLAG_VERBOSE;
2220                         continue;
2221                 }
2222                 break;
2223         }
2224         if (i >= cc->argc)
2225                 return -E_AFT_SYNTAX;
2226         ret = send_option_arg_callback_request(&query, cc->argc - i,
2227                 cc->argv + i, com_rm_callback, afs_cb_result_handler, cc);
2228         if (ret < 0)
2229                 send_strerror(cc, -ret);
2230         return ret;
2231 }
2232
2233 /**
2234  * Flags used by the cpsi command.
2235  *
2236  * \sa com_cpsi().
2237  */
2238 enum cpsi_flags {
2239         /** Whether the lyrics id should be copied. */
2240         CPSI_FLAG_COPY_LYRICS_ID = 1,
2241         /** Whether the image id should be copied. */
2242         CPSI_FLAG_COPY_IMAGE_ID = 2,
2243         /** Whether the lastplayed time should be copied. */
2244         CPSI_FLAG_COPY_LASTPLAYED = 4,
2245         /** Whether the numplayed count should be copied. */
2246         CPSI_FLAG_COPY_NUMPLAYED = 8,
2247         /** Whether the attributes should be copied. */
2248         CPSI_FLAG_COPY_ATTRIBUTES = 16,
2249         /** Activates verbose mode. */
2250         CPSI_FLAG_VERBOSE = 32,
2251 };
2252
2253 /** Data passed to the action handler of com_cpsi(). */
2254 struct cpsi_action_data {
2255         /** command line flags (see \ref cpsi_flags). */
2256         unsigned flags;
2257         /** Message buffer. */
2258         struct para_buffer pb;
2259         /** Values are copied from here. */
2260         struct afs_info source_afsi;
2261 };
2262
2263 static int copy_selector_info(__a_unused struct osl_table *table,
2264                 struct osl_row *row, const char *name, void *data)
2265 {
2266         struct cpsi_action_data *cad = data;
2267         struct osl_object target_afsi_obj;
2268         int ret;
2269         struct afs_info old_afsi, target_afsi;
2270         struct afsi_change_event_data aced;
2271
2272         ret = get_afsi_object_of_row(row, &target_afsi_obj);
2273         if (ret < 0)
2274                 return ret;
2275         load_afsi(&target_afsi, &target_afsi_obj);
2276         old_afsi = target_afsi;
2277         if (cad->flags & CPSI_FLAG_COPY_LYRICS_ID)
2278                 target_afsi.lyrics_id = cad->source_afsi.lyrics_id;
2279         if (cad->flags & CPSI_FLAG_COPY_IMAGE_ID)
2280                 target_afsi.image_id = cad->source_afsi.image_id;
2281         if (cad->flags & CPSI_FLAG_COPY_LASTPLAYED)
2282                 target_afsi.last_played = cad->source_afsi.last_played;
2283         if (cad->flags & CPSI_FLAG_COPY_NUMPLAYED)
2284                 target_afsi.num_played = cad->source_afsi.num_played;
2285         if (cad->flags & CPSI_FLAG_COPY_ATTRIBUTES)
2286                 target_afsi.attributes = cad->source_afsi.attributes;
2287         save_afsi(&target_afsi, &target_afsi_obj); /* in-place update */
2288         if (cad->flags & CPSI_FLAG_VERBOSE)
2289                 para_printf(&cad->pb, "copied afsi to %s\n", name);
2290         aced.aft_row = row;
2291         aced.old_afsi = &old_afsi;
2292         afs_event(AFSI_CHANGE, &cad->pb, &aced);
2293         return 1;
2294 }
2295
2296 static void com_cpsi_callback(int fd, const struct osl_object *query)
2297 {
2298         struct cpsi_action_data cad = {
2299                 .flags = *(unsigned *)query->data,
2300                 .pb = {
2301                         .max_size = shm_get_shmmax(),
2302                         .private_data = &(struct afs_max_size_handler_data) {
2303                                 .fd = fd,
2304                                 .band = SBD_OUTPUT
2305                         },
2306                         .max_size_handler = afs_max_size_handler
2307                 }
2308         };
2309         int ret;
2310         char *source_path = (char *)query->data + sizeof(cad.flags);
2311         struct pattern_match_data pmd = {
2312                 .table = audio_file_table,
2313                 .loop_col_num = AFTCOL_HASH,
2314                 .match_col_num = AFTCOL_PATH,
2315                 .patterns = {.data = source_path + strlen(source_path) + 1,
2316                         .size = query->size - sizeof(cad.flags)
2317                                 - strlen(source_path) - 1},
2318                 .data = &cad,
2319                 .action = copy_selector_info
2320         };
2321
2322         ret = get_afsi_of_path(source_path, &cad.source_afsi);
2323         if (ret < 0)
2324                 goto out;
2325         ret = for_each_matching_row(&pmd);
2326 out:
2327         if (ret < 0)
2328                 para_printf(&cad.pb, "%s\n", para_strerror(-ret));
2329         else if (pmd.num_matches > 0) {
2330                 if (cad.flags & CPSI_FLAG_VERBOSE)
2331                         para_printf(&cad.pb, "copied requested afsi from %s "
2332                                 "to %u files\n", source_path, pmd.num_matches);
2333         } else
2334                 para_printf(&cad.pb, "no matches - nothing copied\n");
2335         if (cad.pb.offset)
2336                 pass_buffer_as_shm(fd, SBD_OUTPUT, cad.pb.buf, cad.pb.offset);
2337         free(cad.pb.buf);
2338 }
2339
2340 int com_cpsi(struct command_context *cc)
2341 {
2342         unsigned flags = 0;
2343         int i, ret;
2344         struct osl_object options = {.data = &flags, .size = sizeof(flags)};
2345
2346         for (i = 1; i < cc->argc; i++) {
2347                 const char *arg = cc->argv[i];
2348                 if (arg[0] != '-')
2349                         break;
2350                 if (!strcmp(arg, "--")) {
2351                         i++;
2352                         break;
2353                 }
2354                 if (!strcmp(arg, "-y")) {
2355                         flags |= CPSI_FLAG_COPY_LYRICS_ID;
2356                         continue;
2357                 }
2358                 if (!strcmp(arg, "-i")) {
2359                         flags |= CPSI_FLAG_COPY_IMAGE_ID;
2360                         continue;
2361                 }
2362                 if (!strcmp(arg, "-l")) {
2363                         flags |= CPSI_FLAG_COPY_LASTPLAYED;
2364                         continue;
2365                 }
2366                 if (!strcmp(arg, "-n")) {
2367                         flags |= CPSI_FLAG_COPY_NUMPLAYED;
2368                         continue;
2369                 }
2370                 if (!strcmp(arg, "-a")) {
2371                         flags |= CPSI_FLAG_COPY_ATTRIBUTES;
2372                         continue;
2373                 }
2374                 if (!strcmp(arg, "-v")) {
2375                         flags |= CPSI_FLAG_VERBOSE;
2376                         continue;
2377                 }
2378                 break;
2379         }
2380         if (i + 1 >= cc->argc) /* need at least source file and pattern */
2381                 return -E_AFT_SYNTAX;
2382         if (!(flags & ~CPSI_FLAG_VERBOSE)) /* no copy flags given */
2383                 flags = ~(unsigned)CPSI_FLAG_VERBOSE | flags;
2384         ret = send_option_arg_callback_request(&options, cc->argc - i,
2385                 cc->argv + i, com_cpsi_callback, afs_cb_result_handler, cc);
2386         if (ret < 0)
2387                 send_strerror(cc, -ret);
2388         return ret;
2389 }
2390
2391 struct change_atts_data {
2392         uint64_t add_mask, del_mask;
2393         struct para_buffer pb;
2394 };
2395
2396 static int change_atts(__a_unused struct osl_table *table,
2397                 struct osl_row *row, __a_unused const char *name, void *data)
2398 {
2399         int ret;
2400         struct osl_object obj;
2401         struct afs_info old_afsi, new_afsi;
2402         struct afsi_change_event_data aced = {
2403                 .aft_row = row,
2404                 .old_afsi = &old_afsi
2405         };
2406         struct change_atts_data *cad = data;
2407
2408         ret = get_afsi_object_of_row(row, &obj);
2409         if (ret < 0)
2410                 return ret;
2411         ret = load_afsi(&old_afsi, &obj);
2412         if (ret < 0)
2413                 return ret;
2414         new_afsi = old_afsi;
2415         new_afsi.attributes |= cad->add_mask;
2416         new_afsi.attributes &= ~cad->del_mask;
2417         save_afsi(&new_afsi, &obj); /* in-place update */
2418         afs_event(AFSI_CHANGE, &cad->pb, &aced);
2419         return 1;
2420 }
2421
2422 static void com_setatt_callback(int fd, const struct osl_object *query)
2423 {
2424         char *p;
2425         int ret;
2426         size_t len;
2427         struct change_atts_data cad = {
2428                 .pb = {
2429                         .max_size = shm_get_shmmax(),
2430                         .max_size_handler = afs_max_size_handler,
2431                         .private_data = &(struct afs_max_size_handler_data) {
2432                                 .fd = fd,
2433                                 .band = SBD_OUTPUT
2434                         }
2435                 }
2436         };
2437         struct pattern_match_data pmd = {
2438                 .table = audio_file_table,
2439                 .loop_col_num = AFTCOL_HASH,
2440                 .match_col_num = AFTCOL_PATH,
2441                 .pm_flags = PM_SKIP_EMPTY_NAME,
2442                 .data = &cad,
2443                 .action = change_atts
2444         };
2445
2446         for (p = query->data; p < (char *)query->data + query->size; p += len + 1) {
2447                 char c;
2448                 unsigned char bitnum;
2449
2450                 len = strlen(p);
2451                 ret = -E_ATTR_SYNTAX;
2452                 if (len == 0)
2453                         goto out;
2454                 c = p[len - 1];
2455                 if (c != '+' && c != '-')
2456                         break;
2457                 p[len - 1] = '\0';
2458                 ret = get_attribute_bitnum_by_name(p, &bitnum);
2459                 if (ret < 0) {
2460                         para_printf(&cad.pb, "attribute not found: %s\n", p);
2461                         goto out;
2462                 }
2463                 if (c == '+')
2464                         cad.add_mask |= (1UL << bitnum);
2465                 else
2466                         cad.del_mask |= (1UL << bitnum);
2467         }
2468         ret = -E_ATTR_SYNTAX;
2469         if (!cad.add_mask && !cad.del_mask)
2470                 goto out;
2471         pmd.patterns.data = p;
2472         assert(p < (char *)query->data + query->size);
2473         pmd.patterns.size = (char *)query->data + query->size - p;
2474         ret = for_each_matching_row(&pmd);
2475         if (ret < 0)
2476                 goto out;
2477         if (pmd.num_matches == 0)
2478                 para_printf(&cad.pb, "no matches\n");
2479 out:
2480         if (ret < 0)
2481                 para_printf(&cad.pb, "%s\n", para_strerror(-ret));
2482         if (cad.pb.offset)
2483                 pass_buffer_as_shm(fd, SBD_OUTPUT, cad.pb.buf, cad.pb.offset);
2484         free(cad.pb.buf);
2485 }
2486
2487 int com_setatt(struct command_context *cc)
2488 {
2489         if (cc->argc < 3)
2490                 return -E_ATTR_SYNTAX;
2491         return send_standard_callback_request(cc->argc - 1, cc->argv + 1,
2492                 com_setatt_callback, afs_cb_result_handler, cc);
2493 }
2494
2495 static void afs_stat_callback(int fd, const struct osl_object *query)
2496 {
2497         int *parser_friendly = query->data;
2498         char *buf = *parser_friendly?
2499                 parser_friendly_status_items : status_items;
2500
2501         if (!buf)
2502                 return;
2503         pass_buffer_as_shm(fd, SBD_OUTPUT, buf, strlen(buf));
2504 }
2505
2506 /**
2507  * Get the current afs status items from the afs process and send it.
2508  *
2509  * \param cc The command context, used e.g. for data encryption.
2510  * \param parser_friendly Whether parser-friendly output format should be used.
2511  *
2512  * As the contents of the afs status items change in time and the command
2513  * handler only has a COW version created at fork time, it can not send
2514  * up-to-date afs status items directly. Therefore the usual callback mechanism
2515  * is used to pass the status items from the afs process to the command handler
2516  * via a shared memory area and a pipe.
2517  *
2518  * \return The return value of the underlying call to \ref send_callback_request().
2519  */
2520 int send_afs_status(struct command_context *cc, int parser_friendly)
2521 {
2522         struct osl_object query = {.data = &parser_friendly,
2523                 .size = sizeof(parser_friendly)};
2524
2525         return send_callback_request(afs_stat_callback, &query,
2526                 afs_cb_result_handler, cc);
2527 }
2528
2529 /* returns success even on errors to keep the loop going */
2530 static int check_audio_file(struct osl_row *row, void *data)
2531 {
2532         char *path;
2533         struct para_buffer *pb = data;
2534         struct stat statbuf;
2535         int ret = get_audio_file_path_of_row(row, &path);
2536         struct afs_info afsi;
2537         char *blob_name;
2538
2539         if (ret < 0) {
2540                 para_printf(pb, "%s\n", para_strerror(-ret));
2541                 return 0;
2542         }
2543         if (stat(path, &statbuf) < 0)
2544                 para_printf(pb, "%s: stat error (%s)\n", path, strerror(errno));
2545         else if (!S_ISREG(statbuf.st_mode))
2546                 para_printf(pb, "%s: not a regular file\n", path);
2547         ret = get_afsi_of_row(row, &afsi);
2548         if (ret < 0) {
2549                 para_printf(pb, "%s: %s\n", path, para_strerror(-ret));
2550                 return 1;
2551         }
2552         ret = lyr_get_name_by_id(afsi.lyrics_id, &blob_name);
2553         if (ret < 0)
2554                 para_printf(pb, "%s lyrics id %u: %s\n", path, afsi.lyrics_id,
2555                         para_strerror(-ret));
2556         ret = img_get_name_by_id(afsi.image_id, &blob_name);
2557         if (ret < 0)
2558                 para_printf(pb, "%s image id %u: %s\n", path, afsi.image_id,
2559                         para_strerror(-ret));
2560         return 0;
2561 }
2562
2563 /**
2564  * Check the audio file table for inconsistencies.
2565  *
2566  * \param fd The afs socket.
2567  * \param query Unused.
2568  *
2569  * This function always succeeds.
2570  *
2571  * \sa com_check().
2572  */
2573 void aft_check_callback(int fd, __a_unused const struct osl_object *query)
2574 {
2575         struct para_buffer pb = {
2576                 .max_size = shm_get_shmmax(),
2577                 .private_data = &(struct afs_max_size_handler_data) {
2578                         .fd = fd,
2579                         .band = SBD_OUTPUT
2580                 },
2581                 .max_size_handler = afs_max_size_handler
2582         };
2583         para_printf(&pb, "checking audio file table...\n");
2584         audio_file_loop(&pb, check_audio_file);
2585         if (pb.offset)
2586                 pass_buffer_as_shm(fd, SBD_OUTPUT, pb.buf, pb.offset);
2587         free(pb.buf);
2588 }
2589
2590 /**
2591  * Close the audio file table.
2592  *
2593  * \param flags Usual flags that are passed to osl_close_table().
2594  *
2595  * \sa osl_close_table().
2596  */
2597 static void aft_close(void)
2598 {
2599         osl_close_table(audio_file_table, OSL_MARK_CLEAN);
2600         audio_file_table = NULL;
2601 }
2602
2603 /**
2604  * Open the audio file table.
2605  *
2606  * \param dir The database directory.
2607  *
2608  * \return Standard.
2609  *
2610  * \sa osl_open_table().
2611  */
2612 static int aft_open(const char *dir)
2613 {
2614         int ret;
2615
2616         audio_file_table_desc.dir = dir;
2617         ret = osl(osl_open_table(&audio_file_table_desc, &audio_file_table));
2618         if (ret >= 0) {
2619                 unsigned num;
2620                 osl_get_num_rows(audio_file_table, &num);
2621                 PARA_INFO_LOG("audio file table contains %d files\n", num);
2622                 return ret;
2623         }
2624         PARA_NOTICE_LOG("failed to open audio file table\n");
2625         audio_file_table = NULL;
2626         if (ret == -OSL_ERRNO_TO_PARA_ERROR(E_OSL_NOENT))
2627                 return 1;
2628         return ret;
2629 }
2630
2631 static int aft_create(const char *dir)
2632 {
2633         audio_file_table_desc.dir = dir;
2634         return osl(osl_create_table(&audio_file_table_desc));
2635 }
2636
2637 static int clear_attribute(struct osl_row *row, void *data)
2638 {
2639         struct rmatt_event_data *red = data;
2640         struct afs_info afsi;
2641         struct osl_object obj;
2642         int ret = get_afsi_object_of_row(row, &obj);
2643         uint64_t mask = ~(1ULL << red->bitnum);
2644
2645         if (ret < 0)
2646                 return ret;
2647         ret = load_afsi(&afsi, &obj);
2648         if (ret < 0)
2649                 return ret;
2650         afsi.attributes &= mask;
2651         save_afsi(&afsi, &obj);
2652         return 1;
2653 }
2654
2655 static int aft_event_handler(enum afs_events event, struct para_buffer *pb,
2656                 void *data)
2657 {
2658         int ret;
2659
2660         switch (event) {
2661         case ATTRIBUTE_REMOVE: {
2662                 const struct rmatt_event_data *red = data;
2663                 para_printf(pb, "clearing attribute %s (bit %u) from all "
2664                         "entries in the audio file table\n", red->name,
2665                         red->bitnum);
2666                 return audio_file_loop(data, clear_attribute);
2667         } case AFSI_CHANGE: {
2668                 struct afsi_change_event_data *aced = data;
2669                 uint64_t old_last_played = status_item_ls_data.afsi.last_played;
2670                 if (aced->aft_row != current_aft_row)
2671                         return 0;
2672                 ret = get_afsi_of_row(aced->aft_row, &status_item_ls_data.afsi);
2673                 if (ret < 0)
2674                         return ret;
2675                 status_item_ls_data.afsi.last_played = old_last_played;
2676                 make_status_items();
2677                 return 1;
2678         } case AFHI_CHANGE: {
2679                 if (data != current_aft_row)
2680                         return 0;
2681                 ret = get_afhi_of_row(data, &status_item_ls_data.afhi);
2682                 if (ret < 0)
2683                         return ret;
2684                 make_status_items();
2685                 return 1;
2686         } default:
2687                 return 0;
2688         }
2689 }
2690
2691 /**
2692  * Initialize the audio file table.
2693  *
2694  * \param t Pointer to the structure to be initialized.
2695  */
2696 void aft_init(struct afs_table *t)
2697 {
2698         t->open = aft_open;
2699         t->close = aft_close;
2700         t->create = aft_create;
2701         t->event_handler = aft_event_handler;
2702 }