/*
  Copyright 2011-2017 David Robillard <http://drobilla.net>

  Permission to use, copy, modify, and/or distribute this software for any
  purpose with or without fee is hereby granted, provided that the above
  copyright notice and this permission notice appear in all copies.

  THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/

#include "byte_source.h"
#include "system.h"

#include "system.h"

#include "serd/serd.h"

#include <stdbool.h>
#include <stdlib.h>
#include <string.h>

static inline SerdStatus
serd_byte_source_page(SerdByteSource* source)
{
	source->read_head = 0;
	const size_t n_read = source->read_func(
		source->file_buf, 1, source->page_size, source->stream);
	if (n_read == 0) {
		source->file_buf[0] = '\0';
		source->eof         = true;
		return (source->error_func(source->stream)
		        ? SERD_ERR_UNKNOWN : SERD_FAILURE);
	} else if (n_read < source->page_size) {
		source->file_buf[n_read] = '\0';
	}
	return SERD_SUCCESS;
}

SerdStatus
serd_byte_source_open_source(SerdByteSource*     source,
                             SerdSource          read_func,
                             SerdStreamErrorFunc error_func,
                             SerdStreamCloseFunc close_func,
                             void*               stream,
                             const char*         name,
                             size_t              page_size)
{
	const Cursor cur = { name, 1, 1 };

	memset(source, '\0', sizeof(*source));
	source->read_func   = read_func;
	source->error_func  = error_func;
	source->close_func  = close_func;
	source->stream      = stream;
	source->page_size   = page_size;
	source->cur         = cur;
	source->from_stream = true;

	if (page_size > 1) {
		source->file_buf = (char*)serd_allocate_buffer(page_size);
		source->read_buf = source->file_buf;
		memset(source->file_buf, '\0', page_size);
	} else {
		source->read_buf = &source->read_byte;
	}

	return SERD_SUCCESS;
}

SerdStatus
serd_byte_source_prepare(SerdByteSource* source)
{
	source->prepared = true;
	if (source->from_stream) {
		if (source->page_size > 1) {
			return serd_byte_source_page(source);
		} else if (source->from_stream) {
			return serd_byte_source_advance(source);
		}
	}
	return SERD_SUCCESS;
}

SerdStatus
serd_byte_source_open_string(SerdByteSource* source, const char* utf8)
{
	const Cursor cur = { "(string)", 1, 1 };

	memset(source, '\0', sizeof(*source));
	source->cur      = cur;
	source->read_buf = utf8;
	return SERD_SUCCESS;
}

SerdStatus
serd_byte_source_close(SerdByteSource* source)
{
	SerdStatus st = SERD_SUCCESS;
	if (source->close_func) {
		st = source->close_func(source->stream) ? SERD_ERR_UNKNOWN
		                                        : SERD_SUCCESS;
	}
	if (source->page_size > 1) {
		free(source->file_buf);
	}
	memset(source, '\0', sizeof(*source));
	return st;
}

SerdStatus
serd_byte_source_advance(SerdByteSource* source)
{
	const bool paging = source->page_size > 1;
	SerdStatus st     = SERD_SUCCESS;

	switch (serd_byte_source_peek(source)) {
	case '\0': break;
	case '\n': ++source->cur.line; source->cur.col = 0; break;
	default:   ++source->cur.col;
	}

	// Reset EOF marker for reading from sockets/pipes
	source->eof = source->eof && !source->from_stream;

	if (source->from_stream && paging) {
		if (++source->read_head == source->page_size) {
			st = serd_byte_source_page(source);
		}
	} else if (source->from_stream) {
		if (!source->read_func(&source->read_byte, 1, 1, source->stream)) {
			st = source->error_func(source->stream) ? SERD_ERR_UNKNOWN
			                                        : SERD_FAILURE;
		}
	} else if (source->eof) {
		st = SERD_FAILURE; // Can't read past end of string
	} else {
		++source->read_head; // Move to next character in string
	}

	return st;
}