File: charfuncs.c

package info (click to toggle)
onak 0.6.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,280 kB
  • sloc: ansic: 13,824; sh: 403; perl: 301; sql: 21; makefile: 19
file content (113 lines) | stat: -rw-r--r-- 2,709 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
 * charfuncs.c - Routines for dealing with character streams.
 *
 * Copyright 2002 Jonathan McDowell <noodles@earth.li>
 *
 * 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; version 2 of the License.
 *
 * 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, see <https://www.gnu.org/licenses/>.
 */

#include <stdio.h>
#include <string.h>
#include <unistd.h>

#include "build-config.h"
#include "charfuncs.h"

/*
 * Fetches a char from a buffer.
 *	@ctx: Our buffer context structure.
 *	@count: The number of characters to get from the buffer.
 *	@c: Where to put the characters retrieved.
 */
size_t buffer_fetchchar(void *ctx, size_t count, void *c)
{
	struct buffer_ctx *buf = NULL;
	
	buf = (struct buffer_ctx *) ctx;

	if (buf->offset + count > buf->size) {
		count = buf->size - buf->offset;
	}

	memcpy(c, &buf->buffer[buf->offset], count);
	buf->offset += count;

	return count;
}

/*
 *	buffer_putchar - Puts a char to a buffer.
 *	@ctx: Our buffer context structure.
 *	@count: The number of characters to put into the buffer.
 *	@c: The characters to add to the buffer.
 *
 *	Adds characters to the buffer references by the buffer context. If we
 *	fill it then we double the size of the current buffer and then add the
 *	rest.
 */
size_t buffer_putchar(void *ctx, size_t count, void *c)
{
	struct buffer_ctx *buf = NULL;
	size_t newsize = 0;
	
	buf = (struct buffer_ctx *) ctx;

	for (newsize = buf->size; newsize < (buf->offset + count);
			newsize *= 2) ;

	if (newsize != buf->size) {
		buf->buffer = realloc(buf->buffer, newsize);
		buf->size = newsize;
	}

	memcpy(&buf->buffer[buf->offset], c, count);
	buf->offset += count;
	
	return count;
}

/*
 * Fetches a char from a file.
 */
size_t file_fetchchar(void *fd, size_t count, void *c)
{
	ssize_t ret = read( *(int *) fd, c, count);

	return (ret > 0) ? ret : 0;
}

/*
 * Puts a char to a file.
 */
size_t file_putchar(void *fd, size_t count, void *c)
{
	size_t ret = write( *(int *) fd, c, count);

	return (ret > 0) ? ret : 0;
}

/*
 * Gets a char from stdin.
 */
size_t stdin_getchar(__unused void *ctx, size_t count, void *c)
{
	return fread(c, 1, count, stdin);
}

/*
 * Puts a char to stdout.
 */
size_t stdout_putchar(__unused void *ctx, size_t count, void *c)
{
	return fwrite(c, 1, count, stdout);
}