File: parse.c

package info (click to toggle)
streamripper 1.64.6-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,904 kB
  • sloc: ansic: 11,699; sh: 8,548; makefile: 421; perl: 34
file content (658 lines) | stat: -rw-r--r-- 17,655 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
/* parse.c
 * metadata parsing routines
 *
 * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "srconfig.h"
#include "mchar.h"
#include "debug.h"
#include "srtypes.h"

/*****************************************************************************
 * Private global variables
 *****************************************************************************/
#define MAX_RULE_SIZE                2048
#define MAX_SUBMATCHES                 24

#define PARSERULE_CMD_MATCH          0x01
#define PARSERULE_CMD_SUBST          0x02

#define PARSERULE_SKIP               0x01
#define PARSERULE_GLOBAL             0x02
#define PARSERULE_ICASE              0x04
#define PARSERULE_SAVE               0x08
#define PARSERULE_EXCLUDE            0x10


static Parse_Rule m_default_rule_list[] = {
    { PARSERULE_CMD_MATCH, 
      PARSERULE_SKIP,
      0, 0, 0, 0, 0,
      0, 
      "^A suivre:",
      ""
    },
    { PARSERULE_CMD_SUBST, 
      PARSERULE_ICASE,
      0, 0, 0, 0, 0,
      0,
      "[[:space:]]*-?[[:space:]]*mp3pro$",
      ""
    },
    { PARSERULE_CMD_MATCH,
      PARSERULE_ICASE,
      1, 2, 0, 0, 0,
      0,
      "^[[:space:]]*(.*?[^-[:space:]])[[:space:]]+-[[:space:]]+(.*)[[:space:]]*$",
      ""
    },
    { PARSERULE_CMD_MATCH,
      PARSERULE_ICASE,
      1, 2, 0, 0, 0,
      0,
      "^[[:space:]]*([^-]*[^-[:space:]])[[:space:]]*-[[:space:]]*(.*)[[:space:]]*$",
      ""
    },
    { 0x00, 
      0x00,
      0, 0, 0, 0, 0,
      0,
      "",
      ""
    }
};

// static Parse_Rule* m_global_rule_list = m_default_rule_list;

/*****************************************************************************
 * Public functions
 *****************************************************************************/
#if !defined (USE_GLIB_REGEX)
static int
sr_regcomp (Parse_Rule* pr, mchar* rule_string, int cflags)
{
    /* GCS FIX: Use PCRE for utf8 */
    return regcomp(pr->reg, rule_string, cflags);
}
#endif

#if !defined (USE_GLIB_REGEX)
static int
mregexec (const regex_t* preg, const mchar* string, size_t nmatch,
	  regmatch_t pmatch[], int eflags)
{
    /* GCS FIX: Use PCRE for utf8 */
    return regexec (preg, string, nmatch, pmatch, eflags);
}
#endif

/* Returns 1 if successful, 0 if failure */
static int
compile_rule (Parse_Rule* pr, mchar* rule_string)
{
#if defined (USE_GLIB_REGEX)
    GError *error = NULL;

    pr->reg = g_regex_new (rule_string, 
			   0, 
			   0, 
			   &error);
    if (error) {
	debug_printf ("Error g_regex_new: %s\n", error->message);
	g_error_free (error);
	return 0;
    }
    return 1;

#else
    int rc;
    int cflags;

    pr->reg = (regex_t*) malloc (sizeof(regex_t));
    if (!pr->reg) return 0;

    cflags = REG_EXTENDED;
    if (pr->flags & PARSERULE_ICASE) {
	cflags |= REG_ICASE;
    }
    rc = sr_regcomp(pr, rule_string, cflags);
    if (rc != 0) {
	free(pr->reg);
	return 0;
    }
    return 1;
#endif
}

static void
use_default_rules (RIP_MANAGER_INFO* rmi)
{
    Parse_Rule* rulep;

    /* set global rule list to default */
    rmi->parse_rules = (Parse_Rule*) malloc (sizeof(m_default_rule_list));
    memcpy (rmi->parse_rules, m_default_rule_list, sizeof(m_default_rule_list));

    /* compile regular expressions */
    for (rulep = rmi->parse_rules; rulep->cmd; rulep++) {
	compile_rule (rulep, rulep->match);
    }
}

