printing.cpp
4.46 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
/*
* Copyright (C) 2017, David PHAM-VAN <dev.nfet.net@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "printing.h"
#include "print_job.h"
namespace nfet {
extern std::unique_ptr<flutter::MethodChannel<flutter::EncodableValue>> channel;
Printing::Printing() {}
Printing::~Printing() {}
void Printing::onPageRasterized(std::vector<uint8_t> data,
int width,
int height,
PrintJob* job) {
channel->InvokeMethod(
"onPageRasterized",
std::make_unique<flutter::EncodableValue>(
flutter::EncodableValue(flutter::EncodableMap{
{flutter::EncodableValue("image"), flutter::EncodableValue(data)},
{flutter::EncodableValue("width"),
flutter::EncodableValue(width)},
{flutter::EncodableValue("height"),
flutter::EncodableValue(height)},
{flutter::EncodableValue("job"),
flutter::EncodableValue(job->id())},
})));
}
void Printing::onPageRasterEnd(PrintJob* job) {
channel->InvokeMethod("onPageRasterEnd",
std::make_unique<flutter::EncodableValue>(
flutter::EncodableValue(flutter::EncodableMap{
{flutter::EncodableValue("job"),
flutter::EncodableValue(job->id())},
})));
}
class OnLayoutResult : public flutter::MethodResult<flutter::EncodableValue> {
public:
OnLayoutResult(PrintJob* job) : job(job) {
// printf("OnLayoutResult (%d) %p\n", job->id(), this);
}
private:
PrintJob* job;
protected:
void SuccessInternal(const flutter::EncodableValue* result) {
auto doc = std::get<std::vector<uint8_t>>(*result);
// printf("Success! (%d) %llu bytes %p\n", job->id(), doc.size(), this);
job->writeJob(doc);
delete job;
}
void ErrorInternal(const std::string& error_code,
const std::string& error_message,
const flutter::EncodableValue* error_details) {
printf("Error!\n");
delete job;
}
void NotImplementedInternal() {
printf("NotImplemented!\n");
delete job;
}
};
void Printing::onLayout(PrintJob* job,
double pageWidth,
double pageHeight,
double marginLeft,
double marginTop,
double marginRight,
double marginBottom) {
// printf("onLayout (%d) %fx%f %f %f %f %f\n", job->id(), pageWidth,
// pageHeight,
// marginLeft, marginTop, marginRight, marginBottom);
// auto result = std::make_unique<OnLayoutResult>(job);
channel->InvokeMethod("onLayout",
std::make_unique<flutter::EncodableValue>(
flutter::EncodableValue(flutter::EncodableMap{
{flutter::EncodableValue("job"),
flutter::EncodableValue(job->id())},
{flutter::EncodableValue("width"),
flutter::EncodableValue(pageWidth)},
{flutter::EncodableValue("height"),
flutter::EncodableValue(pageHeight)},
{flutter::EncodableValue("marginLeft"),
flutter::EncodableValue(marginLeft)},
{flutter::EncodableValue("marginTop"),
flutter::EncodableValue(marginTop)},
{flutter::EncodableValue("marginRight"),
flutter::EncodableValue(marginRight)},
{flutter::EncodableValue("marginBottom"),
flutter::EncodableValue(marginBottom)},
})),
std::make_unique<OnLayoutResult>(job));
}
} // namespace nfet