I'm developing an app that is currently sandboxed. It acts as a basic text editor. Recently, I wanted to test what happens when I open a file in my app and another app at the same time, make an update in one app, then then see the updated in the other. I'm using Coda or BBEdit as my alternative editors. If I turn off sandboxing -- then this issue does not exist. However, since apps are required to be sandboxed as of March 1, I would rather implement a solution rather than wait and see.

When I open both files and make an edit in my app and then switch to the other app, the changes are reflected so that those editors have the version just saved from my app. However, if I perform the converse of saving from their app and then moving to mine -- no joy. Without performing any action, the console reports two specific errors: deny file-issue-extension and deny file-write-data. The app appears to be losing privileges to edit the document since it was changed by an external editor after the document was opened in my app. If I try to save the file in my app, it asks to duplicate the document because it has lost access to the original document. This doesn't happen the other way around because those apps have not been sandboxed and therefor have permissions that my app does not. It also doesn't appear that you can prevent the other app from making the changes if you don't want this behavior.

The documentation on developer.apple.com mentions nothing of this type of situation. I am not sure if this is intended behavior. If it is, then I can just tell my user that the document permissions have been lost and they should either save a new version or re-open the file. If it is NOT intended behavior, then what method in the NSDocument API would grant permission to the file once it has been lost? I'm assuming the answer is the former, that this is intended, but can anyone confirm and is there documentation?

link|improve this question

I ended up coding around this issue. If the app loses permission to the file, then I tell the user to save my doc as a new file or close. But, it doesn't seem like one app should be able to "steal" permissions from another. I guess this is the price you pay for a sandbox. – Scott Harwell Jan 13 at 14:20
I found Apple's default message that the document was edited outside of the app. Looks like this is intended. – Scott Harwell Jan 13 at 15:58
1  
Please file a radar (and maybe document it on OpenRadar) - there are many problems with sandboxing in its current form, and the more bug reports Apple gets, the more likely they are to fix/postpone/retract sandboxing. – fzwo Jan 16 at 17:53
1  
Unfortunately, I don't think this is a bug for OpenRadar. I think it's an undocumented side effect of opening a document in a sandboxed application which has annoying, but not detrimental, effects on the end user. The user simply need to save the document as something else (or over the edits made by the other app). What this means as a developer is that your app will not be able to poll for changes from other apps and apply them directly. Rather, the poll would only allow you to tell you user to save as since it loses permissions to the file. – Scott Harwell Jan 16 at 18:39
1  
If you feel this makes for poor user experience or hinders development of certain features, I still feel you should file a radar with Apple. – fzwo Jan 16 at 21:50
show 4 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.