#if defined (USE_GLIB_REGEX)
static void
copy_rule_result (mchar* dest, GMatchInfo* match_info, int idx)
{
    gchar* match = g_match_info_fetch (match_info, idx);
    if (!match) return;

    debug_printf ("copy_rule_result: idx=%d\n", idx);
    if (idx > 0 && idx <= MAX_SUBMATCHES) {
	mstrncpy (dest, match, MAX_METADATA_LEN);
    }
}
#else
static void
copy_rule_result (mchar* dest, mchar* query_string, 
		  regmatch_t* pmatch, int idx)
{
    debug_printf ("copy_rule_result: idx=%d\n", idx);
    if (idx > 0 && idx <= MAX_SUBMATCHES) {
	mstrncpy (dest, query_string + pmatch[idx].rm_so,
		  pmatch[idx].rm_eo - pmatch[idx].rm_so + 1);
    }
}
#endif

/* Return 1 if successful, or 0 for failure */
static int
parse_flags (Parse_Rule* pr, char* flags)
{
    char flag1;

    while ((flag1 = *flags++)) {
        int* tag = 0;
	switch (flag1) {
	case 'e':
	    pr->flags |= PARSERULE_SKIP;
	    if (pr->cmd != PARSERULE_CMD_MATCH) return 0;
	    break;
	case 'g':
	    /* GCS FIX: Not yet implemented */
	    pr->flags |= PARSERULE_GLOBAL;
	    break;
	case 'i':
	    pr->flags |= PARSERULE_ICASE;
	    break;
	case 's':
	    pr->flags |= PARSERULE_SAVE;
	    if (pr->cmd != PARSERULE_CMD_MATCH) return 0;
	    break;
	case 'x':
	    pr->flags |= PARSERULE_EXCLUDE;
	    if (pr->cmd != PARSERULE_CMD_MATCH) return 0;
	    break;
	case 'A':
	    tag = &pr->artist_idx;
	    break;
	case 'C':
	    tag = &pr->album_idx;
	    break;
	case 'N':
	    tag = &pr->trackno_idx;
	    break;
	case 'T':
	    tag = &pr->title_idx;
	    break;
	case 'Y':
	    tag = &pr->year_idx;
	    break;
	case 0:
	case '\n':
	case '\r':
	    return 1;
	default:
	    return 0;
	}
	if (tag) {
	    int rc;
	    int nchar;
	    int idx = 0;

	    if (pr->cmd != PARSERULE_CMD_MATCH) return 0;
	    rc = sscanf (flags, "%d%n", &idx, &nchar);
	    if (rc == 0 || idx > MAX_SUBMATCHES) {
		return 0;
	    }
	    flags += nchar;
	    *tag = idx;
	}
    }
    return 1;
}

static char* 
parse_escaped_string (char* outbuf, char* inbuf)
{
    int escaped = 0;

    while (1) {
	switch (*outbuf++ = *inbuf++) {
	case '\\':
	    escaped = !escaped;
	    break;
	case '/':
	    if (!escaped){
		*(--outbuf) = 0;
		return inbuf;
	    }
	    break;
	case 0:
	    return 0;
	    break;
	default:
	    escaped = 0;
	    break;
	}
    }
    /* Never get here */
    return 0;
}

/* This mega-function reads in the rules file, and loads 
    all the rules into the rmi->parse_rules data structure */
