Blame libio/iogetwline.c

Packit 6c4009
/* Copyright (C) 1993-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; if not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.
Packit 6c4009
Packit 6c4009
   As a special exception, if you link the code in this file with
Packit 6c4009
   files compiled with a GNU compiler to produce an executable,
Packit 6c4009
   that does not cause the resulting executable to be covered by
Packit 6c4009
   the GNU Lesser General Public License.  This exception does not
Packit 6c4009
   however invalidate any other reasons why the executable file
Packit 6c4009
   might be covered by the GNU Lesser General Public License.
Packit 6c4009
   This exception applies to code released by its copyright holders
Packit 6c4009
   in files containing the exception.  */
Packit 6c4009
Packit 6c4009
#include "libioP.h"
Packit 6c4009
#include <string.h>
Packit 6c4009
#include <wchar.h>
Packit 6c4009
Packit 6c4009
size_t
Packit 6c4009
_IO_getwline (FILE *fp, wchar_t *buf, size_t n, wint_t delim,
Packit 6c4009
	      int extract_delim)
Packit 6c4009
{
Packit 6c4009
  return _IO_getwline_info (fp, buf, n, delim, extract_delim, (wint_t *) 0);
Packit 6c4009
}
Packit 6c4009
Packit 6c4009
/* Algorithm based on that used by Berkeley pre-4.4 fgets implementation.
Packit 6c4009
Packit 6c4009
   Read chars into buf (of size n), until delim is seen.
Packit 6c4009
   Return number of chars read (at most n).
Packit 6c4009
   Does not put a terminating '\0' in buf.
Packit 6c4009
   If extract_delim < 0, leave delimiter unread.
Packit 6c4009
   If extract_delim > 0, insert delim in output. */
Packit 6c4009
Packit 6c4009
size_t
Packit 6c4009
_IO_getwline_info (FILE *fp, wchar_t *buf, size_t n, wint_t delim,
Packit 6c4009
		   int extract_delim, wint_t *eof)
Packit 6c4009
{
Packit 6c4009
  wchar_t *ptr = buf;
Packit 6c4009
  if (eof != NULL)
Packit 6c4009
    *eof = 0;
Packit 6c4009
  if (__builtin_expect (fp->_mode, 1) == 0)
Packit 6c4009
    _IO_fwide (fp, 1);
Packit 6c4009
  while (n != 0)
Packit 6c4009
    {
Packit 6c4009
      ssize_t len = (fp->_wide_data->_IO_read_end
Packit 6c4009
                     - fp->_wide_data->_IO_read_ptr);
Packit 6c4009
      if (len <= 0)
Packit 6c4009
	{
Packit 6c4009
	  wint_t wc = __wuflow (fp);
Packit 6c4009
	  if (wc == WEOF)
Packit 6c4009
	    {
Packit 6c4009
	      if (eof)
Packit 6c4009
		*eof = wc;
Packit 6c4009
	      break;
Packit 6c4009
	    }
Packit 6c4009
	  if (wc == delim)
Packit 6c4009
	    {
Packit 6c4009
 	      if (extract_delim > 0)
Packit 6c4009
		*ptr++ = wc;
Packit 6c4009
	      else if (extract_delim < 0)
Packit 6c4009
		_IO_sputbackc (fp, wc);
Packit 6c4009
	      if (extract_delim > 0)
Packit 6c4009
		++len;
Packit 6c4009
	      return ptr - buf;
Packit 6c4009
	    }
Packit 6c4009
	  *ptr++ = wc;
Packit 6c4009
	  n--;
Packit 6c4009
	}
Packit 6c4009
      else
Packit 6c4009
	{
Packit 6c4009
	  wchar_t *t;
Packit 6c4009
	  if ((size_t) len >= n)
Packit 6c4009
	    len = n;
Packit 6c4009
	  t = wmemchr ((void *) fp->_wide_data->_IO_read_ptr, delim, len);
Packit 6c4009
	  if (t != NULL)
Packit 6c4009
	    {
Packit 6c4009
	      size_t old_len = ptr - buf;
Packit 6c4009
	      len = t - fp->_wide_data->_IO_read_ptr;
Packit 6c4009
	      if (extract_delim >= 0)
Packit 6c4009
		{
Packit 6c4009
		  ++t;
Packit 6c4009
		  if (extract_delim > 0)
Packit 6c4009
		    ++len;
Packit 6c4009
		}
Packit 6c4009
	      __wmemcpy ((void *) ptr, (void *) fp->_wide_data->_IO_read_ptr,
Packit 6c4009
			 len);
Packit 6c4009
	      fp->_wide_data->_IO_read_ptr = t;
Packit 6c4009
	      return old_len + len;
Packit 6c4009
	    }
Packit 6c4009
	  __wmemcpy ((void *) ptr, (void *) fp->_wide_data->_IO_read_ptr, len);
Packit 6c4009
	  fp->_wide_data->_IO_read_ptr += len;
Packit 6c4009
	  ptr += len;
Packit 6c4009
	  n -= len;
Packit 6c4009
	}
Packit 6c4009
    }
Packit 6c4009
  return ptr - buf;
Packit 6c4009
}