This repository was archived by the owner on Feb 15, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
182 lines (155 loc) · 6.28 KB
/
main.cpp
File metadata and controls
182 lines (155 loc) · 6.28 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
/* Copyright (c) 2015, codestoke
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* * Neither the name of psprint nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <iostream>
#include <windows.h>
using namespace std;
bool isNumeric(char *input) {
int i = 0;
while(input[i]) {
if(!std::isdigit(input[i])) {
return false;
}
i++;
}
return true;
}
int rawPrint(LPTSTR printerName, LPBYTE data, DWORD count, LPSTR printJobTitle) {
HANDLE hPrinter;
DOC_INFO_1 docInfo;
DWORD job;
DWORD bytesWritten;
if (!OpenPrinter(printerName, &hPrinter, nullptr)) {
cerr << GetLastError() << ": could not open printer.\n";
return -1;
}
docInfo.pDocName = printJobTitle;
docInfo.pOutputFile = nullptr;
docInfo.pDatatype = (LPSTR) "RAW";
job = StartDocPrinter(hPrinter, 1, (LPBYTE) &docInfo);
if (job == 0) {
cerr << GetLastError() << ": could not start doc printer\n";
ClosePrinter(hPrinter);
return -1;
}
if (!StartPagePrinter(hPrinter)) {
cerr << GetLastError() << ": could not start page printer\n";
EndDocPrinter(hPrinter);
ClosePrinter(hPrinter);
return -1;
}
if (!WritePrinter(hPrinter, data, count, &bytesWritten)) {
cerr << GetLastError() << ": could not send data to printer\n";
EndPagePrinter(hPrinter);
EndDocPrinter(hPrinter);
ClosePrinter(hPrinter);
return -1;
}
if (!EndPagePrinter(hPrinter)) {
cerr << GetLastError() << ": could not end page printer\n";
EndDocPrinter(hPrinter);
ClosePrinter(hPrinter);
return -1;
}
if (!EndDocPrinter(hPrinter)) {
cerr << GetLastError() << ": could not end doc printer\n";
ClosePrinter(hPrinter);
return -1;
}
ClosePrinter(hPrinter);
return (int) bytesWritten;
}
string generateData(int tray, string username) {
string postscript = "\x1b"
"%-12345X@PJL JOB\n"
"@PJL SET USERNAME=\"" + username + "\"\n"
"@PJL SET USERNAMEW=\"" + username + "\"\n"
"\x1b"
"%-12345X@PJL ENTER LANGUAGE=POSTSCRIPT\n"
"%!PS-Adobe-3.0\n"
"%%LanguageLevel: 3\n"
"%%Pages: 1\n"
"%%BoundingBox: 0 0 596 842\n"
"%%HiResBoundingBox: 0 0 595.276 841.89\n"
"%%EndComments\n"
"%%BeginDefaults\n"
"%%EndDefaults\n"
"%%BeginProlog\n"
"%%EndProlog\n"
"%%BeginSetup\n"
"%%EndSetup\n"
"%%Page: 1 1\n"
"%%PageBoundingBox: 0 0 595 842\n"
"%%PageHiResBoundingBox: 0 0 595.276 841.89\n"
"%%BeginPageSetup\n"
"<<\n"
"/MediaPosition " + std::to_string(tray) + "\n"
"/PageSize [595 842]\n"
">> setpagedevice\n"
"%%EndPageSetup\n"
"/Times-Roman findfont\n"
"32 scalefont\n"
"setfont\n"
"72 770 moveto\n"
"(MediaPosition " + std::to_string(tray) + ") show\n"
"showpage\n"
"%%EOF\n"
"\x04\x1b"
"%-12345X@PJL EOJ\n"
"\x1b"
"%-12345X";
return postscript;
}
void print(string username, int tray, string printer) {
string data = generateData(tray, username);
rawPrint((LPTSTR) printer.c_str(),
(LPBYTE) data.c_str(),
(DWORD) data.length(),
(LPSTR) ("TEST TRAY " + std::to_string(tray)).c_str()
);
}
void printUsage() {
cout << "usage: psprint printer tray_nr user\n";
cout << " printer: a unc path to an installed printer on the system.\n";
cout << " tray_nr: the tray to create a test page for. at the moment A4 is printed.\n";
cout << " user: this user will be declared the owner of this print job in the PJL header.\n";
cout << endl;
}
int main(int argc, char **argv) {
cout << "test a printer and its trays." << endl;
if(argc != 4) {
printUsage();
return -1;
}
if(!isNumeric(argv[2])) {
printUsage();
return -2;
}
print(argv[3], std::stoi(argv[2]), argv[1]);
return 0;
}