-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
lprint-sii.c
457 lines (364 loc) · 11.7 KB
/
lprint-sii.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
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
//
// Seiko Instruments, Inc. driver for LPrint, a Label Printer Application
//
// Copyright © 2023 by Michael R Sweet.
//
// Licensed under Apache License v2.0. See the file "LICENSE" for more
// information.
//
#include "lprint.h"
//
// Local types...
//
enum lprint_slp_cmd_e
{
LPRINT_SLP_CMD_NOP = 0x00,
LPRINT_SLP_CMD_STATUS,
LPRINT_SLP_CMD_VERSION,
LPRINT_SLP_CMD_BAUDRATE,
LPRINT_SLP_CMD_PRINT,
LPRINT_SLP_CMD_PRINTRLE,
LPRINT_SLP_CMD_MARGIN,
LPRINT_SLP_CMD_REPEAT,
LPRINT_SLP_CMD_TAB = 0x09,
LPRINT_SLP_CMD_LINEFEED,
LPRINT_SLP_CMD_VERTTAB,
LPRINT_SLP_CMD_FORMFEED,
LPRINT_SLP_CMD_SETSPEED,
LPRINT_SLP_CMD_DENSITY,
LPRINT_SLP_CMD_RESET,
LPRINT_SLP_CMD_MODEL = 0x12,
LPRINT_SLP_CMD_INDENT = 0x16,
LPRINT_SLP_CMD_FINEMODE,
LPRINT_SLP_CMD_SETSERIALNUM = 0x1B,
LPRINT_SLP_CMD_CHECK = 0xA5
};
typedef struct lprint_sii_s // SII driver data
{
unsigned max_width; // Maximum width in dots
int blanks; // Blank lines
lprint_dither_t dither; // Dither buffer
} lprint_sii_t;
//
// Local globals...
//
static const char * const lprint_sii_media[] =
{ // Supported media sizes for labels
"om_35mm-slide_9x37mm",
"om_8mm-spine_9x66mm",
"om_file-folder_13x81mm",
"om_return_16x43mm",
"om_vhs-spine_18x141mm",
"om_round_22x24mm",
"om_multi-purpose_24x44mm",
"om_address-small_24x83mm",
"om_jewelry_27x48mm",
"om_retail-label_32x37mm",
"om_cut-hanging-15_32x40mm",
"om_cut-hanging-13_32x78mm",
"om_address-large_35x83mm",
"om_euro-name-badge_38x67mm",
"om_euro-folder-narrow_38x186mm",
"om_euro-file-folder_39x49mm",
"om_vhs-face_45x72mm",
"om_zip-disk_48x55mm",
"om_diskette_48x64mm",
"om_media-badge_48x64mm",
"om_euro-name-badge-large_48x79mm",
"om_4-part-label_48x96mm",
"om_shipping_48x96mm",
"om_top-coated-paper_48x140mm",
"om_euro-folder-wide_48x186mm",
"roll_max_48x186mm",
"roll_min_9x13mm"
};
//
// Local functions...
//
static unsigned lprint_sii_get_max_width(const char *driver_name);
static void lprint_sii_init(pappl_job_t *job, pappl_pr_options_t *options, pappl_device_t *device, lprint_sii_t *siidata);
static bool lprint_sii_printfile(pappl_job_t *job, pappl_pr_options_t *options, pappl_device_t *device);
static bool lprint_sii_rendjob(pappl_job_t *job, pappl_pr_options_t *options, pappl_device_t *device);
static bool lprint_sii_rendpage(pappl_job_t *job, pappl_pr_options_t *options, pappl_device_t *device, unsigned page);
static bool lprint_sii_rstartjob(pappl_job_t *job, pappl_pr_options_t *options, pappl_device_t *device);
static bool lprint_sii_rstartpage(pappl_job_t *job, pappl_pr_options_t *options, pappl_device_t *device, unsigned page);
static bool lprint_sii_rwriteline(pappl_job_t *job, pappl_pr_options_t *options, pappl_device_t *device, unsigned y, const unsigned char *line);
//
// 'lprintSII()' - Initialize the SII driver.
//
bool // O - `true` on success, `false` on error
lprintSII(
pappl_system_t *system, // I - System
const char *driver_name,// I - Driver name
const char *device_uri, // I - Device URI
const char *device_id, // I - 1284 device ID
pappl_pr_driver_data_t *data, // I - Pointer to driver data
ipp_t **attrs, // O - Pointer to driver attributes
void *cbdata) // I - Callback data (not used)
{
// Print callbacks...
data->printfile_cb = lprint_sii_printfile;
data->rendjob_cb = lprint_sii_rendjob;
data->rendpage_cb = lprint_sii_rendpage;
data->rstartjob_cb = lprint_sii_rstartjob;
data->rstartpage_cb = lprint_sii_rstartpage;
data->rwriteline_cb = lprint_sii_rwriteline;
// Vendor-specific format...
data->format = LPRINT_SLP_MIMETYPE;
// Set resolution...
data->num_resolution = 1;
if (strstr(driver_name, "_203dpi") != NULL)
data->x_resolution[0] = data->y_resolution[0] = 203;
else
data->x_resolution[0] = data->y_resolution[0] = 300;
data->x_default = data->y_default = data->x_resolution[0];
// Basically borderless...
data->left_right = 1;
data->bottom_top = 1;
// Supported media...
data->num_media = (int)(sizeof(lprint_sii_media) / sizeof(lprint_sii_media[0]));
memcpy(data->media, lprint_sii_media, sizeof(lprint_sii_media));
data->num_source = 1;
data->source[0] = "main-roll";
papplCopyString(data->media_ready[0].size_name, "om_address-small_24x83mm", sizeof(data->media_ready[0].size_name));
papplCopyString(data->media_ready[0].type, "labels", sizeof(data->media_ready[0].type));
data->num_type = 1;
data->type[0] = "labels";
// Darkness/density settings...
data->darkness_configured = 50;
data->darkness_supported = 3;
return (true);
}
//
// 'lprint_sii_get_max_width()' - Get the maximum width in dots.
//
static unsigned // O - Maximum width in dots
lprint_sii_get_max_width(
const char *driver_name) // I - Driver name
{
switch (atoi(driver_name + 7))
{
case 100 :
case 410 :
return (192);
break;
case 200 :
case 240 :
case 420 :
case 430 :
return (384);
break;
default :
return (576);
break;
}
}
//
// 'lprint_sii_init()' - Initialize siidata driver data based on the driver name...
//
static void
lprint_sii_init(
pappl_job_t *job, // I - Job
pappl_pr_options_t *options, // I - Job options
pappl_device_t *device, // I - Output device
lprint_sii_t *siidata) // O - Driver data
{
const char *driver_name = papplPrinterGetDriverName(papplJobGetPrinter(job));
// Driver name
(void)options;
// Initialize driver data and save it...
siidata->max_width = lprint_sii_get_max_width(driver_name);
switch (atoi(driver_name + 7))
{
case 100 :
case 410 :
// Reset printer...
papplDevicePrintf(device, "%c", LPRINT_SLP_CMD_RESET);
papplDeviceFlush(device);
sleep(3);
break;
default :
// Nothing else to do...
break;
}
papplJobSetData(job, siidata);
}
//
// 'lprint_sii_printfile()' - Print a file.
//
static bool // O - `true` on success, `false` on failure
lprint_sii_printfile(
pappl_job_t *job, // I - Job
pappl_pr_options_t *options, // I - Job options
pappl_device_t *device) // I - Output device
{
int fd; // Input file
ssize_t bytes; // Bytes read/written
char buffer[65536]; // Read/write buffer
lprint_sii_t siidata; // Driver data
// Initialize driver data...
lprint_sii_init(job, options, device, &siidata);
// Copy the raw file...
papplJobSetImpressions(job, 1);
if ((fd = open(papplJobGetFilename(job), O_RDONLY)) < 0)
{
papplLogJob(job, PAPPL_LOGLEVEL_ERROR, "Unable to open print file \"%s\": %s", papplJobGetFilename(job), strerror(errno));
return (false);
}
while ((bytes = read(fd, buffer, sizeof(buffer))) > 0)
{
if (papplDeviceWrite(device, buffer, (size_t)bytes) < 0)
{
papplLogJob(job, PAPPL_LOGLEVEL_ERROR, "Unable to send %d bytes to printer.", (int)bytes);
close(fd);
return (false);
}
}
close(fd);
papplJobSetImpressionsCompleted(job, 1);
return (true);
}
//
// 'lprint_sii_rend()' - End a job.
//
static bool // O - `true` on success, `false` on failure
lprint_sii_rendjob(
pappl_job_t *job, // I - Job
pappl_pr_options_t *options, // I - Job options
pappl_device_t *device) // I - Output device
{
lprint_sii_t *siidata = (lprint_sii_t *)papplJobGetData(job);
// SII driver data
(void)options;
free(siidata);
papplJobSetData(job, NULL);
return (true);
}
//
// 'lprint_sii_rendpage()' - End a page.
//
static bool // O - `true` on success, `false` on failure
lprint_sii_rendpage(
pappl_job_t *job, // I - Job
pappl_pr_options_t *options, // I - Job options
pappl_device_t *device, // I - Output device
unsigned page) // I - Page number
{
lprint_sii_t *siidata = (lprint_sii_t *)papplJobGetData(job);
// SII driver data
(void)page;
// Write last line
lprint_sii_rwriteline(job, options, device, options->header.cupsHeight, NULL);
// Eject
papplDevicePrintf(device, "%c", LPRINT_SLP_CMD_FORMFEED);
papplDeviceFlush(device);
// Free memory and return...
lprintDitherFree(&siidata->dither);
return (true);
}
//
// 'lprint_sii_rstartjob()' - Start a job.
//
static bool // O - `true` on success, `false` on failure
lprint_sii_rstartjob(
pappl_job_t *job, // I - Job
pappl_pr_options_t *options, // I - Job options
pappl_device_t *device) // I - Output device
{
lprint_sii_t *siidata = (lprint_sii_t *)calloc(1, sizeof(lprint_sii_t));
// SII driver data
(void)options;
// Initialize driver data...
lprint_sii_init(job, options, device, siidata);
return (true);
}
//
// 'lprint_sii_rstartpage()' - Start a page.
//
static bool // O - `true` on success, `false` on failure
lprint_sii_rstartpage(
pappl_job_t *job, // I - Job
pappl_pr_options_t *options, // I - Job options
pappl_device_t *device, // I - Output device
unsigned page) // I - Page number
{
lprint_sii_t *siidata = (lprint_sii_t *)papplJobGetData(job);
// SII driver data
const char *driver_name = papplPrinterGetDriverName(papplJobGetPrinter(job));
// Driver name
int darkness; // Combined density
(void)page;
// Initialize the dither buffer and blanks count...
if (!lprintDitherAlloc(&siidata->dither, job, options, CUPS_CSPACE_K, options->header.HWResolution[0] == 300 ? 1.2 : 1.0))
return (false);
papplDevicePrintf(device, "%c%c", LPRINT_SLP_CMD_MARGIN, (int)(12.7 * (lprint_sii_get_max_width(driver_name) - options->header.cupsWidth) / options->header.HWResolution[0]));
siidata->blanks = 0;
// Set darkness...
if ((darkness = options->darkness_configured + options->print_darkness) < 0)
darkness = 0;
else if (darkness > 100)
darkness = 100;
papplDevicePrintf(device, "%c%c", LPRINT_SLP_CMD_DENSITY, 3 * darkness / 100);
// Set quality...
switch (atoi(driver_name + 7))
{
case 100 :
case 200 :
case 240 :
case 410 :
case 420 :
case 430 :
papplDevicePrintf(device, "%c%c", LPRINT_SLP_CMD_FINEMODE, options->print_quality == IPP_QUALITY_HIGH ? 0x01 : 0x00);
break;
default :
papplDevicePrintf(device, "%c%c", LPRINT_SLP_CMD_SETSPEED, options->print_quality == IPP_QUALITY_HIGH ? 0x02 : 0x00);
break;
}
return (true);
}
//
// 'lprint_sii_rwriteline()' - Write a raster line.
//
static bool // O - `true` on success, `false` on failure
lprint_sii_rwriteline(
pappl_job_t *job, // I - Job
pappl_pr_options_t *options, // I - Job options
pappl_device_t *device, // I - Output device
unsigned y, // I - Line number
const unsigned char *line) // I - Line
{
lprint_sii_t *siidata = (lprint_sii_t *)papplJobGetData(job);
// SII driver data
// Dither...
if (!lprintDitherLine(&siidata->dither, y, line))
return (true);
if (!siidata->dither.output[0] && !memcmp(siidata->dither.output, siidata->dither.output + 1, siidata->dither.out_width - 1))
{
// Skip blank lines...
siidata->blanks ++;
return (true);
}
// Feed past any blank lines...
while (siidata->blanks > 0)
{
if (siidata->blanks == 1)
{
papplDevicePuts(device, "\n");
siidata->blanks = 0;
}
else if (siidata->blanks < 255)
{
papplDevicePrintf(device, "%c%c", LPRINT_SLP_CMD_VERTTAB, (char)siidata->blanks);
siidata->blanks = 0;
}
else
{
papplDevicePrintf(device, "%c%c", LPRINT_SLP_CMD_VERTTAB, (char)255);
siidata->blanks -= 255;
}
}
// Output bitmap data...
papplDevicePrintf(device, "%c%c", LPRINT_SLP_CMD_PRINT, (char)siidata->dither.out_width);
papplDeviceWrite(device, siidata->dither.output, siidata->dither.out_width);
return (true);
}