-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
79 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// tomocy | ||
|
||
import Foundation | ||
|
||
struct AppleScript { | ||
typealias Raw = NSAppleScript | ||
|
||
let raw: Raw | ||
} | ||
|
||
extension AppleScript { | ||
init(source: String) { | ||
self.init( | ||
raw: .init(source: source)! | ||
) | ||
} | ||
} | ||
|
||
extension AppleScript { | ||
static func result(from: () throws -> Void) -> Result<Void, Error> { | ||
return Result { | ||
try from() | ||
}.mapError { $0 as! Error } | ||
} | ||
} | ||
|
||
extension AppleScript { | ||
func compile() throws { | ||
var error: NSDictionary? | ||
raw.compileAndReturnError(&error) | ||
if let error = error { | ||
throw Error(reason: error as! [String: Any]) | ||
} | ||
} | ||
|
||
func run() throws { | ||
var error: NSDictionary? | ||
raw.executeAndReturnError(&error) | ||
if let error = error { | ||
throw Error(reason: error as! [String: Any]) | ||
} | ||
} | ||
} | ||
|
||
extension AppleScript { | ||
struct Error: Swift.Error { | ||
let reason: [String: Any] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters