Coder Social home page Coder Social logo

Comments (6)

clayallsopp avatar clayallsopp commented on June 22, 2024
  • request (returned from createRequest) is a String right?
  • So if you downgrade to v2.3, run this code with no changes, it works?
  • Is it possible to upload a reproducible example? Have you tried running AFMotion's requests against other endpoints than whatever request is?

from afmotion.

larsudengaard avatar larsudengaard commented on June 22, 2024

No, actually it create and NSMutableURLRequest

  def createRequest(url)
    request = NSMutableURLRequest.requestWithURL(NSURL.URLWithString(url),
                                                 cachePolicy: NSURLRequestReloadIgnoringLocalCacheData,
                                                 timeoutInterval: 300)

    apiVersion = NSBundle.mainBundle.objectForInfoDictionaryKey('ApiVersion')
    request.setValue(apiVersion, forHTTPHeaderField: 'ApiVersion')

    request
  end

I think the problem is how the AFMotion::Operation::JSON.for_request closes over the variable operation.
In AFMotion::Operation::HTTP.for_request you initiate the operation variable before closing over it in the succes and failure blocks. Im am no expert on how closures work in ruby though :-)

Reimplementing AFMotion::Operation::JSON.for_request to look more like the HTTP.for_request solves the problem for me:

  def json_get_request(request, &callback)
    operation = AFJSONRequestOperation.alloc.initWithRequest(request)
    operation.setCompletionBlockWithSuccess(
        lambda { |operation, responseObject|
          result = AFMotion::HTTPResult.new(operation, responseObject, nil)
          callback.call(result)
        },
        failure: lambda {|operation, error|
          result = AFMotion::HTTPResult.new(operation, nil, error)
          callback.call(result)
        }
    )
    operation
  end

from afmotion.

larsudengaard avatar larsudengaard commented on June 22, 2024

And to answer your questions: :-)

request (returned from createRequest) is a String right?
No, NSMutableRequest
So if you downgrade to v2.3, run this code with no changes, it works?
Yes
Is it possible to upload a reproducible example? Have you tried running AFMotion's requests against other endpoints than whatever request is?
I think i might how found a fix for the problem, see the above comment. If not, I will try and make a reproducible example tonight (CET).

from afmotion.

clayallsopp avatar clayallsopp commented on June 22, 2024

Ah I see; yeah the code-paths when passing NSURLRequests aren't very well tested. If your fix works, definitely submit a pull request! (with a test, preferably :) )

from afmotion.

larsudengaard avatar larsudengaard commented on June 22, 2024

What is the alternative method? :-)
I'll try and get around making a pull-request (and test ;-)) tonight.

from afmotion.

clayallsopp avatar clayallsopp commented on June 22, 2024

The alternative method is to passing a String, which will get converted to an NSURLRequest: https://github.com/usepropeller/afmotion/blob/master/lib/afmotion/http.rb#L7. Somehow I guess this triggers a different memory behavior than simply passing one =\

from afmotion.

Related Issues (20)

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.