void
init_metadata_parser (RIP_MANAGER_INFO* rmi, char* rules_file)
{
    FILE* fp;
    int ri;     /* Rule index */
    int rn;     /* Number of rules allocated */

    if (!rules_file || !*rules_file) {
	use_default_rules (rmi);
	return;
    }
    fp = fopen (rules_file, "r");
    if (!fp) {
	use_default_rules (rmi);
	return;
    }

    rmi->parse_rules = 0;
    ri = rn = 0;
    while (1) {
	char rule_buf[MAX_RULE_SIZE];
	char match_buf[MAX_RULE_SIZE];
	char subst_buf[MAX_RULE_SIZE];
	mchar w_match_buf[MAX_RULE_SIZE];
	mchar w_subst_buf[MAX_RULE_SIZE];
	char* rbp;
	char* rp;
	int got_command;
	int rc;
	
	/* Allocate memory for rule, if necessary. */
	/* If there are no more rules in the file, */
	/* this rule will become the sentinel null rule */
	if (ri+1 != rn) {
	    rmi->parse_rules = realloc (rmi->parse_rules,
					(ri+1) * sizeof(Parse_Rule));
	    memset (&rmi->parse_rules[ri], 0, sizeof(Parse_Rule));
	    rn = ri+1;
	}


	/* Get next line from file */
	rp = fgets (rule_buf,2048,fp);
	if (!rp) break;

	/* Skip leading whitespace */
	rbp = rule_buf;
	while (*rbp && isspace(*rbp)) rbp++;
	if (!*rbp) continue;

	/* Get command */
	got_command = 0;
	switch (*rbp++) {
	case 'm':
	    got_command = 1;
	    rmi->parse_rules[ri].cmd = PARSERULE_CMD_MATCH;
	    break;
	case 's':
	    got_command = 1;
	    rmi->parse_rules[ri].cmd = PARSERULE_CMD_SUBST;
	    break;
	case '#':
	    got_command = 0;
	    break;
	default:
	    got_command = 0;
	    printf ("Warning: malformed command in rules file:\n%s\n",
		    rule_buf);
	    break;
	}
	if (!got_command) continue;

	/* Skip past fwd slash */
	if (*rbp++ != '/') {
	    printf ("Warning: malformed command in rules file:\n%s\n",
		    rule_buf);
	    continue;
	}

	/* Parse match string */
	rbp = parse_escaped_string (match_buf, rbp);
	debug_printf ("match_buf=%s\n", match_buf);
	if (!rbp) {
	    printf ("Warning: malformed command in rules file:\n%s\n",
		    rule_buf);
	    continue;
	}

	/* Parse subst string */
	if (rmi->parse_rules[ri].cmd == PARSERULE_CMD_SUBST) {
	    rbp = parse_escaped_string (subst_buf, rbp);
	    debug_printf ("subst_buf=%s\n", subst_buf);
	    if (!rbp) {
		printf ("Warning: malformed command in rules file:\n%s\n",
			rule_buf);
		continue;
	    }
	}

	/* Parse flags */
	rc = parse_flags (&rmi->parse_rules[ri], rbp);
	if (!rc) {
	    printf ("Warning: malformed command in rules file:\n%s\n",
		    rule_buf);
	    continue;
	}

	/* Compile the rule */
	debug_printf ("Compiling the rule\n");
	gstring_from_string (rmi, w_match_buf, MAX_RULE_SIZE, match_buf, 
			     CODESET_UTF8);
	if (!compile_rule(&rmi->parse_rules[ri], w_match_buf)) {
	    printf ("Warning: malformed regular expression:\n%s\n", 
		    match_buf);
	    continue;
	}

	/* Copy rule strings */
	debug_printf ("Copying rule string (1)\n");
	debug_mprintf (m_("String is ") m_S m_("\n"), w_match_buf);
	rmi->parse_rules[ri].match = mstrdup(w_match_buf);
	debug_printf ("Copying rule string (2)\n");
	if (rmi->parse_rules[ri].cmd == PARSERULE_CMD_SUBST) {
	    debug_printf ("Copying rule string (3)\n");
	    gstring_from_string (rmi, w_subst_buf, MAX_RULE_SIZE, subst_buf, 
				 CODESET_UTF8);
	    debug_printf ("Copying rule string (4)\n");
	    rmi->parse_rules[ri].subst = mstrdup(w_subst_buf);
	    debug_printf ("Copying rule string (5)\n");
	}

	debug_printf ("End of loop\n");
	ri++;
    }
    fclose(fp);
}

void
compose_metadata (RIP_MANAGER_INFO* rmi, TRACK_INFO* ti)
{
    int num_bytes;
    unsigned char num_16_bytes;
    mchar w_composed_metadata[MAX_METADATA_LEN+1];

    if (ti->have_track_info) {
	if (ti->artist[0]) {
	    msnprintf (w_composed_metadata, MAX_METADATA_LEN,
		       m_("StreamTitle='") m_S m_(" - ") m_S m_("';"),
		       ti->artist, ti->title);
	} else {
	    msnprintf (w_composed_metadata, MAX_METADATA_LEN,
		       m_("StreamTitle='") m_S m_("';"),
		       ti->title);
	}
    } else {
	debug_printf ("No track info when composing relay metadata\n");
    }
    debug_printf ("Converting relay string to char\n");
    num_bytes = string_from_gstring (rmi, &ti->composed_metadata[1], 
				     MAX_METADATA_LEN, 
				     w_composed_metadata, 
				     CODESET_RELAY);
    ti->composed_metadata[MAX_METADATA_LEN] = 0;  // note, not LEN-1
    num_16_bytes = (num_bytes + 15) / 16;
    ti->composed_metadata[0] = num_16_bytes;
}

