12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- //
- // Copyright © 2021 osy. All rights reserved.
- //
- // 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 Foundation
- @objc class UTMSerialPort: NSObject {
- let name: String
- private let readFileHandle: FileHandle
- private let writeFileHandle: FileHandle
- private let terminalFileHandle: FileHandle?
-
- public weak var delegate: UTMSerialPortDelegate? {
- didSet {
- if let delegate = delegate {
- readFileHandle.readabilityHandler = { handle in
- delegate.serialPort(self, didRecieveData: handle.availableData)
- }
- } else {
- readFileHandle.readabilityHandler = nil
- }
- }
- }
-
- init(portNamed name: String, readFileHandle: FileHandle, writeFileHandle: FileHandle, terminalFileHandle: FileHandle? = nil) {
- self.name = name
- self.readFileHandle = readFileHandle
- self.writeFileHandle = writeFileHandle
- self.terminalFileHandle = terminalFileHandle
- }
-
- deinit {
- close()
- }
-
- public func write(data: Data) {
- if #available(iOS 13.4, macOS 10.15, *) {
- try! writeFileHandle.write(contentsOf: data)
- } else {
- writeFileHandle.write(data)
- }
- }
-
- public func close() {
- if #available(iOS 13, macOS 10.15, *) {
- try? readFileHandle.close()
- try? writeFileHandle.close()
- try? terminalFileHandle?.close()
- } else {
- readFileHandle.closeFile()
- writeFileHandle.closeFile()
- terminalFileHandle?.closeFile()
- }
- }
- }
|