2004-02-24 00:41:20 +01:00
|
|
|
/* the Music Player Daemon (MPD)
|
2007-04-05 05:22:33 +02:00
|
|
|
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
|
2004-02-24 00:41:20 +01:00
|
|
|
* This project's homepage is: http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "myfprintf.h"
|
|
|
|
#include "interface.h"
|
2004-04-15 07:07:04 +02:00
|
|
|
#include "path.h"
|
|
|
|
#include "log.h"
|
2005-03-06 20:00:58 +01:00
|
|
|
#include "conf.h"
|
2006-07-30 05:43:38 +02:00
|
|
|
#include "utils.h"
|
2004-02-24 00:41:20 +01:00
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/select.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2007-12-28 03:56:25 +01:00
|
|
|
#define BUFFER_LENGTH MPD_PATH_MAX+1024
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2006-07-30 05:43:38 +02:00
|
|
|
static void blockingWrite(const int fd, const char *string, size_t len)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
|
|
|
while (len) {
|
2006-08-20 05:11:12 +02:00
|
|
|
ssize_t ret = xwrite(fd, string, len);
|
2006-07-30 05:43:38 +02:00
|
|
|
if (ret == len)
|
2006-07-20 18:02:40 +02:00
|
|
|
return;
|
2006-07-30 05:43:38 +02:00
|
|
|
if (ret >= 0) {
|
|
|
|
len -= ret;
|
|
|
|
string += ret;
|
|
|
|
continue;
|
2004-04-13 21:08:38 +02:00
|
|
|
}
|
2006-07-30 05:43:38 +02:00
|
|
|
return; /* error */
|
2004-04-13 21:08:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-30 05:43:38 +02:00
|
|
|
void vfdprintf(const int fd, const char *fmt, va_list args)
|
|
|
|
{
|
2007-02-19 08:58:05 +01:00
|
|
|
static char buffer[BUFFER_LENGTH];
|
2006-07-30 05:43:38 +02:00
|
|
|
char *buf = buffer;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
vsnprintf(buf, BUFFER_LENGTH, fmt, args);
|
|
|
|
len = strlen(buf);
|
2006-08-01 06:18:53 +02:00
|
|
|
if (fd == STDERR_FILENO ||
|
|
|
|
fd == STDOUT_FILENO ||
|
|
|
|
interfacePrintWithFD(fd, buf, len) < 0)
|
2006-07-30 05:43:38 +02:00
|
|
|
blockingWrite(fd, buf, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
mpd_fprintf void fdprintf(const int fd, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
va_start(args, fmt);
|
|
|
|
vfdprintf(fd, fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
|