I'm writing my own ContentProvider which will be synced to a web service using a SyncAdapter.

Problem happens when the sync adapter is modifying the content provider's data the provider triggers a network sync when internally calling getContentResolver().notifyChange causing a sync loop.

The notifyChange with the network sync flag is required for when a client application does the modification but should be avoided when the sync adapter is modifying.

How can one, inside a contentprovider, easly tell if it's being used by a client application (which should trigger network sync upon modification) or by a sync adapter (which should not trigger network sync).

Currently I'm using different CONTENT_URI's (sync adapter accesses the data using a CONTENT_URI_NO_SYNC and client apps using a CONTENT_URI) to be able to distinguish between the two types of access and set the network sync flag accordingly.

link|improve this question
feedback

1 Answer

up vote 5 down vote accepted

Watch this video about REST API usage in SyncAdapters.

The method they discuss is to add a set of metadata flags to each row in the database. This allows 3 things.

  1. The flags themselves allow the SyncAdapter to determine that the rows that need change and what changes to make. How do you tell the difference between a locally created row and a locally modified row? Therefore how do you know which REST api call to make? If you just delete a row, how does your SyncAdapter know the row to be deleted, since the data is now gone? Instead, set the "Should be deleted" flag, and let SyncAdapter push a delete to the server.

  2. The flags allow your CursorAdapter to modify the view that is created (add a spinner to show that "This row is being synced")

  3. Finally, (and this they don't point out), those flags allow you to tell why the row is being modified. If all the flags are off and the row changed, it must have been because of an update from the server. Therefore, no need to sync to network.

So, two workflows:

Local change

  1. App creates new row. Row "create" flag is true.
  2. ContentProvider stores, sees create flag, calls notifyChange(...,true);
  3. Sync to network = true causes SyncAdapter to fire.
  4. SyncAdapter scans db, finds row with create flag set, performs appropriate server action. After success, SyncAdapter clears the flag.(row update on contentprovivder)
  5. ContentProvider sees the flag clear, no flags are left set, notifyChange(...,false);
  6. ContentObservers see the flag change, update to look like "sync finished"

All these steps are parallel with update / delete -- one flag per syncable row for each of create/update/delete. Also notice the other win -- what if "Create" fails temporarily? server down... How do you know to retry? -- Simple, you don't clear the "Create" flag and you see it 15 minutes later.

Remote Change

  1. SyncAdapter fires due to periodic sync.
  2. Syncadapter fetches an update from the server. Pushes changes into the DB. Doesn't set any flags. ContentProvider sees the lack of flags, knows the change must have come from the server. notifyChange(...,false);
  3. ContentObservers see the flag change, update with new row data
link|improve this answer
Great answer! Everything's cristal clear now, thank you! – m1h4 Jul 7 '11 at 11:16
feedback

Your Answer

 
or
required, but never shown

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