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
|
/* -*- c-basic-offset: 2 -*- */
/*
Copyright(C) 2015 Brazil
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License version 2.1 as published by the Free Software Foundation.
This library 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.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA
*/
#include "grn_ctx.h"
#include "grn_str.h"
#include <stdio.h>
#include <string.h>
#ifdef WIN32
# include <share.h>
#endif /* WIN32 */
struct _grn_file_reader {
FILE *file;
grn_bool file_need_close;
};
grn_file_reader *
grn_file_reader_open(grn_ctx *ctx, const char *path)
{
grn_file_reader *reader;
FILE *file;
grn_bool file_need_close;
GRN_API_ENTER;
if (!path) {
ERR(GRN_INVALID_ARGUMENT, "[file-reader][open] path must not NULL");
GRN_API_RETURN(NULL);
}
if (strcmp(path, "-") == 0) {
file = stdin;
file_need_close = GRN_FALSE;
} else {
file = grn_fopen(path, "r");
if (!file) {
SERR("[file-reader][open] failed to open path: <%s>", path);
GRN_API_RETURN(NULL);
}
file_need_close = GRN_TRUE;
}
reader = GRN_MALLOC(sizeof(grn_file_reader));
reader->file = file;
reader->file_need_close = file_need_close;
GRN_API_RETURN(reader);
}
void
grn_file_reader_close(grn_ctx *ctx, grn_file_reader *reader)
{
if (!reader) {
return;
}
if (reader->file_need_close) {
if (fclose(reader->file) != 0) {
GRN_LOG(ctx, GRN_LOG_ERROR,
"[file-reader][close] failed to close: <%s>",
grn_strerror(errno));
}
}
GRN_FREE(reader);
}
grn_rc
grn_file_reader_read_line(grn_ctx *ctx,
grn_file_reader *reader,
grn_obj *buffer)
{
grn_rc rc = GRN_END_OF_DATA;
for (;;) {
size_t len;
#define BUFFER_SIZE 4096
grn_bulk_reserve(ctx, buffer, BUFFER_SIZE);
if (!fgets(GRN_BULK_CURR(buffer), BUFFER_SIZE, reader->file)) {
break;
}
#undef BUFFER_SIZE
if (!(len = strlen(GRN_BULK_CURR(buffer)))) { break; }
GRN_BULK_INCR_LEN(buffer, len);
rc = GRN_SUCCESS;
if (GRN_BULK_CURR(buffer)[-1] == '\n') { break; }
}
return rc;
}
|