SyncDownTarget.java
/*
* Copyright (c) 2014-present, salesforce.com, inc.
* All rights reserved.
* Redistribution and use of this software in source and binary forms, with or
* without modification, are permitted provided that the following conditions
* are met:
* - Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* - Neither the name of salesforce.com, inc. nor the names of its contributors
* may be used to endorse or promote products derived from this software without
* specific prior written permission of salesforce.com, inc.
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
package com.salesforce.androidsdk.smartsync.util;
import android.util.Log;
import com.salesforce.androidsdk.smartsync.manager.SyncManager;
import com.salesforce.androidsdk.util.JSONObjectHelper;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.IOException;
import java.lang.reflect.Constructor;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
/**
* Target for sync down:
* - what records to download from server
* - how to download those records
*/
public abstract class SyncDownTarget extends SyncTarget {
// Constants
public static final String QUERY_TYPE = "type";
// Fields
protected QueryType queryType;
protected int totalSize; // set during a fetch
/**
* Build SyncDownTarget from json
* @param target as json
* @return
* @throws JSONException
*/
@SuppressWarnings("unchecked")
public static SyncDownTarget fromJSON(JSONObject target) throws JSONException {
if (target == null)
return null;
QueryType queryType = QueryType.valueOf(target.getString(QUERY_TYPE));
switch (queryType) {
case mru: return new MruSyncDownTarget(target);
case sosl: return new SoslSyncDownTarget(target);
case soql: return new SoqlSyncDownTarget(target);
case refresh: return new RefreshSyncDownTarget(target);
case custom:
default:
try {
Class<? extends SyncDownTarget> implClass = (Class<? extends SyncDownTarget>) Class.forName(target.getString(ANDROID_IMPL));
Constructor<? extends SyncDownTarget> constructor = implClass.getConstructor(JSONObject.class);
return constructor.newInstance(target);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
}
/**
* Construct SyncDownTarget
*/
public SyncDownTarget() {
super();
}
/**
* Construct SyncDownTarget from json
* @param target
* @throws JSONException
*/
public SyncDownTarget(JSONObject target) throws JSONException {
super(target);
queryType = QueryType.valueOf(target.getString(QUERY_TYPE));
}
/**
* @return json representation of target
* @throws JSONException
*/
public JSONObject asJSON() throws JSONException {
JSONObject target = super.asJSON();
target.put(QUERY_TYPE, queryType.name());
return target;
}
/**
* Start fetching records conforming to target
* If a value for maxTimeStamp greater than 0 is passed in, only records created/modified after maxTimeStamp should be returned
* @param syncManager
* @param maxTimeStamp
* @throws IOException, JSONException
*/
public abstract JSONArray startFetch(SyncManager syncManager, long maxTimeStamp) throws IOException, JSONException;
/**
* Continue fetching records conforming to target if any
* @param syncManager
* @return null if there are no more records to fetch
* @throws IOException, JSONException
*/
public abstract JSONArray continueFetch(SyncManager syncManager) throws IOException, JSONException;
/**
* Fetches list of IDs still present on the server from the list of local IDs.
*
* @param syncManager SyncManager instance.
* @param localIds Local IDs from SmartStore.
* @return List of IDs still present on the server.
*/
public abstract Set<String> getListOfRemoteIds(SyncManager syncManager, Set<String> localIds);
/**
* @return number of records expected to be fetched - is set when startFetch() is called
*/
public int getTotalSize() {
return totalSize;
}
/**
* @return QueryType of this target
*/
public QueryType getQueryType() {
return queryType;
}
/**
* Gets the latest modification timestamp from the array of records.
* @param records
* @return latest modification time stamp
* @throws JSONException
*/
public long getLatestModificationTimeStamp(JSONArray records) throws JSONException {
long maxTimeStamp = -1;
for (int i = 0; i < records.length(); i++) {
String timeStampStr = JSONObjectHelper.optString(records.getJSONObject(i), getModificationDateFieldName());
if (timeStampStr == null) {
maxTimeStamp = -1;
break; // field not present
}
try {
long timeStamp = Constants.TIMESTAMP_FORMAT.parse(timeStampStr).getTime();
maxTimeStamp = Math.max(timeStamp, maxTimeStamp);
} catch (Exception e) {
Log.w("SyncDownTarget.getLatestModificationTimeStamp", "Could not parse modification date field " + getModificationDateFieldName(), e);
maxTimeStamp = -1;
break;
}
}
return maxTimeStamp;
}
/**
* Enum for query type
*/
public enum QueryType {
mru,
sosl,
soql,
refresh,
custom
}
/**
* Helper method to parse IDs from a network response to a SOQL query.
*
* @param records SObject records.
* @return Set of IDs.
*/
protected Set<String> parseIdsFromResponse(JSONArray records) {
final Set<String> remoteIds = new HashSet<String>();
if (records != null) {
for (int i = 0; i < records.length(); i++) {
final JSONObject idJson = records.optJSONObject(i);
if (idJson != null) {
remoteIds.add(idJson.optString(getIdFieldName()));
}
}
}
return remoteIds;
}
}