-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathinlinedata.c
275 lines (212 loc) · 6.44 KB
/
inlinedata.c
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
#include "inlinedata.h"
#include <stdbool.h>
#include <SDL.h>
#include <time.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include "nsdl.h"
#include "base64.h"
#include "nunifont.h"
#define PNG_DEBUG 3
#include <png.h>
SDL_Surface *inline_data_layer = 0;
char *inline_magic = "HTERMFILEXFER";
void inline_data_init(int swidth,int sheight) {
base64_init();
inline_data_layer = SDL_CreateRGBSurface(SDL_SWSURFACE,swidth,sheight,32,0x000000FF,0x0000FF00,0x00FF0000,0xFF000000);
}
void inline_data_resize(int swidth,int sheight) {
SDL_FreeSurface(inline_data_layer);
inline_data_layer = SDL_CreateRGBSurface(SDL_SWSURFACE,swidth,sheight,32,0x000000FF,0x0000FF00,0x00FF0000,0xFF000000);
}
int width, height;
int pixel_depth;
png_structp Gpng_ptr=0;
png_infop Ginfo_ptr=0;
png_bytep *row_pointers=0;
bool processing_png=false;
int file_end=0;
png_byte channels=0;
png_byte color_type=0;
png_colorp palette;
int num_palette;
/* This function is called (as set by png_set_progressive_read_fn() above) when enough data has been supplied so all of the header has been read. */
void info_callback(png_structp png_ptr, png_infop info) {
file_end=0;
width = png_get_image_width(png_ptr,info);
height = png_get_image_height(png_ptr,info);
pixel_depth = png_get_bit_depth(png_ptr,info);
channels = png_get_channels(png_ptr,info);
color_type = png_get_color_type(png_ptr,info);
if(color_type == PNG_COLOR_TYPE_GRAY) {}
if(color_type == PNG_COLOR_TYPE_GRAY_ALPHA){}
if(color_type == PNG_COLOR_TYPE_RGB) {}
if(color_type == PNG_COLOR_TYPE_RGB_ALPHA) {}
if(color_type == PNG_COLOR_TYPE_PALETTE ) {
int r = png_get_PLTE(png_ptr,info,&palette,&num_palette);
if(r == 0) {
}
png_uint_16p histogram = NULL;
png_get_hIST(png_ptr, info, &histogram);
png_set_expand(png_ptr);
png_set_filler(png_ptr, 0xFF, PNG_FILLER_AFTER);
png_read_update_info(png_ptr, info);
pixel_depth = 8;
}
int row_bytes = png_get_rowbytes(png_ptr,info);
row_pointers = malloc(sizeof(png_bytep *) * height);
for(size_t n=0;n<height;n++) {
row_pointers[n] = malloc(row_bytes);
}
png_start_read_image(png_ptr);
}
int32_t inlineget_pixel(void *row,int pixel_depth,int idx) {
if(pixel_depth == 1) {
int pos = pixel_depth*idx;
int byte = pos/8;
int bit = pos-((pos/8)*8);
int value = 0;
for(int n=0;n<pixel_depth;n++) {
value = value << 1;
if(((uint8_t *)row)[byte] & (1 << (8-bit))) value |= (value + 1);
bit++;
if(bit > 8) {bit=0; byte++;}
}
return value;
}
if(pixel_depth == 8) {
return ((uint32_t *)row)[idx];
}
}
/* This function is called when each row of image data is complete */
void row_callback(png_structp png_ptr, png_bytep new_row, png_uint_32 row_num, int pass) {
if(row_num >= height) {
// bad row number
}
png_progressive_combine_row(png_ptr, row_pointers[row_num], new_row);
for(int n=0;n<width;n++) {
uint32_t pixel = inlineget_pixel(new_row,pixel_depth,n);
if(pixel_depth == 1) {
if(pixel!=0) pixel = 0xFFFFFFFF;
}
nsdl_pointS(inline_data_layer,n,row_num,pixel);
}
}
void png_cleanup() {
png_destroy_read_struct(&Gpng_ptr, &Ginfo_ptr, (png_infopp)NULL);
Gpng_ptr = NULL;
Ginfo_ptr = NULL;
file_end=1;
}
void end_callback(png_structp png_ptr, png_infop info) {
png_cleanup();
}
int initialize_png_reader() {
Gpng_ptr = png_create_read_struct (PNG_LIBPNG_VER_STRING, (png_voidp)NULL,NULL,NULL);
if(!Gpng_ptr) return 1;
Ginfo_ptr = png_create_info_struct(Gpng_ptr);
if(!Ginfo_ptr) {
png_destroy_read_struct(&Gpng_ptr, (png_infopp)NULL, (png_infopp)NULL);
return 1;
}
if(setjmp(png_jmpbuf(Gpng_ptr))) {
png_destroy_read_struct(&Gpng_ptr, &Ginfo_ptr, (png_infopp)NULL);
return 1;
}
png_set_progressive_read_fn(Gpng_ptr, (void *)NULL, info_callback, row_callback, end_callback);
return 0;
}
/* A code fragment that you call as you receive blocks of data */
int inlinepng_process_data(png_bytep buffer, png_uint_32 length) {
if(Gpng_ptr == 0) {
png_cleanup();
return 0;
};
if (setjmp(png_jmpbuf(Gpng_ptr))) {
png_destroy_read_struct(&Gpng_ptr, &Ginfo_ptr, (png_infopp)NULL);
return 1;
}
png_process_data(Gpng_ptr, Ginfo_ptr, buffer, length);
return 0;
}
#define BUFFERSIZE 10241
unsigned char buffer[BUFFERSIZE];
int buffer_size=0;
void buffer_shift() {
for(int n=0;n<BUFFERSIZE-1;n++) {
buffer[n] = buffer[n+1];
}
}
void buffer_push(char *data,int length) {
for(int n=0;n<length;n++) {
if(buffer_size < BUFFERSIZE) {
buffer[buffer_size] = data[n];
buffer_size++;
} else {
buffer_shift();
buffer[BUFFERSIZE-1] = data[n];
}
}
}
void buffer_clear() {
buffer_size=0;
}
int buffer_search(char *v) {
if((buffer_size-((int)strlen(v))) < 0) return -1;
// shameful search
for(int n=0;n<(buffer_size-strlen(v));n++) {
if(strncmp(v,buffer+n,strlen(v)) == 0) {
return n;
}
}
return -1;
}
int inline_data_receive(char *data,int length) {
if(processing_png == true) {
if(file_end==1) {processing_png=false; return 1;}
char decoded_buffer[10240]; // should be malloc'd based on length.
bool failflag;
int decoded_buffer_size = base64_decode(data,length,decoded_buffer,&failflag);
if(decoded_buffer_size != 0) {
inlinepng_process_data(decoded_buffer,decoded_buffer_size);
if(file_end==1) { processing_png=false; return 1; }
}
if(failflag == true) {
file_end =1;
processing_png=false;
return 2;
}
if(file_end==1) processing_png=false;
return 1;
}
file_end=0;
buffer_push(data,length);
int npos = buffer_search("HTERMFNORMAL");
if(npos > 0) nunifont_size(16);
int dpos = buffer_search("HTERMFDOUBLE");
if(dpos > 0) nunifont_size(32);
int pos = buffer_search(inline_magic);
if(pos < 0) return 0;
processing_png=true;
base64_init();
initialize_png_reader();
char decoded_buffer[4096]; // should be malloc'd based on length.
bool failflag;
int decoded_buffer_size = base64_decode(buffer+pos+strlen(inline_magic),buffer_size-pos-strlen(inline_magic),decoded_buffer,&failflag);
if(decoded_buffer_size != 0) {
inlinepng_process_data(decoded_buffer,decoded_buffer_size);
}
buffer_clear();
if(failflag) {
processing_png=false;
return 0;
}
return 2;
}
void inline_data_clear() {
SDL_FillRect(inline_data_layer,NULL, 0x000000);
buffer_clear();
}