Giter Club home page Giter Club logo

composable-core-location's Issues

A possible memory leak when composable architecture is combined with the composable core location

Description
Hey guys,
first of all, I would like to thank you both for making such a great library. Working with it is a lot of fun! ๐Ÿฅ‡

I believe, however, that I've found a memory leak when composable architecture is combined with the composable core location dependency in a very specific way. I've prepared a mini demo for you and I would really appreciate it if you'll have time to check it out. It is available here.

To Reproduce

  1. Download the app
  2. Launch the app in the simulator
  3. Allow location updates
  4. Start simulating location updates, by enabling Simulator -> Features -> Location -> City Run
  5. Make sure that you are receiving locations (map is moving)
  6. Leave it running for a second or two, then take a look at the memory graph
  7. You'll see that some of the CLLocation objects are leaking (image attached)

After investigating, I've found out that if I don't combine reducerA into the "main" appReducer, location objects stop leaking. I.e. using just one pulled back child reducer with a core location dependency inside of .combined block works fine. But as soon as you add another "scoped" reducer, the issue reappears. You can reproduce this "fix" by commenting out the following code.

// MARK: - App Reducer

let appReducer = Reducer<AppState, AppAction, AppEnvironment>.combine(

    /*
     * Comment out the following reducer
     */
    reducerA
        .pullback(
            state: \.stateA,
            action: /AppAction.actionA,
            environment: { $0 }
        ),

    reducerB
        .pullback(
            state: \.stateB,
            action: /AppAction.actionB,
            environment: { $0 }
        )
)

The other strange thing that it seems like it also helps is if you remove the map function from the didUpdateLocations method in the core location dependency and only use the last location.

Change from:

func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
    subscriber.send(.didUpdateLocations(locations.map(Location.init(rawValue:))))
}

to:

func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
    subscriber.send(.didUpdateLocations(Location.init(rawValue: locations.last!)))
 }

Expected behavior
CLLocation objects should not leak.

Screenshots
MemoryGraph

Environment

  • Xcode Version 12.2 (12B45b)
  • Apple Swift version 5.3.1 (swiftlang-1200.0.41 clang-1200.0.32.8)
  • macOS Big Sur Version 11.0.1

Thanks for your help in advance. I hope that I am not wasting your time by misusing the library ๐Ÿ˜„

Failed to resolve dependencies Dependencies could not be resolved because root depends on 'swift-composable-architecture' 1.2.0. 'swift-composable-architecture' 0.43.0..<1.0.0 is required because 'composable-core-location' 0.3.0 depends on 'swift-composable-architecture' 0.43.0..<1.0.0 and root depends on 'composable-core-location' 0.3.0.

Describe the bug
Failed to resolve dependencies Dependencies could not be resolved because root depends on 'swift-composable-architecture' 1.2.0.
'swift-composable-architecture' 0.43.0..<1.0.0 is required because 'composable-core-location' 0.3.0 depends on 'swift-composable-architecture' 0.43.0..<1.0.0 and root depends on 'composable-core-location' 0.3.0.

To Reproduce
install TCA version 1.2.0 and Composable core location 0.3.0

CCL dependency on TCA conflicts with dependency on TCA

Describe the bug
In projects that depend on both TCA and CCL Xcode raises the following warning during SPM package resolution:

'composable-core-location' dependency on 'https://github.com/pointfreeco/swift-composable-architecture' conflicts with dependency on 'https://github.com/pointfreeco/swift-composable-architecture' which has the same identity 'swift-composable-architecture'. this will be escalated to an error in future versions of SwiftPM.

To Reproduce

  1. Create a new project
  2. Add TCA and CCL as dependencies
  3. Reset package caches
  4. Observe warning

Expected behavior
No warning during SPM package resolution.

Environment

  • Xcode Version 13.3 (13E113)
  • Swift version 5.6
  • macOS 12.3 Beta (21E5196i)

Support for more recent versions of TCA?

I am currently building an app in TCA to keep my chops fresh on the latest in Apple Platforms development. The app needs to hook into CoreLocation, and hence I found this repository. But just from searching, it appears that this library has not been updated to support newer versions of TCA (updated concurrency, reducer protocol, etc).

Are there plans to update this library? Or can anyone direct me to an example of implementing the delegation pattern of CoreLocation (and many other Apple APIs) within newer versions of TCA? The closest example I could find was in the audio recorder case study.

Time for new release?

Looks like there has been quite some progress since the 0.1.0 release to warrant a new release.

Delegate must respond to locationManager:didUpdateLocations:

i dont understand why its always crashing i am using main branch
// And/or enter code that reproduces the behavior here.
https://gist.github.com/saroar/abdb5ec787246d150e66be1a4cb7d03b

Expected behavior
Give a clear and concise description of what you expected to happen.

Screenshots
If applicable, add screenshots to help explain your problem.

Environment

  • Xcode 13
  • Swift 5.5
  • OS (15.0): [e.g. iOS 13]

Additional context
Add any more context about the problem here.

take too much time to update current location

Describe the bug
I don't know what is the problem I just know the issue and send a small video clip also click any point of interest button that does not work

I run your demo app and it takes too much time to my iPhone 6s
take too much time to update the current location

Expected behavior
it should take not more than 1/2s or less

Screenshots

RPReplay_Final1625561162.MP4

Environment

  • Swift [5.2.2]
  • OS (if applicable): [iOS 12, 13, 14]

Additional context
Add any more context about the problem here.

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.