mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
e989e12867
--HG-- rename : mobile/android/base/sync/GlobalConstants.java.in => mobile/android/base/background/common/GlobalConstants.java.in rename : mobile/android/base/sync/Logger.java => mobile/android/base/background/common/log/Logger.java rename : mobile/android/base/sync/log/writers/AndroidLevelCachingLogWriter.java => mobile/android/base/background/common/log/writers/AndroidLevelCachingLogWriter.java rename : mobile/android/base/sync/log/writers/AndroidLogWriter.java => mobile/android/base/background/common/log/writers/AndroidLogWriter.java rename : mobile/android/base/sync/log/writers/LevelFilteringLogWriter.java => mobile/android/base/background/common/log/writers/LevelFilteringLogWriter.java rename : mobile/android/base/sync/log/writers/LogWriter.java => mobile/android/base/background/common/log/writers/LogWriter.java rename : mobile/android/base/sync/log/writers/PrintLogWriter.java => mobile/android/base/background/common/log/writers/PrintLogWriter.java rename : mobile/android/base/sync/log/writers/SimpleTagLogWriter.java => mobile/android/base/background/common/log/writers/SimpleTagLogWriter.java rename : mobile/android/base/sync/log/writers/StringLogWriter.java => mobile/android/base/background/common/log/writers/StringLogWriter.java rename : mobile/android/base/sync/log/writers/TagLogWriter.java => mobile/android/base/background/common/log/writers/TagLogWriter.java rename : mobile/android/base/sync/log/writers/ThreadLocalTagLogWriter.java => mobile/android/base/background/common/log/writers/ThreadLocalTagLogWriter.java
106 lines
3.4 KiB
Java
106 lines
3.4 KiB
Java
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
package org.mozilla.gecko.sync;
|
|
|
|
import java.util.Collections;
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
import java.util.Map.Entry;
|
|
import java.util.Set;
|
|
|
|
import org.mozilla.gecko.background.common.log.Logger;
|
|
|
|
/**
|
|
* Fetches the timestamp information in <code>info/collections</code> on the
|
|
* Sync server. Provides access to those timestamps, along with logic to check
|
|
* for whether a collection requires an update.
|
|
*/
|
|
public class InfoCollections {
|
|
private static final String LOG_TAG = "InfoCollections";
|
|
|
|
/**
|
|
* Fields fetched from the server, or <code>null</code> if not yet fetched.
|
|
* <p>
|
|
* Rather than storing decimal/double timestamps, as provided by the server,
|
|
* we convert immediately to milliseconds since epoch.
|
|
*/
|
|
final Map<String, Long> timestamps;
|
|
|
|
@SuppressWarnings("unchecked")
|
|
public InfoCollections(final ExtendedJSONObject record) {
|
|
Logger.debug(LOG_TAG, "info/collections is " + record.toJSONString());
|
|
HashMap<String, Long> map = new HashMap<String, Long>();
|
|
|
|
Set<Entry<String, Object>> entrySet = record.object.entrySet();
|
|
|
|
String key;
|
|
Object value;
|
|
for (Entry<String, Object> entry : entrySet) {
|
|
key = entry.getKey();
|
|
value = entry.getValue();
|
|
|
|
// These objects are most likely going to be Doubles. Regardless, we
|
|
// want to get them in a more sane time format.
|
|
if (value instanceof Double) {
|
|
map.put(key, Utils.decimalSecondsToMilliseconds((Double) value));
|
|
continue;
|
|
}
|
|
if (value instanceof Long) {
|
|
map.put(key, Utils.decimalSecondsToMilliseconds((Long) value));
|
|
continue;
|
|
}
|
|
if (value instanceof Integer) {
|
|
map.put(key, Utils.decimalSecondsToMilliseconds((Integer) value));
|
|
continue;
|
|
}
|
|
Logger.warn(LOG_TAG, "Skipping info/collections entry for " + key);
|
|
}
|
|
|
|
this.timestamps = Collections.unmodifiableMap(map);
|
|
}
|
|
|
|
/**
|
|
* Return the timestamp for the given collection, or null if the timestamps
|
|
* have not been fetched or the given collection does not have a timestamp.
|
|
*
|
|
* @param collection
|
|
* The collection to inspect.
|
|
* @return the timestamp in milliseconds since epoch.
|
|
*/
|
|
public Long getTimestamp(String collection) {
|
|
if (timestamps == null) {
|
|
return null;
|
|
}
|
|
return timestamps.get(collection);
|
|
}
|
|
|
|
/**
|
|
* Test if a given collection needs to be updated.
|
|
*
|
|
* @param collection
|
|
* The collection to test.
|
|
* @param lastModified
|
|
* Timestamp when local record was last modified.
|
|
*/
|
|
public boolean updateNeeded(String collection, long lastModified) {
|
|
Logger.trace(LOG_TAG, "Testing " + collection + " for updateNeeded. Local last modified is " + lastModified + ".");
|
|
|
|
// No local record of modification time? Need an update.
|
|
if (lastModified <= 0) {
|
|
return true;
|
|
}
|
|
|
|
// No meta/global on the server? We need an update. The server fetch will fail and
|
|
// then we will upload a fresh meta/global.
|
|
Long serverLastModified = getTimestamp(collection);
|
|
if (serverLastModified == null) {
|
|
return true;
|
|
}
|
|
|
|
// Otherwise, we need an update if our modification time is stale.
|
|
return (serverLastModified.longValue() > lastModified);
|
|
}
|
|
}
|