commit | deecd324d4fe5443d6db400a531c865bdca1093f | [log] [tgz] |
---|---|---|
author | Greg Spencer <gspencergoog@users.noreply.github.com> | Wed Nov 04 13:03:05 2020 -0800 |
committer | GitHub <noreply@github.com> | Wed Nov 04 13:03:05 2020 -0800 |
tree | 7e055362343eab33cf60fea6d37983876a84c329 | |
parent | 79b88df6f0a0a6d96f216ed3253a98a325941a2e [diff] | |
parent | 99ed9b1f8dc7b1dbbe513b170a48e87d2d1da9ff [diff] |
Bump constraints to >=2.12.0-0 <3.0.0
The process_runner
package for Dart uses the ProcessManager
class from process
package to allow invocation of external OS processes, and manages the stderr and stdout properly so that you don't lose any output, and can easily access it without needing to wait on streams.
Like dart:io
and process
, it supplies a rich, Dart-idiomatic API for spawning OS processes, with the added benefit of easy retrieval of stdout and stderr from the result of running the process, with proper waiting for the process and stderr/stdout streams to be closed. Because it uses process
, you can supply a mocked ProcessManager
to allow testing of code that uses process_runner
.
In addition to being able to launch processes separately with ProcessRunner
, it allows creation of a pool of worker processes with ProcessPool
, and manages running them with a set number of active WorkerJob
s, and manages the collection of their stdout, stderr, and interleaved stdout and stderr output.
See the example and process_runner
library docs for more information on how to use it, but the basic usage for is:
import 'package:process_runner/process_runner.dart'; Future<void> main() async { ProcessRunner processRunner = ProcessRunner(); ProcessRunnerResult result = await processRunner.runProcess(['ls']); print('stdout: ${result.stdout}'); print('stderr: ${result.stderr}'); // Print interleaved stdout/stderr: print('combined: ${result.output}'); }
For the ProcessPool
, also see the example, but it basically looks like this:
import 'package:process_runner/process_runner.dart'; Future<void> main() async { ProcessPool pool = ProcessPool(numWorkers: 2); final List<WorkerJob> jobs = <WorkerJob>[ WorkerJob(['ls'], name: 'Job 1'), WorkerJob(['df'], name: 'Job 2'), ]; await for (final WorkerJob job in pool.startWorkers(jobs)) { print('\nFinished job ${job.name}'); } }
Or, if you just want the answer when it's done:
import 'package:process_runner/process_runner.dart'; Future<void> main() async { ProcessPool pool = ProcessPool(numWorkers: 2); final List<WorkerJob> jobs = <WorkerJob>[ WorkerJob(['ls'], name: 'Job 1'), WorkerJob(['df'], name: 'Job 2'), ]; List<WorkerJob> finishedJobs = await pool.runToCompletion(jobs); for (final WorkerJob job in finishedJobs) { print("${job.name}: ${job.result.stdout}"); } }