PrintingPlugin.swift
7.35 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
/*
* 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.
*/
import FlutterMacOS
import Foundation
public class PrintingPlugin: NSObject, FlutterPlugin {
private var channel: FlutterMethodChannel
init(_ channel: FlutterMethodChannel) {
self.channel = channel
super.init()
}
/// Entry point
public static func register(with registrar: FlutterPluginRegistrar) {
let channel = FlutterMethodChannel(name: "net.nfet.printing", binaryMessenger: registrar.messenger)
let instance = PrintingPlugin(channel)
registrar.addMethodCallDelegate(instance, channel: channel)
}
/// Flutter method handlers
public func handle(_ call: FlutterMethodCall, result: @escaping FlutterResult) {
let args = call.arguments! as! [String: Any]
if call.method == "printPdf" {
let name = args["name"] as! String
let width = CGFloat((args["width"] as? NSNumber)?.floatValue ?? 0.0)
let height = CGFloat((args["height"] as? NSNumber)?.floatValue ?? 0.0)
let marginLeft = CGFloat((args["marginLeft"] as? NSNumber)?.floatValue ?? 0.0)
let marginTop = CGFloat((args["marginTop"] as? NSNumber)?.floatValue ?? 0.0)
let marginRight = CGFloat((args["marginRight"] as? NSNumber)?.floatValue ?? 0.0)
let marginBottom = CGFloat((args["marginBottom"] as? NSNumber)?.floatValue ?? 0.0)
let printJob = PrintJob(printing: self, index: args["job"] as! Int)
printJob.printPdf(name: name,
withPageSize: CGSize(
width: width,
height: height
),
andMargin: CGRect(
x: marginLeft,
y: marginTop,
width: width - marginRight - marginLeft,
height: height - marginBottom - marginTop
))
result(NSNumber(value: 1))
// } else if call.method == "directPrintPdf" {
// let name = args["name"] as! String
// let printer = args["printer"] as! String
// let object = args["doc"] as! FlutterStandardTypedData
// let printJob = PrintJob(printing: self, index: args["job"] as! Int)
// printJob.directPrintPdf(name: name, data: object.data, withPrinter: printer)
// result(NSNumber(value: 1))
} else if call.method == "sharePdf" {
let object = args["doc"] as! FlutterStandardTypedData
PrintJob.sharePdf(
data: object.data,
withSourceRect: CGRect(
x: CGFloat((args["x"] as? NSNumber)?.floatValue ?? 0.0),
y: CGFloat((args["y"] as? NSNumber)?.floatValue ?? 0.0),
width: CGFloat((args["w"] as? NSNumber)?.floatValue ?? 0.0),
height: CGFloat((args["h"] as? NSNumber)?.floatValue ?? 0.0)
),
andName: args["name"] as! String
)
result(NSNumber(value: 1))
} else if call.method == "convertHtml" {
let width = CGFloat((args["width"] as? NSNumber)?.floatValue ?? 0.0)
let height = CGFloat((args["height"] as? NSNumber)?.floatValue ?? 0.0)
let marginLeft = CGFloat((args["marginLeft"] as? NSNumber)?.floatValue ?? 0.0)
let marginTop = CGFloat((args["marginTop"] as? NSNumber)?.floatValue ?? 0.0)
let marginRight = CGFloat((args["marginRight"] as? NSNumber)?.floatValue ?? 0.0)
let marginBottom = CGFloat((args["marginBottom"] as? NSNumber)?.floatValue ?? 0.0)
let printJob = PrintJob(printing: self, index: args["job"] as! Int)
printJob.convertHtml(
args["html"] as! String,
withPageSize: CGRect(
x: 0.0,
y: 0.0,
width: width,
height: height
),
andMargin: CGRect(
x: marginLeft,
y: marginTop,
width: width - marginRight - marginLeft,
height: height - marginBottom - marginTop
),
andBaseUrl: args["baseUrl"] as? String == nil ? nil : URL(string: args["baseUrl"] as! String)
)
result(NSNumber(value: 1))
// } else if call.method == "pickPrinter" {
// PrintJob.pickPrinter(result: result, withSourceRect: CGRect(
// x: CGFloat((args["x"] as? NSNumber)?.floatValue ?? 0.0),
// y: CGFloat((args["y"] as? NSNumber)?.floatValue ?? 0.0),
// width: CGFloat((args["w"] as? NSNumber)?.floatValue ?? 0.0),
// height: CGFloat((args["h"] as? NSNumber)?.floatValue ?? 0.0)
// ))
} else if call.method == "printingInfo" {
result(PrintJob.printingInfo())
} else {
result(FlutterMethodNotImplemented)
}
}
/// Request the Pdf document from flutter
public func onLayout(printJob: PrintJob, width: CGFloat, height: CGFloat, marginLeft: CGFloat, marginTop: CGFloat, marginRight: CGFloat, marginBottom: CGFloat) {
let arg = [
"width": width,
"height": height,
"marginLeft": marginLeft,
"marginTop": marginTop,
"marginRight": marginRight,
"marginBottom": marginBottom,
"job": printJob.index,
] as [String: Any]
channel.invokeMethod("onLayout", arguments: arg, result: { (result: Any?) -> Void in
if result as? Bool == false {
printJob.cancelJob()
} else {
let object = result as! FlutterStandardTypedData
printJob.setDocument(object.data)
}
})
}
/// send completion status to flutter
public func onCompleted(printJob: PrintJob, completed: Bool, error: NSString?) {
let data: NSDictionary = [
"completed": completed,
"error": error as Any,
"job": printJob.index,
]
channel.invokeMethod("onCompleted", arguments: data)
}
/// send html to pdf data result to flutter
public func onHtmlRendered(printJob: PrintJob, pdfData: Data) {
let data: NSDictionary = [
"doc": FlutterStandardTypedData(bytes: pdfData),
"job": printJob.index,
]
channel.invokeMethod("onHtmlRendered", arguments: data)
}
/// send html to pdf conversion error to flutter
public func onHtmlError(printJob: PrintJob, error: String) {
let data: NSDictionary = [
"error": error,
"job": printJob.index,
]
channel.invokeMethod("onHtmlError", arguments: data)
}
}