AbstractTransferOperation.java

/*
 * Syncany, www.syncany.org
 * Copyright (C) 2011-2016 Philipp C. Heckel <philipp.heckel@gmail.com>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
package org.syncany.operations;

import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.logging.Level;
import java.util.logging.Logger;

import org.syncany.config.Config;
import org.syncany.config.LocalEventBus;
import org.syncany.plugins.transfer.StorageException;
import org.syncany.plugins.transfer.TransferManager;
import org.syncany.plugins.transfer.TransferManagerFactory;
import org.syncany.plugins.transfer.features.ReadAfterWriteConsistent;
import org.syncany.plugins.transfer.features.PathAware;
import org.syncany.plugins.transfer.features.Retriable;
import org.syncany.plugins.transfer.features.TransactionAware;
import org.syncany.plugins.transfer.features.TransactionAwareFeatureTransferManager;
import org.syncany.plugins.transfer.files.ActionRemoteFile;
import org.syncany.plugins.transfer.files.CleanupRemoteFile;
import org.syncany.plugins.transfer.files.DatabaseRemoteFile;

/**
 * Represents and is inherited by a transfer operation. Transfer operations are operations
 * that modify the repository and/or are relevant for the consistency of the local directory
 * or the remote repository.
 *
 * <p>This abstract class offers convenience methods to handle {@link ActionRemoteFile} as well
 * as to handle the connection and local cache.
 *
 * @author Philipp C. Heckel (philipp.heckel@gmail.com)
 */
public abstract class AbstractTransferOperation extends Operation {
	private static final Logger logger = Logger.getLogger(AbstractTransferOperation.class.getSimpleName());

	/**
	 * Defines the time after which old/outdated action files from other clients are
	 * deleted. This time must be significantly larger than the time action files are
	 * renewed by the {@link ActionFileHandler}.
	 *
	 * @see ActionFileHandler#ACTION_RENEWAL_INTERVAL
	 */
	private static final int ACTION_FILE_DELETE_TIME = ActionFileHandler.ACTION_RENEWAL_INTERVAL + 5 * 60 * 1000; // Minutes

	protected TransactionAwareFeatureTransferManager transferManager;
	protected ActionFileHandler actionHandler;

	protected LocalEventBus eventBus;

	public AbstractTransferOperation(Config config, String operationName) {
		super(config);

		this.eventBus = LocalEventBus.getInstance();

		try {
			// Do NOT reuse TransferManager for action file renewal; see #140

			TransferManager actionFileTransferManager = TransferManagerFactory
					.build(config)
					.withFeature(ReadAfterWriteConsistent.class)
					.withFeature(Retriable.class)
					.asDefault();

			TransactionAwareFeatureTransferManager regularFileTransferManager = TransferManagerFactory
					.build(config)
					.withFeature(ReadAfterWriteConsistent.class)
					.withFeature(Retriable.class)
					.withFeature(PathAware.class)
					.withFeature(TransactionAware.class)
					.as(TransactionAware.class);

			this.actionHandler = new ActionFileHandler(actionFileTransferManager, operationName, config.getMachineName());
			this.transferManager = regularFileTransferManager;
		}
		catch (StorageException e) {
			logger.log(Level.SEVERE, "Unable to create AbstractTransferOperation: Unable to create TransferManager", e);
			throw new RuntimeException("Unable to create AbstractTransferOperation: Unable to create TransferManager: " + e.getMessage());
		}
	}

	protected void startOperation() throws Exception {
		actionHandler.start();
	}

	protected void finishOperation() throws StorageException {
		actionHandler.finish();

		cleanActionFiles();
		disconnectTransferManager();
		clearCache();
	}

