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

View File

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