Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0009ffc25c61f81bfe59d61ba7d17faba919cb6b (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
/*******************************************************************************
 * Copyright (c) 2012, 2015 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.operations;

import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.tcf.protocol.IToken;
import org.eclipse.tcf.protocol.Protocol;
import org.eclipse.tcf.services.IFileSystem;
import org.eclipse.tcf.services.IFileSystem.DoneSetStat;
import org.eclipse.tcf.services.IFileSystem.FileSystemException;
import org.eclipse.tcf.te.tcf.filesystem.core.internal.FSTreeNode;
import org.eclipse.tcf.te.tcf.filesystem.core.nls.Messages;

/**
 * The operation implementation to commit the new attributes to
 * the file system node.
 */
public class OpCommitAttr extends AbstractOperation {
	protected FSTreeNode fNode;
	protected IFileSystem.FileAttrs fAttributes;

	public OpCommitAttr(FSTreeNode node, IFileSystem.FileAttrs attrs) {
		fNode = node;
		fAttributes = attrs;
	}

	@Override
	public IStatus doRun(IProgressMonitor monitor) {
		monitor.beginTask(getName(), IProgressMonitor.UNKNOWN);

		final TCFResult<?> result = new TCFResult<Object>();
		final IFileSystem fileSystem = fNode.getRuntimeModel().getFileSystem();
		if (fileSystem == null) {
			return result.setCancelled();
		}
		Protocol.invokeLater(new Runnable() {
			@Override
			public void run() {
				if (!result.checkCancelled()) {
					String path = fNode.getLocation(true);
					fileSystem.setstat(path, fAttributes, new DoneSetStat() {
						@Override
						public void doneSetStat(IToken token, FileSystemException error) {
							if (error != null) {
								result.setError(Messages.OpCommitAttr_error_cannotSetAttributes, error);
							} else {
								fNode.setAttributes(fAttributes, true);
								result.setDone(null);
							}
						}
					});
				}
			}
		});
		return result.waitDone(monitor);
	}

	@Override
	public String getName() {
		return Messages.OpCommitAttr_name + fNode.getName();
	}
}

Back to the top