qse/qse/lib/cmn/tio_put.c

110 lines
2.3 KiB
C
Raw Normal View History

2008-10-14 05:32:58 +00:00
/*
2009-09-16 04:01:02 +00:00
* $Id: tio_put.c 287 2009-09-15 10:01:02Z hyunghwan.chung $
*
2009-09-16 04:01:02 +00:00
Copyright 2006-2009 Chung, Hyung-Hwan.
This file is part of QSE.
2009-09-16 04:01:02 +00:00
QSE is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation, either version 3 of
the License, or (at your option) any later version.
2009-09-16 04:01:02 +00:00
QSE 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 Lesser General Public License for more details.
2009-09-16 04:01:02 +00:00
You should have received a copy of the GNU Lesser General Public
License along with QSE. If not, see <http://www.gnu.org/licenses/>.
2008-10-14 05:32:58 +00:00
*/
2008-12-21 21:35:07 +00:00
#include <qse/cmn/tio.h>
2009-01-18 01:48:21 +00:00
#include <qse/cmn/chr.h>
2008-10-14 05:32:58 +00:00
static qse_ssize_t tio_putc (qse_tio_t* tio, qse_char_t c)
2008-10-14 05:32:58 +00:00
{
2008-12-21 21:35:07 +00:00
#ifndef QSE_CHAR_IS_MCHAR
qse_size_t n, i;
qse_mchar_t mc[50];
2008-10-14 05:32:58 +00:00
#endif
2008-12-21 21:35:07 +00:00
if (tio->outbuf_len >= QSE_COUNTOF(tio->outbuf))
2008-10-14 05:32:58 +00:00
{
/* maybe, previous flush operation has failed a few
* times previously. so the buffer is full.
*/
2008-12-21 21:35:07 +00:00
tio->errnum = QSE_TIO_ENOSPC;
2008-10-14 05:32:58 +00:00
return -1;
}
2008-12-21 21:35:07 +00:00
#ifdef QSE_CHAR_IS_MCHAR
2008-10-14 05:32:58 +00:00
tio->outbuf[tio->outbuf_len++] = c;
2008-12-21 21:35:07 +00:00
if (tio->outbuf_len >= QSE_COUNTOF(tio->outbuf))
return qse_tio_flush (tio);
2008-10-14 05:32:58 +00:00
#else
2008-12-21 21:35:07 +00:00
n = qse_wctomb (c, mc, QSE_COUNTOF(mc));
2008-10-14 05:32:58 +00:00
if (n == 0)
{
2008-12-21 21:35:07 +00:00
tio->errnum = QSE_TIO_EILCHR;
2008-10-15 04:08:31 +00:00
return -1;
}
2008-12-21 21:35:07 +00:00
else if (n > QSE_COUNTOF(mc))
2008-10-15 04:08:31 +00:00
{
2008-12-21 21:35:07 +00:00
tio->errnum = QSE_TIO_ENOSPC;
2008-10-14 05:32:58 +00:00
return -1;
}
for (i = 0; i < n; i++)
{
tio->outbuf[tio->outbuf_len++] = mc[i];
2008-12-21 21:35:07 +00:00
if (tio->outbuf_len >= QSE_COUNTOF(tio->outbuf))
2008-10-14 05:32:58 +00:00
{
if (qse_tio_flush (tio) == -1) return -1;
2008-10-14 05:32:58 +00:00
}
}
#endif
2008-12-21 21:35:07 +00:00
if (c == QSE_T('\n') && tio->outbuf_len > 0)
2008-10-14 05:32:58 +00:00
{
if (qse_tio_flush (tio) == -1) return -1;
2008-10-14 05:32:58 +00:00
}
return 1;
}
2009-01-18 01:48:21 +00:00
qse_ssize_t qse_tio_write (qse_tio_t* tio, const qse_char_t* str, qse_size_t size)
2008-10-14 05:32:58 +00:00
{
2008-12-21 21:35:07 +00:00
qse_ssize_t n;
const qse_char_t* p;
2008-10-14 05:32:58 +00:00
if (size == 0) return 0;
p = str;
2008-10-14 05:32:58 +00:00
if (size == (qse_size_t)-1)
{
while (*p != QSE_T('\0'))
{
n = tio_putc (tio, *p);
if (n == -1) return -1;
if (n == 0) break;
p++;
}
}
else
{
const qse_char_t* end = str + size;
while (p < end)
{
n = tio_putc (tio, *p);
if (n == -1) return -1;
if (n == 0) break;
p++;
}
2008-10-14 05:32:58 +00:00
}
return p - str;
}