blob: cfb3189bdb23ebbd8a8907a008a2983ba8baf3b7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2008 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.dltk.core.internal.environment;
import java.io.File;
import java.io.IOException;
import java.net.URI;
import org.eclipse.core.filesystem.EFS;
import org.eclipse.core.filesystem.IFileSystem;
import org.eclipse.core.filesystem.URIUtil;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Platform;
import org.eclipse.dltk.core.DLTKCore;
import org.eclipse.dltk.core.environment.EnvironmentPathUtils;
import org.eclipse.dltk.core.environment.IEnvironment;
import org.eclipse.dltk.core.environment.IFileHandle;
public class LocalEnvironment implements IEnvironment, IAdaptable {
public static final String ENVIRONMENT_ID = DLTKCore.PLUGIN_ID
+ ".environment.localEnvironment"; //$NON-NLS-1$
private static IEnvironment instance = new LocalEnvironment();
private IFileSystem fs;
public LocalEnvironment() {
this.fs = EFS.getLocalFileSystem();
}
public IFileHandle getFile(IPath path) {
if (path == null) {
return null;
}
return new EFSFileHandle(this, fs.getStore(path));
}
public String getId() {
return ENVIRONMENT_ID;
}
public static IEnvironment getInstance() {
return instance;
}
public String getSeparator() {
return File.separator;
}
public char getSeparatorChar() {
return File.separatorChar;
}
public String getName() {
return "Localhost"; //$NON-NLS-1$
}
public String convertPathToString(IPath path) {
return EnvironmentPathUtils.getLocalPath(path).toOSString();
}
public Object getAdapter(Class adapter) {
return Platform.getAdapterManager()
.loadAdapter(this, adapter.getName());
}
public URI getURI(IPath location) {
return URIUtil.toURI(location);
}
public IFileHandle getFile(URI locationURI) {
return new EFSFileHandle(this, fs.getStore(locationURI));
}
public String getPathsSeparator() {
return Character.toString(getPathsSeparatorChar());
}
public char getPathsSeparatorChar() {
return Platform.getOS().equals(Platform.OS_WIN32) ? ';' : ':';
}
public String getCanonicalPath(IPath path) {
try {
return path.toFile().getCanonicalFile().toString();
} catch (IOException e) {
if (DLTKCore.DEBUG) {
e.printStackTrace();
}
return path.toOSString();
}
}
}