summaryrefslogtreecommitdiff
path: root/src/escpos/parser.rl
blob: 015c690f75559d0cda5f48c4d1062183d5e75a50 (plain)
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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
#include "util/ragel/ragel.h"
#include "stack.h"
#include "default-font.h"
#include "parser.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
#include <err.h>
#include "utf8.h"

#define MAX(x, y) (((x) > (y)) ? (x) : (y))
#define MIN(x, y) (((x) < (y)) ? (x) : (y))
#define div_round_up(x, y) (1 + ((x - 1) / y))

static const uint8_t SPACING = 1;

struct utf8 {
   uint32_t state;
};

struct cursor {
   size_t x, y, wy;
};

struct raster {
   struct font font;
   uint8_t barcode_height;
   uint8_t barcode_type;
   enum {
      UNDERLINE_NONE,
      UNDERLINE_LIGHT,
      UNDERLINE_HEAVY,
   } underline;
   enum {
      JUSTIFY_LEFT,
      JUSTIFY_CENTER,
      JUSTIFY_RIGHT
   } justify;
   bool emphasis;
   bool double_strike;
   bool double_width;
   bool double_height;
};

static void
init_canvas(struct escpos_canvas *canvas, struct cursor *cursor)
{
   assert(canvas && cursor);
   memset(canvas->data, 0, canvas->w * canvas->h);
   *cursor = (struct cursor){ .x = 0, .y = 0, .wy = 0 };
}

static void
init_raster(struct raster *raster)
{
   assert(raster);
   *raster = (struct raster){ .font = _intlfonts_ucs };
}

static void
render_chr(struct escpos_canvas *canvas, struct cursor *cursor, const struct raster *raster, const uint32_t cp)
{
   assert(canvas && raster);
   const size_t off = canvas->w * cursor->y + cursor->x;
   const struct glyph *glyph = &raster->font.ucs2glyph[MIN(MAX(cp, 0), raster->font.max_ucs)];
   const size_t width = div_round_up(glyph->width, 8);
   const uint8_t *data = &raster->font.data[glyph->offset];
   for (size_t gy = 0; gy < raster->font.height; ++gy) {
      for (size_t gx = 0; gx < width; ++gx) {
         for (uint8_t b = 0; b < 8; ++b) {
            const size_t dst = off + (canvas->w * gy + (gx * 4) + b);
            assert(dst < canvas->w * canvas->h);
            canvas->data[dst] = data[width * gy + gx] & (1 << (7 - b));
         }
      }
   }
   cursor->x += MIN(glyph->width + SPACING, canvas->w - cursor->x);
   cursor->wy = MIN(cursor->y + MAX(raster->font.height, 1) - 1, canvas->h);
}

static void
apply_canvas(struct escpos_canvas *dst, struct cursor *dst_cursor, struct escpos_canvas *src, struct cursor *src_cursor)
{
   // According to epson docs, the justification is applied after print buffer is applied
   // Thus we should apply justification here, need const struct *raster as input.
   assert(dst && dst_cursor && src && src_cursor);
   const size_t off = dst->w * dst_cursor->y + dst_cursor->x;
   assert(off + src->w * src_cursor->wy <= dst->w * dst->h);
   memcpy((char*)dst->data + off, src->data, src->w * src_cursor->wy);
   dst_cursor->wy = MAX(dst_cursor->wy, src_cursor->wy);
   init_canvas(src, src_cursor);
}

static void
render_checker(struct escpos_canvas *canvas)
{
   for (size_t gy = 0; gy < canvas->w; ++gy) {
      for (size_t gx = 0; gx < canvas->h; ++gx) {
         const size_t dst = canvas->w * gy + gx;
         assert(dst < canvas->w * canvas->h);
         canvas->data[dst] = ((gy * gx) % 2);
      }
   }
}

static void
lfd(const struct escpos_canvas *canvas, struct cursor *cursor, const struct raster *raster, const uint8_t num)
{
   assert(canvas && cursor);
   const size_t lf = (raster->font.height + SPACING) * num;
   cursor->x = 0;
   cursor->y += MIN(lf, canvas->h - cursor->y);
   cursor->wy = cursor->y + raster->font.height + SPACING;
}

static void
cut(const struct escpos_parser *parser, struct escpos_canvas *canvas, struct cursor *cursor)
{
   assert(parser && canvas && cursor);
   assert(cursor->wy <= canvas->h);

   if (cursor->wy > 0) {
      parser->write(parser, canvas->data, canvas->w, MIN(canvas->h, cursor->wy));
      init_canvas(canvas, cursor);
   }
}

