6 #include "../pico_int.h"
7 // #define elprintf(w,f,...) printf(f "\n",##__VA_ARGS__);
10 #define snprintf _snprintf
13 #define snprintf(b,s,...) sprintf(b,##__VA_ARGS__)
16 static char *mystrip(char *str)
21 for (i = 0; i < len; i++)
22 if (str[i] != ' ') break;
23 if (i > 0) memmove(str, str + i, len - i + 1);
26 for (i = len - 1; i >= 0; i--)
27 if (str[i] != ' ' && str[i] != '\r' && str[i] != '\n') break;
33 static int get_token(const char *buff, char *dest, int len)
39 while (*p && *p == ' ') {
48 while (*p && *p != sep && d < len-1)
52 if (sep == '\"' && *p != sep)
53 elprintf(EL_STATUS, "cue: bad token: \"%s\"", buff);
58 static char *get_ext(char *fname)
60 int len = strlen(fname);
61 return (len >= 3) ? (fname + len - 3) : fname;
65 #define BEGINS(buff,str) (strncmp(buff,str,sizeof(str)-1) == 0)
67 /* note: tracks[0] is not used */
68 cue_data_t *cue_parse(const char *fname)
70 char buff[256], current_file[256], buff2[32], *current_filep;
72 int ret, count = 0, count_alloc = 2, pending_pregap = 0;
76 f = fopen(fname, "r");
77 if (f == NULL) return NULL;
79 snprintf(current_file, sizeof(current_file), "%s", fname);
80 for (current_filep = current_file + strlen(current_file); current_filep > current_file; current_filep--)
81 if (current_filep[-1] == '/' || current_filep[-1] == '\\') break;
83 data = calloc(1, sizeof(*data) + count_alloc * sizeof(cue_track));
91 tmp = fgets(buff, sizeof(buff), f);
92 if (tmp == NULL) break;
95 if (buff[0] == 0) continue;
96 if (BEGINS(buff, "TITLE ") || BEGINS(buff, "PERFORMER ") || BEGINS(buff, "SONGWRITER "))
97 continue; /* who would put those here? Ignore! */
98 else if (BEGINS(buff, "FILE "))
100 get_token(buff+5, current_filep, sizeof(current_file) - (current_filep - current_file));
102 else if (BEGINS(buff, "TRACK "))
105 if (count >= count_alloc) {
107 tmp = realloc(data, sizeof(*data) + count_alloc * sizeof(cue_track));
108 if (tmp == NULL) { count--; break; }
111 memset(&data->tracks[count], 0, sizeof(data->tracks[0]));
112 if (count == 1 || strcmp(data->tracks[1].fname, current_file) != 0)
114 data->tracks[count].fname = strdup(current_file);
115 if (data->tracks[count].fname == NULL) break;
117 tmpf = fopen(current_file, "rb");
119 elprintf(EL_STATUS, "cue: bad/missing file: \"%s\"", current_file);
124 data->tracks[count].pregap = pending_pregap;
127 ret = get_token(buff+6, buff2, sizeof(buff2));
128 if (count != atoi(buff2))
129 elprintf(EL_STATUS, "cue: track index mismatch: track %i is track %i in cue",
132 get_token(buff+6+ret, buff2, sizeof(buff2));
133 if (strcmp(buff2, "MODE1/2352") == 0)
134 data->tracks[count].type = CT_BIN;
135 else if (strcmp(buff2, "MODE1/2048") == 0)
136 data->tracks[count].type = CT_ISO;
137 else if (strcmp(buff2, "AUDIO") == 0)
139 if (data->tracks[count].fname != NULL)
141 // rely on extension, not type in cue..
142 char *ext = get_ext(data->tracks[count].fname);
143 if (strcasecmp(ext, "mp3") == 0)
144 data->tracks[count].type = CT_MP3;
145 else if (strcasecmp(ext, "wav") == 0)
146 data->tracks[count].type = CT_WAV;
148 elprintf(EL_STATUS, "unhandled audio format: \"%s\"",
149 data->tracks[count].fname);
154 // propagate previous
155 data->tracks[count].type = data->tracks[count-1].type;
159 elprintf(EL_STATUS, "unhandled track type: \"%s\"", buff2);
162 else if (BEGINS(buff, "INDEX "))
166 ret = get_token(buff+6, buff2, sizeof(buff2));
167 if (atoi(buff2) == 0) continue;
168 if (atoi(buff2) != 1) {
169 elprintf(EL_STATUS, "cue: don't know how to handle: \"%s\"", buff);
173 get_token(buff+6+ret, buff2, sizeof(buff2));
174 ret = sscanf(buff2, "%d:%d:%d", &m, &s, &f);
176 elprintf(EL_STATUS, "cue: failed to parse: \"%s\"", buff);
179 data->tracks[count].sector_offset = m*60*75 + s*75 + f;
180 // some strange .cues may need this
181 if (data->tracks[count].fname != NULL && strcmp(data->tracks[count].fname, current_file) != 0)
183 free(data->tracks[count].fname);
184 data->tracks[count].fname = strdup(current_file);
186 if (data->tracks[count].fname == NULL && strcmp(data->tracks[1].fname, current_file) != 0)
188 data->tracks[count].fname = strdup(current_file);
191 else if (BEGINS(buff, "PREGAP ") || BEGINS(buff, "POSTGAP "))
194 get_token(buff+7, buff2, sizeof(buff2));
195 ret = sscanf(buff2, "%d:%d:%d", &m, &s, &f);
197 elprintf(EL_STATUS, "cue: failed to parse: \"%s\"", buff);
200 // pregap overrides previous postgap?
201 // by looking at some .cues produced by some programs I've decided that..
202 if (BEGINS(buff, "PREGAP "))
203 data->tracks[count].pregap = m*60*75 + s*75 + f;
205 pending_pregap = m*60*75 + s*75 + f;
207 else if (BEGINS(buff, "REM LENGTH ")) // custom "extension"
210 get_token(buff+11, buff2, sizeof(buff2));
211 ret = sscanf(buff2, "%d:%d:%d", &m, &s, &f);
212 if (ret != 3) continue;
213 data->tracks[count].sector_xlength = m*60*75 + s*75 + f;
215 else if (BEGINS(buff, "REM"))
219 elprintf(EL_STATUS, "cue: unhandled line: \"%s\"", buff);
223 if (count < 1 || data->tracks[1].fname == NULL) {
225 for (; count > 0; count--)
226 if (data->tracks[count].fname != NULL)
227 free(data->tracks[count].fname);
232 data->track_count = count;
237 void cue_destroy(cue_data_t *data)
241 if (data == NULL) return;
243 for (c = data->track_count; c > 0; c--)
244 if (data->tracks[c].fname != NULL)
245 free(data->tracks[c].fname);
251 int main(int argc, char *argv[])
253 cue_data_t *data = cue_parse(argv[1]);
256 if (data == NULL) return 1;
258 for (c = 1; c <= data->track_count; c++)
259 printf("%2i: %i %9i %02i:%02i:%02i %9i %s\n", c, data->tracks[c].type, data->tracks[c].sector_offset,
260 data->tracks[c].sector_offset / (75*60), data->tracks[c].sector_offset / 75 % 60,
261 data->tracks[c].sector_offset % 75, data->tracks[c].pregap, data->tracks[c].fname);