state_file: errors are non-fatal in read_state_file()

If the state file cannot be read, for whatever reason, don't abort
MPD.  The state file isn't _that_ important.
This commit is contained in:
Max Kellermann 2009-01-03 14:53:23 +01:00
parent 2064e8ac4c
commit dcff29e5aa
4 changed files with 24 additions and 29 deletions

1
NEWS
View File

@ -9,6 +9,7 @@ ver 0.15 - (200?/??/??)
"log_file" "log_file"
* support logging to syslog * support logging to syslog
* fall back to XDG music directory if no music_directory is configured * fall back to XDG music directory if no music_directory is configured
* failure to read the state file is non-fatal
ver 0.14 (2008/12/25) ver 0.14 (2008/12/25)
* audio outputs: * audio outputs:

View File

@ -30,7 +30,6 @@
#include "log.h" #include "log.h"
#include "mapper.h" #include "mapper.h"
#include "path.h" #include "path.h"
#include "state_file.h"
#include "stored_playlist.h" #include "stored_playlist.h"
#include "ack.h" #include "ack.h"
#include "idle.h" #include "idle.h"
@ -279,17 +278,26 @@ static void loadPlaylistFromStateFile(FILE *fp, char *buffer,
char *temp; char *temp;
int song; int song;
if (!fgets(buffer, PLAYLIST_BUFFER_SIZE, fp)) if (!fgets(buffer, PLAYLIST_BUFFER_SIZE, fp)) {
state_file_fatal(); g_warning("No playlist in state file");
return;
}
while (!g_str_has_prefix(buffer, PLAYLIST_STATE_FILE_PLAYLIST_END)) { while (!g_str_has_prefix(buffer, PLAYLIST_STATE_FILE_PLAYLIST_END)) {
g_strchomp(buffer); g_strchomp(buffer);
temp = strtok(buffer, ":"); temp = strtok(buffer, ":");
if (temp == NULL) if (temp == NULL) {
state_file_fatal(); g_warning("Malformed playlist line in state file");
break;
}
song = atoi(temp); song = atoi(temp);
if (!(temp = strtok(NULL, ""))) if (!(temp = strtok(NULL, ""))) {
state_file_fatal(); g_warning("Malformed playlist line in state file");
break;
}
if (addToPlaylist(temp, NULL) == PLAYLIST_RESULT_SUCCESS if (addToPlaylist(temp, NULL) == PLAYLIST_RESULT_SUCCESS
&& current == song) { && current == song) {
if (state != PLAYER_STATE_STOP) { if (state != PLAYER_STATE_STOP) {
@ -304,8 +312,11 @@ static void loadPlaylistFromStateFile(FILE *fp, char *buffer,
} }
} }
if (!fgets(buffer, PLAYLIST_BUFFER_SIZE, fp)) if (!fgets(buffer, PLAYLIST_BUFFER_SIZE, fp)) {
state_file_fatal(); g_warning("'%s' not found in state file",
PLAYLIST_STATE_FILE_PLAYLIST_END);
break;
}
} }
} }
@ -357,9 +368,6 @@ void readPlaylistState(FILE *fp)
} else } else
setPlaylistRandomStatus(false); setPlaylistRandomStatus(false);
} else if (g_str_has_prefix(buffer, PLAYLIST_STATE_FILE_CURRENT)) { } else if (g_str_has_prefix(buffer, PLAYLIST_STATE_FILE_CURRENT)) {
if (strlen(buffer) ==
strlen(PLAYLIST_STATE_FILE_CURRENT))
state_file_fatal();
current = atoi(&(buffer current = atoi(&(buffer
[strlen [strlen
(PLAYLIST_STATE_FILE_CURRENT)])); (PLAYLIST_STATE_FILE_CURRENT)]));

View File

@ -26,7 +26,6 @@
#include <glib.h> #include <glib.h>
#include <string.h> #include <string.h>
#include <sys/stat.h>
#undef G_LOG_DOMAIN #undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "state_file" #define G_LOG_DOMAIN "state_file"
@ -74,24 +73,18 @@ void write_state_file(void)
void read_state_file(void) void read_state_file(void)
{ {
struct stat st;
unsigned int i; unsigned int i;
FILE *fp; FILE *fp;
get_state_file_path(); get_state_file_path();
if (!sfpath) if (!sfpath)
return; return;
if (stat(sfpath, &st) < 0) {
g_debug("failed to stat %s: %s", sfpath, strerror(errno));
return;
}
if (!S_ISREG(st.st_mode))
g_error("\"%s\" is not a regular file", sfpath);
while (!(fp = fopen(sfpath, "r")) && errno == EINTR); while (!(fp = fopen(sfpath, "r")) && errno == EINTR);
if (G_UNLIKELY(!fp)) { if (G_UNLIKELY(!fp)) {
g_error("failed to open %s: %s", g_warning("failed to open %s: %s",
sfpath, strerror(errno)); sfpath, strerror(errno));
return;
} }
for (i = 0; i < ARRAY_SIZE(sf_callbacks); i++) { for (i = 0; i < ARRAY_SIZE(sf_callbacks); i++) {
sf_callbacks[i].reader(fp); sf_callbacks[i].reader(fp);
@ -100,9 +93,3 @@ void read_state_file(void)
while(fclose(fp) && errno == EINTR) /* nothing */; while(fclose(fp) && errno == EINTR) /* nothing */;
} }
void G_GNUC_NORETURN state_file_fatal(void)
{
g_error("failed to parse %s", sfpath);
}

View File

@ -23,6 +23,5 @@
void write_state_file(void); void write_state_file(void);
void read_state_file(void); void read_state_file(void);
void G_GNUC_NORETURN state_file_fatal(void);
#endif /* STATE_FILE_H */ #endif /* STATE_FILE_H */