2005-04-07 12:17:14 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Alexandre Bourget
|
|
|
|
*
|
|
|
|
* Plugin to transform a Rockbox produced m3u playlist into something
|
|
|
|
* understandable by the picky original iRiver firmware.
|
|
|
|
*
|
|
|
|
* Based on sort.c by the Rockbox team.
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* 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.
|
2005-04-07 12:17:14 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "plugin.h"
|
|
|
|
|
2006-01-15 18:20:18 +00:00
|
|
|
PLUGIN_HEADER
|
2005-04-07 12:17:14 +00:00
|
|
|
|
2007-04-21 18:38:25 +00:00
|
|
|
ssize_t buf_size;
|
2005-04-07 12:17:14 +00:00
|
|
|
static char *filename;
|
|
|
|
static int readsize;
|
|
|
|
static char *stringbuffer;
|
|
|
|
static char crlf[2] = "\r\n";
|
|
|
|
|
|
|
|
int read_buffer(int offset)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
fd = rb->open(filename, O_RDONLY);
|
|
|
|
if(fd < 0)
|
|
|
|
return 10 * fd - 1;
|
|
|
|
|
|
|
|
/* Fill the buffer from the file */
|
|
|
|
rb->lseek(fd, offset, SEEK_SET);
|
|
|
|
readsize = rb->read(fd, stringbuffer, buf_size);
|
|
|
|
rb->close(fd);
|
|
|
|
|
|
|
|
if(readsize < 0)
|
|
|
|
return readsize * 10 - 2;
|
|
|
|
|
|
|
|
if(readsize == buf_size)
|
|
|
|
return buf_size; /* File too big */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int write_file(void)
|
|
|
|
{
|
|
|
|
char tmpfilename[MAX_PATH+1];
|
|
|
|
int fd;
|
|
|
|
int rc;
|
|
|
|
char *buf_ptr;
|
|
|
|
char *str_begin;
|
|
|
|
|
|
|
|
/* Create a temporary file */
|
|
|
|
|
|
|
|
rb->snprintf(tmpfilename, MAX_PATH+1, "%s.tmp", filename);
|
|
|
|
|
2007-02-01 23:08:15 +00:00
|
|
|
fd = rb->creat(tmpfilename);
|
2005-04-07 12:17:14 +00:00
|
|
|
if(fd < 0)
|
|
|
|
return 10 * fd - 1;
|
|
|
|
|
|
|
|
/* Let's make sure it always writes CR/LF and not only LF */
|
|
|
|
buf_ptr = stringbuffer;
|
|
|
|
str_begin = stringbuffer;
|
|
|
|
do {
|
2010-02-07 18:38:47 +00:00
|
|
|
/* Transform slashes into backslashes */
|
2005-04-07 12:17:14 +00:00
|
|
|
if(*buf_ptr == '/')
|
2010-02-07 18:38:47 +00:00
|
|
|
*buf_ptr = '\\';
|
|
|
|
|
|
|
|
if((*buf_ptr == '\r') || (*buf_ptr == '\n')) {
|
|
|
|
/* We have no complete string ? It's only a leading \n or \r ? */
|
|
|
|
if (!str_begin)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Terminate string */
|
|
|
|
*buf_ptr = 0;
|
|
|
|
|
|
|
|
/* Write our new string */
|
|
|
|
rc = rb->write(fd, str_begin, rb->strlen(str_begin));
|
|
|
|
if(rc < 0) {
|
|
|
|
rb->close(fd);
|
|
|
|
return 10 * rc - 2;
|
|
|
|
}
|
|
|
|
/* Write CR/LF */
|
|
|
|
rc = rb->write(fd, crlf, 2);
|
|
|
|
if(rc < 0) {
|
|
|
|
rb->close(fd);
|
|
|
|
return 10 * rc - 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Reset until we get a new line */
|
|
|
|
str_begin = NULL;
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* We start a new line here */
|
|
|
|
if (!str_begin)
|
|
|
|
str_begin = buf_ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Next char, until ... */
|
2005-05-27 06:54:16 +00:00
|
|
|
} while(buf_ptr++ < stringbuffer + readsize);
|
2005-04-07 12:17:14 +00:00
|
|
|
|
|
|
|
rb->close(fd);
|
|
|
|
|
|
|
|
/* Remove the original file */
|
|
|
|
rc = rb->remove(filename);
|
|
|
|
if(rc < 0) {
|
|
|
|
return 10 * rc - 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Replace the old file with the new */
|
|
|
|
rc = rb->rename(tmpfilename, filename);
|
|
|
|
if(rc < 0) {
|
|
|
|
return 10 * rc - 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-16 10:34:40 +00:00
|
|
|
enum plugin_status plugin_start(const void* parameter)
|
2005-04-07 12:17:14 +00:00
|
|
|
{
|
|
|
|
char *buf;
|
|
|
|
int rc;
|
2007-07-25 09:38:55 +00:00
|
|
|
int i;
|
2009-07-29 13:56:23 +00:00
|
|
|
if(!parameter) return PLUGIN_ERROR;
|
2005-04-07 12:17:14 +00:00
|
|
|
filename = (char *)parameter;
|
|
|
|
|
2007-04-21 19:07:15 +00:00
|
|
|
buf = rb->plugin_get_audio_buffer((size_t *)&buf_size); /* start munching memory */
|
2005-04-07 12:17:14 +00:00
|
|
|
|
|
|
|
stringbuffer = buf;
|
|
|
|
|
2007-07-25 09:38:55 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
rb->screens[i]->clear_display();
|
2007-03-16 21:56:08 +00:00
|
|
|
rb->splash(0, "Converting...");
|
2005-04-07 12:17:14 +00:00
|
|
|
|
|
|
|
rc = read_buffer(0);
|
2007-07-25 09:38:55 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
rb->screens[i]->clear_display();
|
2005-04-07 12:17:14 +00:00
|
|
|
if(rc == 0) {
|
2007-03-16 21:56:08 +00:00
|
|
|
rb->splash(0, "Writing...");
|
2005-04-07 12:17:14 +00:00
|
|
|
rc = write_file();
|
|
|
|
|
2007-07-25 09:38:55 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
rb->screens[i]->clear_display();
|
2005-04-07 12:17:14 +00:00
|
|
|
if(rc < 0) {
|
2008-08-15 08:27:39 +00:00
|
|
|
rb->splashf(HZ, "Can't write file: %d", rc);
|
2005-04-07 12:17:14 +00:00
|
|
|
} else {
|
2007-03-16 21:56:08 +00:00
|
|
|
rb->splash(HZ, "Done");
|
2005-04-07 12:17:14 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(rc < 0) {
|
2008-08-15 08:27:39 +00:00
|
|
|
rb->splashf(HZ, "Can't read file: %d", rc);
|
2005-04-07 12:17:14 +00:00
|
|
|
} else {
|
2007-03-16 21:56:08 +00:00
|
|
|
rb->splash(HZ, "The file is too big");
|
2005-04-07 12:17:14 +00:00
|
|
|
}
|
|
|
|
}
|
2007-07-25 09:38:55 +00:00
|
|
|
|
2005-04-07 12:17:14 +00:00
|
|
|
return PLUGIN_OK;
|
|
|
|
}
|