-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
lprint-tspl.c
404 lines (310 loc) · 10.5 KB
/
lprint-tspl.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
//
// TSPL driver for LPrint, a Label Printer Application
//
// Copyright © 2023-2024 by Michael R Sweet.
//
// Licensed under Apache License v2.0. See the file "LICENSE" for more
// information.
//
#include "lprint.h"
//
// Local types...
//
typedef struct lprint_tspl_s // TSPL driver data
{
lprint_dither_t dither; // Dither buffer
} lprint_tspl_t;
//
// Local globals...
//
static const char * const lprint_tspl_media[] =
{ // Supported media sizes for labels
"oe_1.25x0.25-label_1.25x0.25in",
"oe_1.25x2.25-label_1.25x2.25in",
"oe_1.5x0.25-label_1.5x0.25in",
"oe_1.5x0.5-label_1.5x0.5in",
"oe_1.5x1-label_1.5x1in",
"oe_1.5x2-label_1.5x2in",
"oe_2x0.37-label_2x0.37in",
"oe_2x0.5-label_2x0.5in",
"oe_2x1-label_2x1in",
"oe_2x1.25-label_2x1.25in",
"oe_2x2-label_2x2in",
"oe_2x3-label_2x3in",
"oe_2x4-label_2x4in",
"oe_2x5.5-label_2x5.5in",
"oe_2.25x0.5-label_2.25x0.5in",
"oe_2.25x1.25-label_2.25x1.25in",
"oe_30859-paint-can-label_2.25x3.125in",
"oe_2.25x4-label_2.25x4in",
"oe_2.25x5.5-label_2.25x5.5in",
"oe_2.38x5.5-label_2.38x5.5in",
"oe_2.5x1-label_2.5x1in",
"oe_2.5x2-label_2.5x2in",
"oe_2.75x1.25-label_2.75x1.25in",
"oe_2.9x1-label_2.9x1in",
"oe_3x1-label_3x1in",
"oe_3x1.25-label_3x1.25in",
"oe_3x2-label_3x2in",
"oe_3x3-label_3x3in",
"na_index-3x5_3x5in",
"oe_3.25x2-label_3.25x2in",
"oe_3.25x5-label_3.25x5in",
"oe_3.25x5.5-label_3.25x5.5in",
"oe_3.25x5.83-label_3.25x5.83in",
"oe_3.25x7.83-label_3.25x7.83in",
"oe_3.5x1-label_3.5x1in",
"oe_4x1-label_4x1in",
"oe_4x2-label_4x2in",
"oe_4x3-label_4x3in",
"oe_4x4-label_4x4in",
"oe_4x5-label_4x5in",
"na_index-4x6_4x6in",
"oe_4x6.5-label_4x6.5in",
"oe_4x8-label_4x8in",
"oe_4x13-label_4x13in",
"roll_max_4x39.6in",
"roll_min_0.75x0.25in"
};
//
// Local functions...
//
static bool lprint_tspl_printfile(pappl_job_t *job, pappl_pr_options_t *options, pappl_device_t *device);
static bool lprint_tspl_rendjob(pappl_job_t *job, pappl_pr_options_t *options, pappl_device_t *device);
static bool lprint_tspl_rendpage(pappl_job_t *job, pappl_pr_options_t *options, pappl_device_t *device, unsigned page);
static bool lprint_tspl_rstartjob(pappl_job_t *job, pappl_pr_options_t *options, pappl_device_t *device);
static bool lprint_tspl_rstartpage(pappl_job_t *job, pappl_pr_options_t *options, pappl_device_t *device, unsigned page);
static bool lprint_tspl_rwriteline(pappl_job_t *job, pappl_pr_options_t *options, pappl_device_t *device, unsigned y, const unsigned char *line);
static bool lprint_tspl_status(pappl_printer_t *printer);
//
// 'lprintTSPL()' - Initialize the TSPL driver.
//
bool // O - `true` on success, `false` on error
lprintTSPL(
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_tspl_printfile;
data->rendjob_cb = lprint_tspl_rendjob;
data->rendpage_cb = lprint_tspl_rendpage;
data->rstartjob_cb = lprint_tspl_rstartjob;
data->rstartpage_cb = lprint_tspl_rstartpage;
data->rwriteline_cb = lprint_tspl_rwriteline;
data->status_cb = lprint_tspl_status;
// Vendor-specific format...
data->format = LPRINT_TSPL_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_tspl_media) / sizeof(lprint_tspl_media[0]));
memcpy(data->media, lprint_tspl_media, sizeof(lprint_tspl_media));
data->num_source = 1;
data->source[0] = "main-roll";
papplCopyString(data->media_ready[0].size_name, "na_index-4x6_4x6in", sizeof(data->media_ready[0].size_name));
papplCopyString(data->media_ready[0].type, "labels", sizeof(data->media_ready[0].type));
data->media_ready[0].tracking = PAPPL_MEDIA_TRACKING_GAP;
data->num_type = 2;
data->type[0] = "labels";
data->type[1] = "continuous";
data->tracking_supported = PAPPL_MEDIA_TRACKING_GAP | PAPPL_MEDIA_TRACKING_MARK | PAPPL_MEDIA_TRACKING_CONTINUOUS;
data->speed_default = 0;
data->speed_supported[0] = 2540;
data->speed_supported[1] = 12 * 2540;
// Darkness/density settings...
data->darkness_configured = 50;
data->darkness_supported = 16;
return (true);
}
//
// 'lprint_tspl_printfile()' - Print a file.
//
static bool // O - `true` on success, `false` on failure
lprint_tspl_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
// 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_tspl_rend()' - End a job.
//
static bool // O - `true` on success, `false` on failure
lprint_tspl_rendjob(
pappl_job_t *job, // I - Job
pappl_pr_options_t *options, // I - Job options
pappl_device_t *device) // I - Output device
{
lprint_tspl_t *tspl = (lprint_tspl_t *)papplJobGetData(job);
// TSPL driver data
(void)options;
(void)device;
free(tspl);
papplJobSetData(job, NULL);
return (true);
}
//
// 'lprint_tspl_rendpage()' - End a page.
//
static bool // O - `true` on success, `false` on failure
lprint_tspl_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_tspl_t *tspl = (lprint_tspl_t *)papplJobGetData(job);
// TSPL driver data
(void)page;
// Write last line
lprint_tspl_rwriteline(job, options, device, options->header.cupsHeight, NULL);
// Eject
papplDevicePrintf(device, "PRINT %u,1\n", options->header.NumCopies);
papplDeviceFlush(device);
// Free memory and return...
lprintDitherFree(&tspl->dither);
return (true);
}
//
// 'lprint_tspl_rstartjob()' - Start a job.
//
static bool // O - `true` on success, `false` on failure
lprint_tspl_rstartjob(
pappl_job_t *job, // I - Job
pappl_pr_options_t *options, // I - Job options
pappl_device_t *device) // I - Output device
{
lprint_tspl_t *tspl = (lprint_tspl_t *)calloc(1, sizeof(lprint_tspl_t));
// TSPL driver data
(void)options;
(void)device;
// Save driver data...
papplJobSetData(job, tspl);
return (true);
}
//
// 'lprint_tspl_rstartpage()' - Start a page.
//
static bool // O - `true` on success, `false` on failure
lprint_tspl_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_tspl_t *tspl = (lprint_tspl_t *)papplJobGetData(job);
// TSPL driver data
int darkness, // Combined density
speed; // Print speed
(void)page;
// Initialize the dither buffer...
if (!lprintDitherAlloc(&tspl->dither, job, options, CUPS_CSPACE_W, options->header.HWResolution[0] == 300 ? 1.2 : 1.0))
return (false);
// Initialize the printer...
if ((darkness = options->darkness_configured + options->print_darkness) < 0)
darkness = 0;
else if (darkness > 100)
darkness = 100;
papplDevicePrintf(device, "SIZE %d mm,%d mm\n", options->media.size_width / 100, options->media.size_length / 100);
switch (options->orientation_requested)
{
default :
case IPP_ORIENT_PORTRAIT :
papplDevicePuts(device, "DIRECTION 0,0\n");
break;
case IPP_ORIENT_LANDSCAPE :
papplDevicePuts(device, "DIRECTION 90,0\n");
break;
case IPP_ORIENT_REVERSE_PORTRAIT :
papplDevicePuts(device, "DIRECTION 180,0\n");
break;
case IPP_ORIENT_REVERSE_LANDSCAPE :
papplDevicePuts(device, "DIRECTION 270,0\n");
break;
}
switch (options->media.tracking)
{
default :
break;
case PAPPL_MEDIA_TRACKING_CONTINUOUS :
papplDevicePuts(device, "GAP 0 mm,0 mm\n");
break;
case PAPPL_MEDIA_TRACKING_MARK :
papplDevicePuts(device, "BLINE 3 mm,0 mm\n");
break;
case PAPPL_MEDIA_TRACKING_GAP :
papplDevicePuts(device, "GAP 3 mm,0 mm\n");
break;
}
papplDevicePrintf(device, "DENSITY %d\n", (darkness * 15 + 50) / 100);
if ((speed = options->print_speed / 2540) > 0)
papplDevicePrintf(device, "SPEED %d\n", speed);
// Start the page image...
papplDevicePuts(device, "CLS\n");
papplDevicePrintf(device, "BITMAP 0,0,%u,%u,1,", tspl->dither.out_width, options->header.cupsHeight);
return (true);
}
//
// 'lprint_tspl_rwriteline()' - Write a raster line.
//
static bool // O - `true` on success, `false` on failure
lprint_tspl_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_tspl_t *tspl = (lprint_tspl_t *)papplJobGetData(job);
// TSPL driver data
(void)options;
// Dither and write the line...
if (lprintDitherLine(&tspl->dither, y, line))
papplDeviceWrite(device, tspl->dither.output, tspl->dither.out_width);
return (true);
}
//
// 'lprint_tspl_status()' - Get current printer status.
//
static bool // O - `true` on success, `false` on failure
lprint_tspl_status(
pappl_printer_t *printer) // I - Printer
{
(void)printer;
return (true);
}