Coder Social home page Coder Social logo

orchetect / otoperations Goto Github PK

View Code? Open in Web Editor NEW
2.0 1.0 1.0 231 KB

Useful Swift NSOperation and NSOperationQueue subclasses

License: MIT License

Swift 100.00%
nsoperation nsoperationqueue operations operation operationqueue swift swift-5 swift-5-5 macos ios

otoperations's Introduction

OTOperations

CI Build Status Platforms - macOS 10.11+ | iOS 9+ | tvOS 9+ | watchOS 2+ | visionOS 1+ Swift 5.3-5.9 Xcode 12.0-15 License: MIT

Useful NSOperation (Operation) and NSOperationQueue (OperationQueue) subclasses for Swift.

Scalable, thread-safe, and automatically fully progress-reporting for nested child operations.

  • Foundational
    • BasicOperation and BasicAsyncOperation
  • Closure-based
    • ClosureOperation and AsyncClosureOperation
    • InteractiveClosureOperation and InteractiveAsyncClosureOperation
  • Thread-safe atomic mutability
    • AtomicBlockOperation

Installation: Swift Package Manager (SPM)

Dependency within an Application

  1. Add the package to your Xcode project using Swift Package Manager
    • Select File โ†’ Swift Packages โ†’ Add Package Dependency
    • Add package using https://github.com/orchetect/OTOperations as the URL.
  2. Import the module in your *.swift files where needed.
    import OTOperations

Dependency within a Swift Package

  1. In your Package.swift file:

    dependencies: [
        .package(url: "https://github.com/orchetect/OTOperations", from: "1.0.0")
    ],
  2. @_implementationOnly prevents the methods and properties in OTOperations from being exported to the consumer of your SPM package.

    @_implementationOnly import OTOperations

Documentation

Most methods are implemented as category methods so they are generally discoverable.

All methods have inline help explaining their purpose and basic usage examples.

Author

Coded by a bunch of ๐Ÿน hamsters in a trenchcoat that calls itself @orchetect.

License

Licensed under the MIT license. See LICENSE for details.

Contributions

Bug fixes and improvements are welcome. Please open an issue to discuss prior to submitting PRs.

otoperations's People

Contributors

orchetect avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Forkers

ryanfrancesconi

otoperations's Issues

Add additional tests for progress labels calling `statusHandler`

Currently progress labels will recursively update through the entire progress child tree under these conditions:

  • when a child progress is added to a parent progress
    • ie: when an operation is added to BasicOperationQueue or one of its subclasses
  • when a progress label changes (setting labelProgress.label) anywhere in the progress tree
  • when a child progress object deinits

BasicOperationQueue.statusHandler is called when .status changes, which is generally under these conditions (this list may not be exhaustive):

  • when any of these KVO observers fire:
    • isSuspended
    • operationCount
    • progress.fractionCompleted
    • progress.isFinished

Additional unit tests need to be added to test various scenarios and states of BasicOperationQueue with nested child operations to ensure that statusHandler is being called sufficiently to provide updates to changes in the aggregate progress label. Especially with concurrent child operations complete, and as they complete in a staggered fashion.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.