I am working with External Accessory framework. I am encountering problems reestablishing EASession after app goes into background and then returns to foreground. If I terminate my app and relaunch, then Bluetooth connection is reestablished as one would expect. I suspect that there is some part of the teardown that I am missing - or which is not exposed (??).

[EAAccessoryManager sharedAccessoryManager] connectedAccessories]] is returning my connected accessory, and I am able to query it to get name, modelNumber, etc. However, the following line sets _session to nil.

_session = [[EASession alloc] initWithAccessory:_accessory forProtocol:_protocolString];

Is there any way to diagnosis the reason for failed EASession initialization?

Is there some mantra for clearing out old EASession?

This question is related to this one - but I am not asking for advice on which path to follow. I am asking why this path has this large pitfall and how to navigate around it.

link|improve this question

74% accept rate
EADemo does not leak... So why are others (myself included) seeing EASession and EAAccessory leak? – Sam Apr 24 at 17:16
feedback

3 Answers

up vote 3 down vote accepted

I've found (in the post iOS4.1 world) that leaving the app (Backgrounding or quitting) will cause a DidDisconnectNotification to fire off. In the case of just hitting the power button or having the device sleep; we don't see the connection go down.

Now if the BT device goes out of range or goes to sleep itself. Then the connection goes down.

As a result, we no longer depend on anything but the ConnectionNotifications. We don't even trust the [EAAccessoryManager sharedAccessoryManager] connectedAccessories]] list because we've found it can sometimes contain 'ghost accessories' that will say they are connected and have streams that you can connect to and get write available events from even after the entire bluetooth system has gone down (BT icon off)

ConnectionNotifications are cached when you are in the background, so you should get a fresh state when you re-enter the app.

Of course on first entry; you want to make sure that you've set up all your listeners (etc) properly.

link|improve this answer
feedback

As far as I can tell, there is no clearing out of old EASession instances. I can hypothesize, but I don't really know why this is. I suspect that the established EASession does not release its association with its accessory - and that this prevent subsequent EASession instances from being successfully associated with the same accessory.

I opted to leave EASession in tact when app resigns active. This seems to be working. In testing, I have connected to Bluetooth accessory, launched my app, accessed accessory, sent my app into background, disconnected/reconnected BT accessory, brought app to foreground and been able to access accessory again. This is as much as I could hope for.

One caveat: with iOS 4.0 it is possible to have more than one accessory. For example, a video cable and a Bluetooth device are both accessories.

link|improve this answer
feedback

I was heaving the same problem. In my case, the session object, just after creation, has retainCount = 3, so one call [session release] was not enough when receiving DidDisconnectNotification. Be sure you really released the session object after received DidDisconnectNotification notification.

link|improve this answer
I'm also seeing EASession leaking (has retainCount of 2 before I release what should have been the only retain). Odd behavior. – Sam Apr 16 at 15:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.