owntone-server/src/mp3-scanner.c

120 lines
2.6 KiB
C
Raw Normal View History

2003-11-04 01:11:31 -05:00
/*
* $Id$
* Implementation file for mp3 scanner and monitor
*
* 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-11-04 16:25:50 -05:00
#include <dirent.h>
2003-11-04 18:00:36 -05:00
#include <errno.h>
2003-11-04 16:25:50 -05:00
#include <limits.h>
2003-11-04 01:11:31 -05:00
#include <stdio.h>
#include <stdlib.h>
2003-11-04 16:25:50 -05:00
#include <sys/types.h>
2003-11-04 01:11:31 -05:00
#include "db-memory.h"
#include "err.h"
2003-11-04 01:11:31 -05:00
#include "mp3-scanner.h"
2003-11-04 16:25:50 -05:00
/*
* Forwards
*/
int scan_foreground(char *path);
2003-11-04 01:11:31 -05:00
/*
* scan_init
*
* This assumes the database is already initialized.
*
* Ideally, this would check to see if the database is empty.
* If it is, it sets the database into bulk-import mode, and scans
* the MP3 directory.
*
* If not empty, it would start a background monitor thread
* and update files on a file-by-file basis
*/
int scan_init(char *path) {
2003-11-04 16:25:50 -05:00
if(db_is_empty()) {
if(db_start_initial_update())
return -1;
scan_foreground(path);
if(db_end_initial_update())
return -1;
} else {
/* do deferred updating */
2003-11-04 18:00:36 -05:00
return ENOTSUP;
2003-11-04 01:11:31 -05:00
}
2003-11-04 16:25:50 -05:00
2003-11-04 01:11:31 -05:00
return 0;
}
2003-11-04 16:25:50 -05:00
/*
* scan_foreground
*
* Do a brute force scan of a path, finding all the MP3 files there
*/
int scan_foreground(char *path) {
MP3FILE mp3file;
2003-11-04 18:00:36 -05:00
DIR *current_dir;
2003-11-04 16:25:50 -05:00
struct dirent de;
struct dirent *pde;
int err;
char mp3_path[PATH_MAX];
if((current_dir=opendir(path)) == NULL) {
return -1;
}
while(1) {
pde=&de;
2003-11-04 16:25:50 -05:00
err=readdir_r(current_dir,&de,&pde);
if(err == -1) {
2003-11-06 23:54:24 -05:00
DPRINTF(ERR_DEBUG,"Error on readdir_r: %s\n",strerror(errno));
2003-11-04 16:25:50 -05:00
err=errno;
2003-11-04 18:00:36 -05:00
closedir(current_dir);
2003-11-04 16:25:50 -05:00
errno=err;
return -1;
}
2003-11-06 23:54:24 -05:00
2003-11-04 16:25:50 -05:00
if(!pde)
break;
/* process the file */
2003-11-04 18:00:36 -05:00
if(strlen(de.d_name) > 4) {
if(strcasecmp(".mp3",(char*)&de.d_name[strlen(de.d_name) - 4]) == 0) {
2003-11-04 16:25:50 -05:00
/* we found an mp3 file */
DPRINTF(ERR_DEBUG,"Found mp3: %s\n",de.d_name);
2003-11-04 16:25:50 -05:00
sprintf(mp3_path,"%s/%s",path,de.d_name);
2003-11-04 18:00:36 -05:00
memset((void*)&mp3file,0,sizeof(mp3file));
mp3file.path=mp3_path;
mp3file.fname=de.d_name;
2003-11-04 16:25:50 -05:00
2003-11-06 23:54:24 -05:00
/* Do the tag lookup here */
2003-11-04 16:25:50 -05:00
db_add(&mp3file);
}
}
}
2003-11-04 18:00:36 -05:00
closedir(current_dir);
2003-11-04 16:25:50 -05:00
}