-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpdf_text.c
More file actions
289 lines (243 loc) · 8.82 KB
/
pdf_text.c
File metadata and controls
289 lines (243 loc) · 8.82 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <sys/mman.h>
#include <time.h>
#include <unistd.h>
#include "pdf.h"
#include "pdfio/pdfio.h"
#define MAX_PATH 1024
#define MAX_READ_BYTES (8 * 1024 * 1024)
#define BUFFER_SIZE 500000
#define MAX_CHUNK_SIZE 4096
#define BUF_ADD(fmt, ...) \
fprintf(out, fmt, ##__VA_ARGS__);
static const struct {
const char *method;
} http_method_map[] = {
[WASI_HTTP_TYPES_METHOD_GET] = { "GET" },
[WASI_HTTP_TYPES_METHOD_HEAD] = { "HEAD" },
[WASI_HTTP_TYPES_METHOD_POST] = { "POST" },
[WASI_HTTP_TYPES_METHOD_PUT] = { "PUT" },
[WASI_HTTP_TYPES_METHOD_DELETE] = { "DELETE" },
[WASI_HTTP_TYPES_METHOD_CONNECT] = { "CONNECT" },
[WASI_HTTP_TYPES_METHOD_OPTIONS] = { "OPTIONS" },
[WASI_HTTP_TYPES_METHOD_TRACE] = { "TRACE" },
[WASI_HTTP_TYPES_METHOD_PATCH] = { "PATCH" },
[WASI_HTTP_TYPES_METHOD_OTHER] = { "OTHER" }
};
void print_pdf_text(pdf_list_u8_t *data, FILE *out)
{
pdfio_file_t *pdf;
size_t i, j, // Looping vars
num_pages, // Number of pages
num_streams; // Number of streams for page
pdfio_obj_t *obj; // Current page object
pdfio_stream_t *st; // Current page content stream
char buffer[1024]; // String buffer
bool first; // First string token?
pdf = pdfioMemBufOpen((char*)data->ptr, data->len, /*password_cb*/NULL, /*password_cbdata*/NULL, /*error_cb*/NULL, /*error_cbdata*/NULL);
for (i = 0, num_pages = pdfioFileGetNumPages(pdf); i < num_pages; i ++) {
if ((obj = pdfioFileGetPage(pdf, i)) == NULL) {
continue;
}
num_streams = pdfioPageGetNumStreams(obj);
//BUF_ADD("page%u=%p, num_streams=%u\n", (unsigned)i, obj, (unsigned)num_streams);
for (j = 0; j < num_streams; j ++) {
if ((st = pdfioPageOpenStream(obj, j, true)) == NULL) {
continue;
}
//BUF_ADD("page%u st%u=%p\n", (unsigned)i, (unsigned)j, st);
first = true;
while (pdfioStreamGetToken(st, buffer, sizeof(buffer))) {
if (buffer[0] == '(') {
if (first) {
first = false;
}
fputs(buffer + 1, out);
}
else if (!strcmp(buffer, "Td") || !strcmp(buffer, "TD") || !strcmp(buffer, "T*") || !strcmp(buffer, "\'") || !strcmp(buffer, "\"")) {
fputc('\n', out);
first = true;
}
}
if (!first) {
fputc('\n', out);
}
pdfioStreamClose(st);
}
}
pdfioFileClose(pdf);
}
void show_pdf_info(pdf_list_u8_t *data, FILE *out)
{
pdfio_file_t *pdf;
time_t creation_date;
struct tm *creation_tm;
char creation_text[256];
// Open the PDF file with the default callbacks...
pdf = pdfioMemBufOpen((char*)data->ptr, data->len, /*password_cb*/NULL, /*password_cbdata*/NULL, /*error_cb*/NULL, /*error_cbdata*/NULL);
if (pdf == NULL)
return;
// Get the creation date and convert to a string...
creation_date = pdfioFileGetCreationDate(pdf);
creation_tm = localtime(&creation_date);
strftime(creation_text, sizeof(creation_text), "%c", creation_tm);
// Print file information to stdout...
BUF_ADD(" Title: %s\n", pdfioFileGetTitle(pdf));
BUF_ADD(" Author: %s\n", pdfioFileGetAuthor(pdf));
BUF_ADD(" Created On: %s\n", creation_text);
BUF_ADD(" Number Pages: %u\n", (unsigned)pdfioFileGetNumPages(pdf));
// Close the PDF file...
pdfioFileClose(pdf);
}
void exports_wasi_http_incoming_handler_handle(
exports_wasi_http_incoming_handler_own_incoming_request_t request,
exports_wasi_http_incoming_handler_own_response_outparam_t response_out)
{
FILE *out;
int fd;
size_t size;
char *out_ptr;
char *ptr;
char clen[32];
wasi_http_types_borrow_incoming_request_t b_req;
wasi_http_types_own_headers_t hdrs;
wasi_http_types_borrow_fields_t b_hdrs;
wasi_http_types_own_incoming_body_t r_body;
wasi_http_types_borrow_incoming_body_t b_r_body;
wasi_http_types_own_outgoing_response_t resp;
wasi_http_types_borrow_outgoing_response_t b_resp;
wasi_http_types_own_fields_t fields;
wasi_http_types_borrow_fields_t b_fields;
wasi_http_types_result_own_outgoing_response_error_code_t rerr = { };
wasi_http_types_own_outgoing_body_t body;
wasi_http_types_borrow_outgoing_body_t b_body;
wasi_io_streams_own_output_stream_t out_stream;
wasi_io_streams_borrow_output_stream_t b_out_stream;
pdf_list_u8_t stream_data;
wasi_io_streams_stream_error_t stream_err;
wasi_http_types_header_error_t hdr_err;
wasi_http_types_field_key_t key;
wasi_http_types_field_value_t value;
wasi_http_types_method_t method;
pdf_list_tuple2_field_key_field_value_t fvk;
wasi_http_types_own_input_stream_t in_stream;
wasi_io_streams_borrow_input_stream_t b_in_stream;
pdf_list_u8_t data = {0}; //TODO is this necessary?
wasi_io_streams_stream_error_t in_stream_err;
pdf_string_t prstr;
size_t content_length;
bool ok;
b_req = wasi_http_types_borrow_incoming_request(request);
out = open_memstream(&out_ptr, &size);
BUF_ADD("*** WasmCloud with C ***\n\n");
BUF_ADD("[Request Info]\n");
wasi_http_types_method_incoming_request_path_with_query(b_req, &prstr);
BUF_ADD("REQUEST_PATH = %.*s\n", (int)prstr.len, prstr.ptr);
wasi_http_types_method_incoming_request_method(b_req, &method);
BUF_ADD("METHOD = %s\n", http_method_map[method.tag].method);
ptr = memchr(prstr.ptr, '?', prstr.len);
BUF_ADD("QUERY = %.*s\n",
ptr ? (int)(((char *)(prstr.ptr + prstr.len)) - ptr - 1) : 0,
ptr ? ptr + 1 : "");
BUF_ADD("\n[Request Headers]\n");
hdrs = wasi_http_types_method_incoming_request_headers(b_req);
b_hdrs = wasi_http_types_borrow_fields(hdrs);
wasi_http_types_method_fields_entries(b_hdrs, &fvk);
for (size_t i = 0; i < fvk.len; i++) {
BUF_ADD("%.*s = %.*s\n",
(int)fvk.ptr[i].f0.len, fvk.ptr[i].f0.ptr,
(int)fvk.ptr[i].f1.len, fvk.ptr[i].f1.ptr);
if (fvk.ptr[i].f0.len == 14 && strncasecmp((const char *)fvk.ptr[i].f0.ptr, "Content-Length", 14) == 0) {
content_length = atoll((const char *)fvk.ptr[i].f1.ptr);
BUF_ADD("\nContent-Length found: %zu\n", content_length);
}
}
pdf_list_tuple2_field_key_field_value_free(&fvk);
wasi_http_types_method_incoming_request_consume(b_req, &r_body);
b_r_body = wasi_http_types_borrow_incoming_body(r_body);
wasi_http_types_method_incoming_body_stream(b_r_body, &in_stream);
b_in_stream = wasi_io_streams_borrow_input_stream(in_stream);
data.ptr = malloc(content_length);
if (data.ptr == NULL) {
fprintf(stderr, "Memory allocation failed for content length: %zu\n", content_length);
}
data.len = 0;
while (data.len < content_length) {
size_t bytes_to_read = content_length - data.len;
if (bytes_to_read > MAX_READ_BYTES) {
bytes_to_read = MAX_READ_BYTES;
}
pdf_list_u8_t temp_data = {0};
ok = wasi_io_streams_method_input_stream_blocking_read(b_in_stream, bytes_to_read, &temp_data, &in_stream_err);
if (!ok) {
BUF_ADD("Error reading from stream: %d\n", in_stream_err.tag);
free(data.ptr);
break;
}
if (temp_data.len == 0) {
// Unexpected end of stream
BUF_ADD("Stream ended prematurely. Expected %zu bytes, got %zu\n", content_length, data.len);
free(data.ptr);
break;
}
// Copy temp_data to data
memcpy(data.ptr + data.len, temp_data.ptr, temp_data.len);
data.len += temp_data.len;
pdf_list_u8_free(&temp_data);
}
if (method.tag == WASI_HTTP_TYPES_METHOD_POST ||
method.tag == WASI_HTTP_TYPES_METHOD_PUT) {
BUF_ADD("\n[%s data]\n",
http_method_map[method.tag].method);
if (data.len == content_length) {
show_pdf_info(&data, out);
print_pdf_text(&data, out);
} else {
BUF_ADD("\nExpected content of length %zu, got %zu\n", content_length, data.len);
}
}
fclose(out);
fields = wasi_http_types_constructor_fields();
b_fields = wasi_http_types_borrow_fields(fields);
pdf_string_set((pdf_string_t *)&key, "Content-Length");
sprintf(clen, "%zu", size);
pdf_string_set((pdf_string_t *)&value, clen);
wasi_http_types_method_fields_append(b_fields, &key, &value,
&hdr_err);
resp = wasi_http_types_constructor_outgoing_response(fields);
b_resp = wasi_http_types_borrow_outgoing_response(resp);
wasi_http_types_method_outgoing_response_body(b_resp, &body);
b_body = wasi_http_types_borrow_outgoing_body(body);
wasi_http_types_method_outgoing_body_write(b_body, &out_stream);
b_out_stream = wasi_io_streams_borrow_output_stream(out_stream);
size_t bytes_written = 0;
while (bytes_written < size) {
size_t chunk_size = size - bytes_written;
if (chunk_size > MAX_CHUNK_SIZE) {
chunk_size = MAX_CHUNK_SIZE;
}
stream_data.len = chunk_size;
stream_data.ptr = (uint8_t *)(out_ptr + bytes_written);
ok = wasi_io_streams_method_output_stream_blocking_write_and_flush(
b_out_stream,
&stream_data,
&stream_err);
if (!ok) {
BUF_ADD("Error writing to stream: %d\n", stream_err.tag);
break;
}
bytes_written += chunk_size;
}
free(out_ptr);
wasi_http_types_result_own_outgoing_response_error_code_t result = {
.is_err = false,
.val = {
.ok = resp
}
};
wasi_http_types_static_response_outparam_set(response_out, &result);
}