ReactiveTask

0.16.0

Flexible, stream-based abstraction for launching processes
Carthage/ReactiveTask

What's New

0.16.0

2019-06-13T12:44:35Z

Breaking

  • Updated to ReactiveSwift 5 (#112). It requires Swift 4.2 or above. Thanks @mattprowse!

Added

  • CocoaPods support (#111). Thanks @pepibumur!

Improved

  • Child processes should now terminate when the parent exits (#110). Thanks @ikesyo!

Fixed

Thank you to @mdiep and @ikesyo for reviewing pull requests.

ReactiveTask

ReactiveTask is a Swift framework for launching shell tasks (processes), built using ReactiveSwift.

let strings = [ "foo\n", "bar\n", "buzz\n", "fuzz\n" ]
let input = SignalProducer<Data, NoError>(values: strings.map { $0.data(using: .utf8)! })
let task = Task("/usr/bin/sort")

// Run the task, ignoring the output, and do something with the final result.
let result: Result<String, TaskError>? = task.launch(standardInput: input)
    .ignoreTaskData()
    .map { String(data: $0, encoding: .utf8) }
    .ignoreNil()
    .single()
print("Output of `\(task)`: \(result?.value ?? "")")

// Start the task and print all the events, which includes all the output
// that was received.
task.launch(standardInput: input)
    .flatMapTaskEvents(.concat) { data in
        return SignalProducer(value: String(data: data, encoding: .utf8))
    }
    .startWithNext { (event: TaskEvent) in
        switch event {
        case let .launch(task):
            print("launched task: \(task)")

        case let .standardError(data):
            print("stderr: \(data)")

        case let .standardOutput(data):
            print("stdout: \(data)")

        case let .success(string):
            print("value: \(string ?? "")")
        }
    }

For examples of how to use ReactiveTask, see the Xcode and Git integration code from the CarthageKit framework.

License

ReactiveTask is released under the MIT license.

Description

  • Swift Tools 4.0.0
View More Packages from this Author

Dependencies

Last updated: Mon Apr 01 2024 22:17:33 GMT-0900 (Hawaii-Aleutian Daylight Time)