项目作者: jkandzi

项目描述 :
:hourglass: Add beautiful progress bars to your loops.
高级语言: Swift
项目地址: git://github.com/jkandzi/Progress.swift.git
创建时间: 2015-12-26T11:16:57Z
项目社区:https://github.com/jkandzi/Progress.swift

开源协议:MIT License

下载


Progress.swift :hourglass:

Build Status
codecov.io
Carthage compatible
SPM ready
Version
License
Platform

demo gif

Just wrap the SequenceType in your loop with the Progress SequenceType and you’ll automatically get beautiful progress bars.

Updating the progress bar does not work in the Xcode console because it does not support the cursor movements. If you want it to look nice run it in a real terminal.

Example

Just take a regular loop like this for i in 1...9 { ... and wrap the 1...9 range in the Progress type and you’ll automatically get a nice progress bar.

  1. import Progress
  2. for i in Progress(1...9) {
  3. ...
  4. }

Creates this output:

  1. $ 4 of 9 [------------- ] ETA: 0:00:05 (at 1.01 it/s)

It also works with all the other types adopting the CollectionType protocol like dictionarys: Progress(["key": "value", "key2": "also value"]) and arrays: Progress([1, 52, 6, 26, 1]).

You can also create the progress bar manually without a sequence type:

  1. var bar = ProgressBar(count: 4)
  2. for i in 0...3 {
  3. bar.next()
  4. sleep(1)
  5. }

Configuration

You can configure the progress bar by combining single building blocks of type ProgressElementType.

Either by setting a default configuration:

  1. ProgressBar.defaultConfiguration = [ProgressString(string: "Percent done:"), ProgressPercent()]

which creates the following result:

  1. $ Percent done: 80%

or by providing a specific configuration in the Process initializer:

  1. Progress(0...10, configuration: [ProgressPercent(), ProgressBarLine(barLength: 60)])

resulting in something like this:

  1. $ 100% [------------------------------------------------------------]

Available ProgressElementType elements:

  • ProgressBarLine (The actual bar. E.g. “[——————————— ]”).
  • ProgressIndex (The current index & overall count. E.g. “2 of 3”).
  • ProgressPercent (The progress in percent. E.g. “60%”).
  • ProgressTimeEstimates (Estimated time remaining & items per second. E.g. “ETA: 00:00:02 (at 1.00 it/s)”).
  • ProgressString (Adds an arbitrary string to the progress bar).

Installation

Cocoapods

Progress.swift is available through CocoaPods. To install
it, simply add the following line to your Podfile:

  1. pod "Progress.swift"

Carthage

To integrate Progress.swift into your Xcode project using Carthage, specify it in your Cartfile:

  1. github "jkandzi/Progress.swift"

Run carthage update to build the framework and drag the built Progress.framework into your Xcode project.

Swift Package Manager

To install with the Swift Package Manager, add the following in your Package.swift:

  1. import PackageDescription
  2. let package = Package(
  3. name: "MyProject",
  4. dependencies: [
  5. .Package(url: "https://github.com/jkandzi/Progress.swift", majorVersion: 0)
  6. ]
  7. )

Manual

You can also copy the Progress.swift file into your Xcode project.

Contribution

You are welcome to fork and submit pull requests.

Author

Justus Kandzi, justus.kandzi@gmail.com

License

Progress.swift is available under the MIT license. See the LICENSE file for more info.