PrintJob.swift
7.21 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) 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
import WebKit
func dataProviderReleaseDataCallback(info _: UnsafeMutableRawPointer?, data: UnsafeRawPointer, size _: Int) {
data.deallocate()
}
public class PrintJob: NSView, NSSharingServicePickerDelegate {
private var printing: PrintingPlugin
public var index: Int
private var printOperation: NSPrintOperation?
private var pdfDocument: CGPDFDocument?
private var page: CGPDFPage?
public init(printing: PrintingPlugin, index: Int) {
self.printing = printing
self.index = index
super.init(frame: NSZeroRect)
}
required init?(coder _: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
// Return the number of pages available for printing
public override func knowsPageRange(_ range: NSRangePointer) -> Bool {
setFrameSize(printOperation!.printPanel.printInfo.paperSize)
setBoundsSize(printOperation!.printPanel.printInfo.paperSize)
range.pointee.length = pdfDocument?.numberOfPages ?? 0
return true
}
// Return the drawing rectangle for a particular page number
public override func rectForPage(_ page: Int) -> NSRect {
self.page = pdfDocument?.page(at: page)
return self.page?.getBoxRect(CGPDFBox.mediaBox) ?? NSZeroRect
}
@objc func printOperationDidRun(printOperation _: NSPrintOperation, success: Bool, contextInfo _: UnsafeRawPointer?) {
printing.onCompleted(printJob: self, completed: success, error: nil)
}
func setDocument(_ data: Data?) {
let bytesPointer = UnsafeMutablePointer<UInt8>.allocate(capacity: data?.count ?? 0)
data?.copyBytes(to: bytesPointer, count: data?.count ?? 0)
let dataProvider = CGDataProvider(dataInfo: nil, data: bytesPointer, size: data?.count ?? 0, releaseData: dataProviderReleaseDataCallback)
pdfDocument = CGPDFDocument(dataProvider!)
let window = NSApplication.shared.mainWindow!
printOperation!.runModal(for: window, delegate: self, didRun: #selector(printOperationDidRun(printOperation:success:contextInfo:)), contextInfo: nil)
}
public override func draw(_: NSRect) {
if pdfDocument != nil {
let ctx = NSGraphicsContext.current?.cgContext
if page != nil {
ctx?.drawPDFPage(page!)
}
}
}
public func directPrintPdf(name _: String, data _: Data, withPrinter _: String) {}
public func printPdf(name: String, withPageSize _: CGSize, andMargin _: CGRect) {
let sharedInfo = NSPrintInfo.shared
let sharedDict = sharedInfo.dictionary()
let printInfoDict = NSMutableDictionary(dictionary: sharedDict)
let printInfo = NSPrintInfo(dictionary: printInfoDict as! [NSPrintInfo.AttributeKey: Any])
// Print the custom view
printOperation = NSPrintOperation(view: self, printInfo: printInfo)
printOperation!.jobTitle = name
printOperation!.printPanel.options = [.showsPreview]
printing.onLayout(
printJob: self,
width: printOperation!.printInfo.paperSize.width,
height: printOperation!.printInfo.paperSize.height,
marginLeft: printOperation!.printInfo.leftMargin,
marginTop: printOperation!.printInfo.topMargin,
marginRight: printOperation!.printInfo.rightMargin,
marginBottom: printOperation!.printInfo.bottomMargin
)
}
public func cancelJob() {}
public static func sharePdf(data: Data, withSourceRect rect: CGRect, andName name: String) {
let tempFile = NSTemporaryDirectory() + name
let file = NSURL(fileURLWithPath: tempFile)
do {
try data.write(to: file.absoluteURL!)
} catch {
print("Unable to save the pdf file to \(tempFile)")
return
}
let view = NSApplication.shared.mainWindow!.contentView!
let sharingServicePicker = NSSharingServicePicker(items: [file])
sharingServicePicker.show(relativeTo: rect, of: view, preferredEdge: NSRectEdge.maxY)
// DispatchQueue.main.asyncAfter(deadline: .now() + .seconds(2)) {
// let fileManager = FileManager.default
// do {
// try fileManager.removeItem(atPath: tempFile)
// } catch let error as NSError {
// print("Unable to delete \(tempFile): \(error)")
// }
// }
}
public func convertHtml(_ data: String, withPageSize size: CGRect, andMargin margin: CGRect, andBaseUrl baseUrl: URL?) {
let tempFile = NSTemporaryDirectory() + NSUUID().uuidString
let directoryURL = URL(fileURLWithPath: tempFile)
let printOpts: [NSPrintInfo.AttributeKey: Any] = [NSPrintInfo.AttributeKey.jobDisposition: NSPrintInfo.JobDisposition.save, NSPrintInfo.AttributeKey.jobSavingURL: directoryURL]
let printInfo = NSPrintInfo(dictionary: printOpts)
printInfo.horizontalPagination = NSPrintInfo.PaginationMode.automatic
printInfo.verticalPagination = NSPrintInfo.PaginationMode.automatic
printInfo.paperSize.width = size.width
printInfo.paperSize.height = size.height
printInfo.topMargin = margin.minY
printInfo.leftMargin = margin.minX
printInfo.rightMargin = size.width - margin.maxX
printInfo.bottomMargin = size.height - margin.maxY
let webView = WebView()
webView.mainFrame.loadHTMLString(data, baseURL: baseUrl)
let when = DispatchTime.now() + 1
DispatchQueue.main.asyncAfter(deadline: when) {
let printOperation = NSPrintOperation(view: webView.mainFrame.frameView.documentView, printInfo: printInfo)
printOperation.showsPrintPanel = false
printOperation.showsProgressPanel = false
printOperation.run()
do {
let data = try Data(contentsOf: directoryURL)
self.printing.onHtmlRendered(printJob: self, pdfData: data)
let fileManager = FileManager.default
try fileManager.removeItem(atPath: tempFile)
} catch {
self.printing.onHtmlError(printJob: self, error: "Unable to load the pdf file from \(tempFile)")
}
}
}
public static func pickPrinter(result: @escaping FlutterResult, withSourceRect _: CGRect) {
result(NSNumber(value: 1))
}
public static func printingInfo() -> NSDictionary {
let data: NSDictionary = [
"directPrint": false,
"dynamicLayout": false,
"canPrint": true,
"canConvertHtml": true,
"canShare": true,
]
return data
}
}