1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
|
/*
* Based on mpc's songToFormatedString modified for glib and ncmpc
*
*
* (c) 2003-2004 by normalperson and Warren Dukes (shank@mercury.chem.pitt.edu)
* and Daniel Brown (danb@cs.utexas.edu)
* and Kalle Wallin (kaw@linux.se)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "strfsong.h"
#include "charset.h"
#include <string.h>
static const gchar *
skip(const gchar * p)
{
gint stack = 0;
while (*p != '\0') {
if (*p == '[')
stack++;
if (*p == '#' && p[1] != '\0') {
/* skip escaped stuff */
++p;
} else if (stack) {
if(*p == ']') stack--;
} else {
if(*p == '&' || *p == '|' || *p == ']') {
break;
}
}
++p;
}
return p;
}
static gsize
_strfsong(gchar *s,
gsize max,
const gchar *format,
const struct mpd_song *song,
const gchar **last)
{
const gchar *p, *end;
gchar *temp;
gsize n, length = 0;
gboolean found = FALSE;
memset(s, 0, max);
if (song == NULL)
return 0;
for (p = format; *p != '\0' && length<max;) {
/* OR */
if (p[0] == '|') {
++p;
if(!found) {
memset(s, 0, max);
length = 0;
} else {
p = skip(p);
}
continue;
}
/* AND */
if (p[0] == '&') {
++p;
if(!found) {
p = skip(p);
} else {
found = FALSE;
}
continue;
}
/* EXPRESSION START */
if (p[0] == '[') {
temp = g_malloc0(max);
if( _strfsong(temp, max, p+1, song, &p) >0 ) {
g_strlcat(s, temp, max);
length = strlen(s);
found = TRUE;
}
g_free(temp);
continue;
}
/* EXPRESSION END */
if (p[0] == ']') {
if(last) *last = p+1;
if(!found && length) {
memset(s, 0, max);
length = 0;
}
return length;
}
/* pass-through non-escaped portions of the format string */
if (p[0] != '#' && p[0] != '%' && length<max) {
s[length++] = *p;
p++;
continue;
}
/* let the escape character escape itself */
if (p[0] == '#' && p[1] != '\0' && length<max) {
s[length++] = *(p+1);
p+=2;
continue;
}
/* advance past the esc character */
/* find the extent of this format specifier (stop at \0, ' ', or esc) */
temp = NULL;
end = p+1;
while(*end >= 'a' && *end <= 'z') {
end++;
}
n = end - p + 1;
if(*end != '%')
n--;
else if (strncmp("%file%", p, n) == 0)
temp = utf8_to_locale(song->file);
else if (strncmp("%artist%", p, n) == 0)
temp = song->artist ? utf8_to_locale(song->artist) : NULL;
else if (strncmp("%title%", p, n) == 0)
temp = song->title ? utf8_to_locale(song->title) : NULL;
else if (strncmp("%album%", p, n) == 0)
temp = song->album ? utf8_to_locale(song->album) : NULL;
else if (strncmp("%shortalbum%", p, n) == 0) {
temp = song->album ? utf8_to_locale(song->album) : NULL;
if (temp) {
gchar *temp2 = g_strndup(temp, 25);
if (strlen(temp) > 25) {
temp2[24] = '.';
temp2[23] = '.';
temp2[22] = '.';
}
g_free(temp);
temp = temp2;
}
}
else if (strncmp("%track%", p, n) == 0)
temp = song->track ? utf8_to_locale(song->track) : NULL;
else if (strncmp("%name%", p, n) == 0)
temp = song->name ? utf8_to_locale(song->name) : NULL;
else if (strncmp("%date%", p, n) == 0)
temp = song->date ? utf8_to_locale(song->date) : NULL;
else if (strncmp("%genre%", p, n) == 0)
temp = song->genre ? utf8_to_locale(song->genre) : NULL;
else if (strncmp("%shortfile%", p, n) == 0) {
if( strstr(song->file, "://") )
temp = utf8_to_locale(song->file);
else
temp = utf8_to_locale(g_basename(song->file));
} else if (strncmp("%time%", p, n) == 0) {
if (song->time != MPD_SONG_NO_TIME) {
if (song->time > 3600) {
temp = g_strdup_printf("%d:%02d:%02d",
song->time / 3600,
(song->time % 3600) / 60,
song->time % 60);
} else {
temp = g_strdup_printf("%d:%02d",
song->time / 60,
song->time % 60);
}
}
}
if( temp == NULL) {
gsize templen=n;
/* just pass-through any unknown specifiers (including esc) */
/* drop a null char in so printf stops at the end of this specifier,
but put the real character back in (pseudo-const) */
if( length+templen > max )
templen = max-length;
g_strlcat(s, p,max);
length+=templen;
} else {
gsize templen = strlen(temp);
found = TRUE;
if( length+templen > max )
templen = max-length;
g_strlcat(s, temp, max);
length+=templen;
g_free(temp);
}
/* advance past the specifier */
p += n;
}
if(last) *last = p;
return length;
}
gsize
strfsong(gchar *s, gsize max, const gchar *format,
const struct mpd_song *song)
{
return _strfsong(s, max, format, song, NULL);
}
|