void
parse_metadata (RIP_MANAGER_INFO* rmi, TRACK_INFO* ti)
{
    int i;
    int eflags;
    int rc;
    int matched;
    mchar query_string[MAX_TRACK_LEN];
    Parse_Rule* rulep;

    /* Has any m/.../s rule matched? */
    BOOL save_track_matched = FALSE;

    /* Has any m/.../x rule matched? */
    BOOL exclude_track_matched = FALSE;

    ti->artist[0] = 0;
    ti->title[0] = 0;
    ti->album[0] = 0;
    ti->composed_metadata[0] = 0;
    ti->save_track = TRUE;

    /* Loop through rules, if we find a matching rule, then use it */
    /* For now, only default rules supported with ascii 
       regular expressions. */
    debug_printf ("Converting query string to wide\n");
    gstring_from_string (rmi, query_string, MAX_TRACK_LEN, 
			 ti->raw_metadata, CODESET_METADATA);
    for (rulep = rmi->parse_rules; rulep->cmd; rulep++) {
#if !defined (USE_GLIB_REGEX)
	regmatch_t pmatch[MAX_SUBMATCHES+1];
#endif
	eflags = 0;
	if (rulep->cmd == PARSERULE_CMD_MATCH) {
	    debug_mprintf (m_("Testing match rule: ") m_S m_(" vs. ") m_S m_("\n"),
			   query_string, rulep->match);
	    if (rulep->flags & PARSERULE_SKIP) {
#if defined (USE_GLIB_REGEX)
		rc = g_regex_match (rulep->reg, query_string, 0, NULL);
		matched = rc;
#else
		rc = mregexec (rulep->reg, query_string, 0, NULL, eflags);
		matched = !rc;
#endif
		if (!matched) {
		    continue;
		}
		/* GCS FIX: We need to return to the 
		   caller that the metadata should be dropped. */
		debug_printf ("Skip rule matched\n");
		ti->save_track = FALSE;
		ti->have_track_info = 0;
		return;
	    } else if (rulep->flags & PARSERULE_SAVE) {
#if defined (USE_GLIB_REGEX)
		rc = g_regex_match (rulep->reg, query_string, 0, NULL);
		matched = rc;
#else
		rc = mregexec (rulep->reg, query_string, 0, NULL, eflags);
		matched = !rc;
#endif
		if (!matched) {
		    if (!save_track_matched)
		        ti->save_track = FALSE;
		    continue;
		}
		if (!exclude_track_matched) {
		    ti->save_track = TRUE;
		    save_track_matched = TRUE;
		}
	    } else if (rulep->flags & PARSERULE_EXCLUDE) {
#if defined (USE_GLIB_REGEX)
		rc = g_regex_match (rulep->reg, query_string, 0, NULL);
		matched = rc;
#else
		rc = mregexec (rulep->reg, query_string, 0, NULL, eflags);
		matched = !rc;
#endif
		if (matched && !save_track_matched) {
		    /* Rule matched => Exclude track */
		    ti->save_track = FALSE;
		    exclude_track_matched = TRUE;
		}
	    } else {
#if defined (USE_GLIB_REGEX)
		GMatchInfo* match_info;
		gint nmatch;

		rc = g_regex_match (rulep->reg, query_string, 0, &match_info);
		if (rc == 0) {
		    /* Didn't match rule. */
		    continue;
		}
		nmatch = g_match_info_get_match_count (match_info);
		debug_printf ("Got %d matches\n", nmatch);
		for (i = 0; i < nmatch; i++) {
		    gchar* match = g_match_info_fetch (match_info, i);
		    debug_printf ("[%d] = %s\n", i, match);
		    g_free (match);
		}
		copy_rule_result (ti->artist, match_info, rulep->artist_idx);
		copy_rule_result (ti->title, match_info, rulep->title_idx);
		copy_rule_result (ti->album, match_info, rulep->album_idx);
		copy_rule_result (ti->track_p, match_info, rulep->trackno_idx);
		copy_rule_result (ti->year, match_info, rulep->year_idx);
		g_match_info_free (match_info);
#else
    		eflags = 0;
		rc = mregexec (rulep->reg, query_string, MAX_SUBMATCHES+1, 
			       pmatch, eflags);
		if (rc != 0) {
		    /* Didn't match rule. */
		    continue;
		}

		for (i = 0; i < MAX_SUBMATCHES+1; i++) {
		    debug_printf ("pmatch[%d]: (so,eo) = (%d,%d)\n", i, 
				  pmatch[i].rm_so, pmatch[i].rm_eo);
		}
		copy_rule_result (ti->artist, query_string, pmatch, rulep->artist_idx);
		copy_rule_result (ti->title, query_string, pmatch, rulep->title_idx);
		copy_rule_result (ti->album, query_string, pmatch, rulep->album_idx);
		copy_rule_result (ti->track_p, query_string, pmatch, rulep->trackno_idx);
		copy_rule_result (ti->year, query_string, pmatch, rulep->year_idx);
#endif
		ti->have_track_info = 1;
		compose_metadata (rmi, ti);
		debug_mprintf (m_("Parsed track info.\n")
			       m_("ARTIST: ") m_S m_("\n")
			       m_("TITLE: ")  m_S m_("\n")
			       m_("ALBUM: ")  m_S m_("\n")
			       m_("TRACK: ")  m_S m_("\n")
			       m_("YEAR: ")  m_S m_("\n"),
			       ti->artist, ti->title, ti->album,
                               ti->track_p, ti->year);
		return;
	    }
	}
	else if (rulep->cmd == PARSERULE_CMD_SUBST) {
#if defined (USE_GLIB_REGEX)
	    GMatchInfo* match_info;
	    gint start_pos, end_pos;
	    gchar *tmp, *subst_string;

	    debug_mprintf (m_("Testing subst rule: ") m_S m_(" vs. ") m_S m_("\n"),
			   query_string, rulep->match);
	    rc = g_regex_match (rulep->reg, query_string, 0, &match_info);
	    if (rc == 0) {
		/* Didn't match rule. */
		continue;
	    }
	    rc = g_match_info_fetch_pos (match_info, 0, &start_pos, &end_pos);
	    if (!rc) {
		debug_printf ("g_match_info_fetch_pos returned 0\n");
		g_match_info_free (match_info);
		continue;
	    }
	    debug_printf ("Matched at (%d,%d)\n", start_pos, end_pos);
	    if (start_pos == -1) {
		g_match_info_free (match_info);
		continue;
	    }
	    tmp = g_strndup (query_string, start_pos);
	    tmp[start_pos] = 0;
	    subst_string = g_strconcat (tmp,
					rulep->subst, 
					&tmp[end_pos],
					NULL);
	    g_free (tmp);
	    g_match_info_free (match_info);
	    mstrncpy (query_string, subst_string, MAX_TRACK_LEN);
#else
	    mchar subst_string[MAX_TRACK_LEN];
	    int used, left;
	    debug_mprintf (m_("Testing subst rule: ") m_S m_(" vs. ") m_S m_("\n"),
			   query_string, rulep->match);
	    rc = mregexec (rulep->reg, query_string, 1, pmatch, eflags);
	    if (rc != 0) {
		/* Didn't match rule. */
		continue;
	    }
	    /* Update the query string and continue. */
	    debug_printf ("Matched at (%d,%d)\n", 
			  pmatch[0].rm_so, pmatch[0].rm_eo);
	    mstrncpy (subst_string, query_string, pmatch[0].rm_so + 1);
	    debug_mprintf (m_("(1) subst_string = ") m_S m_("\n"), subst_string);
	    used = pmatch[0].rm_so;
	    left = MAX_TRACK_LEN - used;
	    mstrncpy (subst_string + used, rulep->subst, left);
	    debug_mprintf (m_("(2) subst_string = ") m_S m_("\n"), subst_string);
	    used += mstrlen (rulep->subst);
	    left = MAX_TRACK_LEN - used;
	    mstrncpy (subst_string + used, 
		      query_string + pmatch[0].rm_eo, left);
	    debug_mprintf (m_("(3) subst_string = ") m_S m_("\n"), subst_string);
	    mstrncpy (query_string, subst_string, MAX_TRACK_LEN);
	    debug_mprintf (m_("(4) query_string = ") m_S m_("\n"), query_string);
#endif
	}
    }
    debug_printf ("Fell through while parsing data...\n");
    mstrncpy (ti->title, query_string, MAX_TRACK_LEN);
    ti->have_track_info = 1;
    compose_metadata (rmi, ti);
}

void
parser_free (RIP_MANAGER_INFO* rmi)
{
    free (rmi->parse_rules);
    rmi->parse_rules = 0;
}