%%{
   machine escpos_parser;
   alphtype unsigned char;
   include escpos_stack "stack.rl";
   variable p ragel.p;
   variable pe ragel.pe;
   variable eof ragel.eof;
   write data noerror nofinal;

   action init {
      puts("init");
      init_canvas(&parser->canvas, &canvas_cursor);
      init_canvas(&parser->print_buffer, &print_buffer_cursor);
      init_raster(&raster);
   }

   action lfd {
      fprintf(stderr, "lfd %d\n", stack_get_num(&stack));
      apply_canvas(&parser->canvas, &canvas_cursor, &parser->print_buffer, &print_buffer_cursor);
      lfd(&parser->canvas, &canvas_cursor, &raster, stack_get_num(&stack));
   }

   action lfv {
      fprintf(stderr, "lfv %d\n", stack_get_num(&stack));
      apply_canvas(&parser->canvas, &canvas_cursor, &parser->print_buffer, &print_buffer_cursor);
      lfd(&parser->canvas, &canvas_cursor, &raster, stack_get_num(&stack));
      const size_t lf = (raster.font.height + SPACING) * stack_get_num(&stack);
      canvas_cursor.x = 0;
      canvas_cursor.y -= MIN(lf, canvas_cursor.y);
      canvas_cursor.wy = canvas_cursor.y + raster.font.height + SPACING;
   }

   action print_mode {
      fprintf(stderr, "print-mode: %d\n", stack_get_num(&stack));
      enum {
         MODE_FONTA = 1<<0,
         MODE_FONTB = 1<<1,
         MODE_EMPHASIS = 1<<2,
         MODE_DOUBLE_HEIGHT = 1<<3,
         MODE_DOUBLE_WIDTH = 1<<4,
         MODE_UNDERLINE = 1<<5,
      };
      const uint8_t mode = stack_get_num(&stack);
      raster.emphasis = (mode & MODE_EMPHASIS);
      raster.double_width = (mode & MODE_DOUBLE_HEIGHT);
      raster.double_width = (mode & MODE_DOUBLE_WIDTH);
      raster.underline = (mode & MODE_UNDERLINE);
   }

   action underline {
      fprintf(stderr, "underline %d\n", stack_get_num(&stack));
      raster.underline = stack_get_num(&stack);
   }

   action cut {
      fprintf(stderr, "cut %d\n", stack_get_num(&stack));
      cut(parser, &parser->canvas, &canvas_cursor);
   }

   action emphasis {
      fprintf(stderr, "emphasis %d\n", stack_get_num(&stack));
      raster.emphasis = stack_get_num(&stack);
   }

   action double_strike {
      fprintf(stderr, "double-strike %d\n", stack_get_num(&stack));
      raster.double_strike = stack_get_num(&stack);
   }

   action font {
      fprintf(stderr, "font %d\n", stack_get_num(&stack));
      // XXX: have only one font
   }

   action justify {
      fprintf(stderr, "justify %d\n", stack_get_num(&stack));
      raster.justify = stack_get_num(&stack);
   }

   action barcode_height {
      fprintf(stderr, "barcode-height %d\n", stack_get_num(&stack));
      raster.barcode_height = stack_get_num(&stack);
   }

   action barcode_type {
      fprintf(stderr, "barcode-type %d\n", stack_get_num(&stack));
      raster.barcode_type = stack_get_num(&stack);
   }

   action barcode_str {
      fprintf(stderr, "barcode-str %s\n", (char*)stack_get_str(&stack)->data);
      // XXX: raster barcode
   }

   action syntax_err {
      ragel_throw_error(&ragel, "malformed input (machine failed here or in next expression)");
   }

   action text {
      putc(fc, stderr);
      uint32_t cp;
      if (utf8_decode(&utf8.state, &cp, fc) == UTF8_ACCEPT)
         render_chr(&parser->print_buffer, &print_buffer_cursor, &raster, cp);
   }

   action line {
      fputs("\\n", stderr);
      ragel_advance_line(&ragel);
      apply_canvas(&parser->canvas, &canvas_cursor, &parser->print_buffer, &print_buffer_cursor);
      lfd(&parser->canvas, &canvas_cursor, &raster, 1);
   }

   # Constants
   LF = 0x0A# Line Feed
   ESC = 0x1B# Escape
   GS = 0x1D# Group Separator

   # Commands
   # https://reference.epson-biz.com/modules/ref_escpos/index.php?content_id=72
   # TODO: Implement rest
   init = ESC '@' %init;
   linefeed = LF %line | ESC :>> (('d' stack_num) %lfd | ('v' stack_num) %lfv);
   print_mode = ESC '!' stack_num %print_mode;
   underline = ESC '-' stack_num %underline;
   cut = GS 'V' stack_num 0x03 %cut;
   emphasis = ESC 'E' stack_num %emphasis;
   double_strike = ESC 'G' stack_num %double_strike;
   font = ESC 'M' stack_num %font;
   justify = ESC 'a' stack_str %justify;
   barcode_height = GS 'h' stack_num %barcode_height;
   barcode = ESC 'k' stack_num %barcode_type stack_str %barcode_str;

   # Obsolete commands
   # https://reference.epson-biz.com/modules/ref_escpos/index.php?content_id=74
   # TODO: Implement

   # Logic
   cmd = (init | linefeed | print_mode | underline | cut | emphasis | double_strike | font | justify | barcode);
   main := (cmd | TEXT $text)* $!syntax_err;
}%%

bool
escpos_parser_parse(struct escpos_parser *parser, const char *name)
{
   int cs;
   %% write init;

   (void)escpos_parser_en_main;
   assert(parser);
   assert(parser->read);
   assert(parser->write);

   struct stack stack = { .var.buf.mem = parser->var };
   struct ragel ragel = { .name = name, .lineno = 1 };
   struct utf8 utf8 = {0};

   struct cursor canvas_cursor, print_buffer_cursor;
   init_canvas(&parser->canvas, &canvas_cursor);
   init_canvas(&parser->print_buffer, &print_buffer_cursor);

   struct raster raster;
   init_raster(&raster);

   // render_checker(&parser->canvas, &canvas_cursor);

   struct escpos_mem window = parser->window;
   for (bool eof = false; !ragel.error && !eof;) {
      const size_t bytes = parser->read(parser, window.data, window.len);
      const struct ragel_mem input = { .data = window.data, .end = (char*)window.data + bytes, .binary = true };
      ragel_feed_input(&ragel, (eof = (bytes < window.len)), &input);
      %% write exec;
   }

   if (!ragel.error) {
      apply_canvas(&parser->canvas, &canvas_cursor, &parser->print_buffer, &print_buffer_cursor);
      cut(parser, &parser->canvas, &canvas_cursor);
   }

   return !ragel.error;
}