Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d194fb97e5c58715f03c3ef80c22e609fb5a7f38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*******************************************************************************
 * Copyright (c) 2012 Wind River Systems, Inc. and others. All rights reserved.
 * This program and the accompanying materials are made available under the terms
 * of the Eclipse Public License v1.0 which accompanies this distribution, and is
 * available at http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 * Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.te.tcf.filesystem.core.internal.callbacks;

import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.OperationCanceledException;
import org.eclipse.core.runtime.Status;
import org.eclipse.osgi.util.NLS;
import org.eclipse.tcf.protocol.IChannel;
import org.eclipse.tcf.protocol.IPeer;
import org.eclipse.tcf.services.IFileSystem;
import org.eclipse.tcf.te.runtime.interfaces.callback.ICallback;
import org.eclipse.tcf.te.tcf.core.Tcf;
import org.eclipse.tcf.te.tcf.core.interfaces.IChannelManager;
import org.eclipse.tcf.te.tcf.filesystem.core.activator.CorePlugin;
import org.eclipse.tcf.te.tcf.filesystem.core.internal.exceptions.TCFFileSystemException;
import org.eclipse.tcf.te.tcf.filesystem.core.model.FSTreeNode;
import org.eclipse.tcf.te.tcf.filesystem.core.nls.Messages;

/**
 * The callback to process the channel opened event for refreshing the state of a
 * file system node.
 */
public class RefreshStateDoneOpenChannel extends CallbackBase implements IChannelManager.DoneOpenChannel{
	// The node to be refreshed.
	FSTreeNode node;
	// The callback after the refreshing is done.
	ICallback callback;

	/**
	 * Create an instance.
	 */
	public RefreshStateDoneOpenChannel(FSTreeNode node, ICallback callback) {
		this.node = node;
		this.callback = callback;
	}

	/*
	 * (non-Javadoc)
	 * @see org.eclipse.tcf.te.tcf.core.interfaces.IChannelManager.DoneOpenChannel#doneOpenChannel(java.lang.Throwable, org.eclipse.tcf.protocol.IChannel)
	 */
	@Override
	public void doneOpenChannel(Throwable error, IChannel channel) {
		IPeer peer = node.peerNode.getPeer();
		if (error != null) {
			if(channel != null) {
				Tcf.getChannelManager().closeChannel(channel);
			}
			if (!(error instanceof OperationCanceledException)) {
				String message = getErrorMessage(error);
				IStatus status = new Status(IStatus.ERROR, CorePlugin.getUniqueIdentifier(), message, error);
				invokeCallback(status);
			}
		}
		else {
			IFileSystem service = channel.getRemoteService(IFileSystem.class);
			if (service != null) {
				String path = node.getLocation(true);
				service.stat(path, new RefreshStateDoneStat(node, channel, callback));
			}
			else {
				Tcf.getChannelManager().closeChannel(channel);
				String message = NLS.bind(Messages.Operation_NoFileSystemError, peer.getID());
				IStatus status = new Status(IStatus.ERROR, CorePlugin.getUniqueIdentifier(), message, new TCFFileSystemException(IStatus.ERROR, message));
				invokeCallback(status);
			}
		}
	}

	/**
	 * Invoke the callback using the specified status, if the callback
	 * is not null.
	 *
	 * @param status The processing result.
	 */
	private void invokeCallback(IStatus status) {
		if(callback != null) {
			callback.done(this, status);
		}
    }
}

Back to the top