owntone-server/src/playlist.c

296 lines
5.6 KiB
C
Raw Normal View History

2003-12-04 18:20:51 -05:00
/*
* $Id$
2003-12-29 15:41:08 -05:00
* iTunes-style smart playlists
2003-12-04 18:20:51 -05:00
*
2003-12-29 15:41:08 -05:00
* Copyright (C) 2003 Ron Pedde (ron@pedde.com)
*
* 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
2003-12-04 18:20:51 -05:00
*/
#include <stdio.h>
#include "err.h"
#include "mp3-scanner.h"
2003-12-04 18:20:51 -05:00
#include "playlist.h"
#include "parser.h"
/* Globals */
SMART_PLAYLIST pl_smart = { NULL, NULL, NULL };
int pl_error=0;
2003-12-04 18:20:51 -05:00
/* Forwards */
void pl_dump(void);
void pl_dump_node(PL_NODE *pnode, int indent);
int pl_load(char *file);
int pl_eval_node(MP3FILE *pmp3, PL_NODE *pnode);
extern FILE *yyin;
2003-12-04 18:20:51 -05:00
/*
* pl_dump
*
* Dump the playlist list for debugging
*/
void pl_dump(void) {
SMART_PLAYLIST *pcurrent=pl_smart.next;
while(pcurrent) {
printf("Playlist %s:\n",pcurrent->name);
pl_dump_node(pcurrent->root,1);
pcurrent=pcurrent->next;
}
}
/*
* pl_dump_node
*
* recursively dump a node
*/
void pl_dump_node(PL_NODE *pnode, int indent) {
int index;
int not=0;
unsigned int boolarg;
for(index=0;index<indent;index++) {
printf(" ");
}
if(pnode->op == AND) {
2003-12-04 18:20:51 -05:00
printf("AND\n");
} else if (pnode->op == OR) {
2003-12-04 18:20:51 -05:00
printf("OR\n");
}
if((pnode->op == AND) || (pnode->op == OR)) {
2003-12-04 18:20:51 -05:00
pl_dump_node(pnode->arg1.plval,indent+1);
pl_dump_node(pnode->arg2.plval,indent+1);
return;
}
switch(pnode->arg1.ival) {
case ARTIST:
2003-12-04 18:20:51 -05:00
printf("ARTIST ");
break;
case ALBUM:
2003-12-04 18:20:51 -05:00
printf("ALBUM ");
break;
case GENRE:
2003-12-04 18:20:51 -05:00
printf("GENRE ");
break;
case YEAR:
printf("YEAR ");
break;
2003-12-04 18:20:51 -05:00
default:
printf ("<unknown tag> ");
break;
}
boolarg=(pnode->op) & 0x7FFFFFFF;
if(pnode->op & 0x80000000)
not=1;
switch(boolarg) {
case IS:
printf("%s",not? "IS NOT " : "IS ");
2003-12-04 18:20:51 -05:00
break;
case INCLUDES:
printf("%s",not? "DOES NOT INCLUDE " : "INCLUDES ");
2003-12-04 18:20:51 -05:00
break;
case EQUALS:
printf("EQUALS ");
break;
case LESS:
printf("< ");
break;
case LESSEQUAL:
printf("<= ");
break;
case GREATER:
printf("> ");
break;
case GREATEREQUAL:
printf(">= ");
break;
2003-12-04 18:20:51 -05:00
default:
printf("<unknown boolop> ");
break;
}
switch(pnode->type) {
case T_STR:
printf("%s\n",pnode->arg2.cval);
break;
case T_INT:
printf("%d\n",pnode->arg2.ival);
break;
default:
printf("<unknown type>\n");
break;
}
2003-12-04 18:20:51 -05:00
return;
}
/*
* pl_load
*
* Load a smart playlist
*/
int pl_load(char *file) {
FILE *fin;
SMART_PLAYLIST *pcurrent;
int result;
fin=fopen(file,"r");
if(!fin) {
return -1;
}
yyin=fin;
result=yyparse();
fclose(fin);
if(pl_error) {
return -1;
}
/* register the playlists */
DPRINTF(ERR_INFO,"Finished loading smart playlists\n");
pcurrent=pl_smart.next;
while(pcurrent) {
DPRINTF(ERR_INFO,"Adding smart playlist %s as %d\n",pcurrent->name,pcurrent->id)
db_add_playlist(pcurrent->id, pcurrent->name);
pcurrent=pcurrent->next;
}
return 0;
}
/*
* pl_eval
*
* Run each MP3 file through the smart playlists
*/
void pl_eval(MP3FILE *pmp3) {
SMART_PLAYLIST *pcurrent;
pcurrent=pl_smart.next;
while(pcurrent) {
if(pl_eval_node(pmp3,pcurrent->root)) {
DPRINTF(ERR_DEBUG,"Matched song to playlist %s (%d)\n",pcurrent->name,pcurrent->id);
db_add_playlist_song(pcurrent->id, pmp3->id);
}
pcurrent=pcurrent->next;
}
}
/*
* pl_eval_node
*
* Test node status
*/
int pl_eval_node(MP3FILE *pmp3, PL_NODE *pnode) {
int r_arg,r_arg2;
int argtypec;
char *cval;
int ival;
int boolarg;
int not=0;
int retval=0;
if((pnode->op == AND) || (pnode->op == OR)) {
r_arg=pl_eval_node(pmp3,pnode->arg1.plval);
if((pnode->op == AND) && !r_arg)
return 0;
if((pnode->op == OR) && r_arg)
return 1;
r_arg2=pl_eval_node(pmp3,pnode->arg2.plval);
if(pnode->op == AND)
return r_arg && r_arg2;
return r_arg || r_arg2;
}
/* Not an AND/OR node, so let's eval */
switch(pnode->arg1.ival) {
case ALBUM:
cval=pmp3->album;
break;
case ARTIST:
cval=pmp3->artist;
break;
case GENRE:
cval=pmp3->genre;
break;
case YEAR:
ival=pmp3->year;
break;
}
boolarg=(pnode->op) & 0x7FFFFFFF;
if(pnode->op & 0x80000000)
not=1;
if(pnode->type==T_STR) {
if(!cval)
cval = "";
DPRINTF(ERR_DEBUG,"Matching %s to %s\n",cval,pnode->arg2.cval);
switch(boolarg) {
case IS:
r_arg=strcasecmp(cval,pnode->arg2.cval);
retval = not ? r_arg : !r_arg;
break;
case INCLUDES:
r_arg=strcasestr(cval,pnode->arg2.cval);
retval = not ? !r_arg : r_arg;
break;
}
}
if(pnode->type==T_INT) {
2004-01-13 10:39:49 -05:00
DPRINTF(ERR_DEBUG,"Comparing %d to %d\n",ival,pnode->arg2.ival);
switch(boolarg) {
case EQUALS:
r_arg=(ival == pnode->arg2.ival);
break;
case GREATER:
r_arg=(ival > pnode->arg2.ival);
break;
case GREATEREQUAL:
r_arg=(ival >= pnode->arg2.ival);
break;
case LESS:
r_arg=(ival < pnode->arg2.ival);
break;
case LESSEQUAL:
r_arg=(ival <= pnode->arg2.ival);
break;
}
retval = not? !r_arg : r_arg;
}
/* can't get here */
DPRINTF(ERR_DEBUG,"Returning %d\n",retval);
return retval;
}