]> git.tuebingen.mpg.de Git - paraslash.git/blob - afs.cmd
net.c: Fix a typo and improve send_bin_buffer() docu.
[paraslash.git] / afs.cmd
1 OF: afs_command_list
2 SF: afs.c aft.c attribute.c
3 HC: Prototypes for the commands of the audio file selector.
4 CC: Array of commands for the audio file selector.
5 AT: server_command
6 IN: para afh server list user_list
7 SN: list of afs commands
8 TM: mood lyr img pl
9 ---
10 N: add
11 P: AFS_READ | AFS_WRITE
12 D: Add new audio files to the database.
13 U: add [-l] [-f] [-v] path1 ...
14 H: Each given path may be either the full path to an audio file, or the full path
15 H: of a directory. In case of a directory, all audio files in that directory
16 H: are added recursivly.
17 H:
18 H: Options:
19 H:
20 H: -l   Add files lazily. If a file already exists in the database, skip this file.
21 H:      This operation is really cheap. Use it when adding large directories if only a
22 H:      few files where added.
23 H:
24 H:-f    Force adding/updating. Recompute the audio format handler data
25 H:      even if a file with the same path and the same hash value exists.
26 H:
27 H: -v   Verbose mode. Print what is being done.
28 ---
29 N: init
30 P: AFS_READ | AFS_WRITE
31 D: Initialize the osl tables for the audio file selector.
32 U: init [table_name ...]
33 H: When invoked without arguments, this command creates all tables. Otherwise
34 H: only the tables given by table_name... are created.
35 ---
36 N: afs_ls
37 P: AFS_READ
38 D: List audio files.
39 U: ls [-l[s|l|v|m]] -p -a -r -s{p|s|l|n|f|c|i|y|b|d|a} [pattern ...]
40 H: Print a list of all audio files matching pattern.
41 H:
42 H: Options:
43 H: -l   Change listing mode. Defaults to short listing if not given.
44 H:      -ls: short listing mode
45 H:      -ll: long listing mode (equivalent to -l)
46 H:      -lv: verbose listing mode
47 H:      -lm: mbox listing mode
48 H:
49 H: -p   List full path of audio file. If not specified, only the basename
50 H:      of each file is printed.
51 H:
52 H: -a   List only file that are admissible with respect to the current mood or
53 H:      playlist.
54 H:
55 H: -r   Reverse sort order.
56 H:
57 H: -s   Change sort order. Defaults to alphabetical path sort if not given.
58 H:      -sp:  sort by path.
59 H:      -sl:  sort by last played time.
60 H:      -ss:  sort by score (implies -a).
61 H:      -sn:  sort by number of times the file was played.
62 H:      -sf:  sort by frequency.
63 H:      -sc:  sort by number of channels.
64 H:      -si:  sort by image id.
65 H:      -sy:  sort by lyrics id.
66 H:      -sb:  sort by bitrate.
67 H:      -sd:  sort by duration.
68 H:      -sa:  sort by audio format.
69 ---
70 N: lsatt
71 P: AFS_READ
72 D: List attributes
73 U: lsatt [-a] [-l]
74 H:
75 H: Print the list of all defined attributes.
76 H:
77 H: Options:
78 H: -a   Sort attributes alphabetically by name. The default is to sort by
79 H:      identifier.
80 H:
81 H: -l   Print a long listing containing both identifier and attribute name. The
82 H:      default is to print only the name.
83 ---
84 N: setatt
85 P: AFS_READ | AFS_WRITE
86 D: FIXME
87 U: setatt attribute1{+|-} [attribute2{+|-}...] pattern
88
89 H: Set ('+') or unset ('-') the given attributes for all audio files matching
90 H: pattern.  Example:
91 H:
92 H:         sa rock+ punk+ classic- '*foo.mp3'
93 H:
94 H: sets the 'rock' and the 'punk' attribute but unsets the 'classic'
95 H: attribute of all files ending with 'foo.mp3'.
96 ---
97 N: addatt
98 P: AFS_READ | AFS_WRITE
99 D: FIXME
100 U: FIXME
101 H: FIXME
102 ---
103 N: rmatt
104 P: AFS_READ | AFS_WRITE
105 D: FIXME
106 U: FIXME
107 H: FIXME
108 ---
109 N: afs_rm
110 P: AFS_READ | AFS_WRITE
111 D: FIXME
112 U: FIXME
113 H: FIXME
114 ---
115 N: touch
116 P: AFS_READ | AFS_WRITE
117 D: FIXME
118 U: FIXME
119 H: FIXME
120 ---
121 T: cat
122 N: cat@member@
123 O: int com_cat@member@(int fd, int argc, char * const * const argv);
124 P: AFS_READ
125 D: FIXME
126 U: cat@member@ @member@_name
127 H: FIXME
128 ---
129 T: ls
130 N: ls@member@
131 O: int com_ls@member@(int fd, int argc, char * const * const argv);
132 P: AFS_READ
133 D: FIXME
134 U: ls@member@ pattern
135 H: FIXME
136 ---
137 T: rm
138 N: rm@member@
139 O: int com_rm@member@(int fd, int argc, char * const * const argv);
140 P: AFS_READ | AFS_WRITE
141 D: FIXME
142 U: rm@member@ @member@_name
143 H: FIXME
144 ---
145 T: mv
146 N: mv@member@
147 O: int com_mv@member@(int fd, int argc, char * const * const argv);
148 P: AFS_READ | AFS_WRITE
149 D: FIXME
150 U: mv@member@ old_@member@_name new_@member@_name
151 H: FIXME