paulyoung / SwiftXPC

XPC simplified for Swift. Deal with Swift and NS* objects instead of xpc_object_t.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SwiftXPC

XPC simplified for Swift. Deal with Swift and NS* objects instead of xpc_object_t.

Usage

let swiftDict = [
  "String": "string",
  "Date": NSDate(),
  "Data": NSData(),
  "UInt64": UInt64(0),
  "Int64": Int64(0),
  "Double": 0.0,
  "Bool": false,
  "FileHandle": NSFileHandle(fileDescriptor: 0),
  "Uuid": NSUUID(UUIDBytes: [UInt8](count: 16, repeatedValue: 0))
]
toXPC(swiftDict)
//<OS_xpc_dictionary: <dictionary: 0x100333580> { count = 9, contents =
//    "Bool" => <bool: 0x7fff7bf7aa58>: false
//    "Date" => <date: 0x1003337b0> Sun Mar 01 16:23:52 2015 PST (approx)
//    "Uuid" => <uuid: 0x100333800> 00000000-0000-0000-0000-000000000000
//    "Double" => <double: 0x1003336a0>: 0.000000
//    "String" => <string: 0x1001705d0> { length = 6, contents = "string" }
//    "Int64" => <int64: 0x100333780>: 0
//    "FileHandle" => <fd: 0x1003301a0> { type = (invalid descriptor), path = /dev/ttys004 }
//    "UInt64" => <uint64: 0x1003333a0>: 0
//    "Data" => <data: 0x100333650>: { length = 0 bytes, contents = (nil)
//}>

Credit

This project started as a Swift port of @stevestreza's excellent XPCKit.

License

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.

About

XPC simplified for Swift. Deal with Swift and NS* objects instead of xpc_object_t.


Languages

Language:Swift 98.8%Language:Objective-C 1.2%