	protected boolean otherRemoteOperationsRunning(String... operationIdentifiers) throws StorageException {
		logger.log(Level.INFO, "Looking for other running remote operations ...");
		Map<String, ActionRemoteFile> actionRemoteFiles = transferManager.list(ActionRemoteFile.class);

		boolean otherRemoteOperationsRunning = false;
		List<String> disallowedOperationIdentifiers = Arrays.asList(operationIdentifiers);

		for (ActionRemoteFile actionRemoteFile : actionRemoteFiles.values()) {
			String operationName = actionRemoteFile.getOperationName();
			String machineName = actionRemoteFile.getClientName();

			boolean isOwnActionFile = machineName.equals(config.getMachineName());
			boolean isOperationAllowed = !disallowedOperationIdentifiers.contains(operationName);
			boolean isOutdatedActionFile = isOutdatedActionFile(actionRemoteFile);

			if (!isOwnActionFile) {
				if (!isOutdatedActionFile) {
					if (isOperationAllowed) {
						logger.log(Level.INFO, "- Action file from other client, but allowed operation; not marking running; " + actionRemoteFile);
					}
					else {
						logger.log(Level.INFO, "- Action file from other client; --> marking operations running (!); " + actionRemoteFile);
						otherRemoteOperationsRunning = true;
					}
				}
				else {
					logger.log(Level.INFO, "- Action file outdated; ignoring " + actionRemoteFile);
				}
			}
		}

		return otherRemoteOperationsRunning;
	}

	private void cleanActionFiles() throws StorageException {
		logger.log(Level.INFO, "Cleaning own old action files ...");
		Map<String, ActionRemoteFile> actionRemoteFiles = transferManager.list(ActionRemoteFile.class);

		for (ActionRemoteFile actionRemoteFile : actionRemoteFiles.values()) {
			String machineName = actionRemoteFile.getClientName();

			boolean isOwnActionFile = machineName.equals(config.getMachineName());
			boolean isOutdatedActionFile = isOutdatedActionFile(actionRemoteFile);

			if (isOwnActionFile) {
				logger.log(Level.INFO, "- Deleting own action file " + actionRemoteFile + " ...");
				transferManager.delete(actionRemoteFile);
			}
			else if (isOutdatedActionFile) {
				logger.log(Level.INFO, "- Action file from other client is OUTDATED; deleting " + actionRemoteFile + " ...");
				transferManager.delete(actionRemoteFile);
			}
			else {
				logger.log(Level.INFO, "- Action file is current; ignoring " + actionRemoteFile + " ...");
			}
		}
	}

	/**
	 * This method is used to determine how a database file should be named when
	 * it is about to be uploaded. It returns the number of the newest database file (which is the
	 * highest number).
	 *
	 * @param client name of the client for which we want to upload a database version.
	 * @param knownDatabases all DatabaseRemoteFiles present in the repository
	 * @return the largest database fileversion number.
	 */
	protected long getNewestDatabaseFileVersion(String client, List<DatabaseRemoteFile> knownDatabases) {
		// TODO [low] This could be done via the "known_databases" database table

		// Obtain last known database file version number and increment it
		long clientVersion = 0;

		for (DatabaseRemoteFile databaseRemoteFile : knownDatabases) {
			if (databaseRemoteFile.getClientName().equals(client)) {
				clientVersion = Math.max(clientVersion, databaseRemoteFile.getClientVersion());
			}
		}

		return clientVersion;
	}

	protected long getLastRemoteCleanupNumber(Map<String, CleanupRemoteFile> cleanupFiles) {
		long cleanupNumber = 0;

		// Find the number of the last cleanup
		for (CleanupRemoteFile cleanupRemoteFile : cleanupFiles.values()) {
			cleanupNumber = Math.max(cleanupNumber, cleanupRemoteFile.getCleanupNumber());
		}

		return cleanupNumber;
	}

	private boolean isOutdatedActionFile(ActionRemoteFile actionFile) {
		// TODO [low] Even though this is UTC and the times frames are large, this might be an issue with different timezones or wrong system clocks
		return System.currentTimeMillis() - ACTION_FILE_DELETE_TIME > actionFile.getTimestamp();
	}

	private void disconnectTransferManager() {
		try {
			transferManager.disconnect();
		}
		catch (StorageException e) {
			logger.log(Level.FINE, "Could not disconnect the transfermanager", e);
		}
	}

	private void clearCache() {
		config.getCache().clear();
	}
}