blob: 6f91adcdfb918aa841b56bcb6e16e70dc114cf57 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html lang="en">
<HEAD>
<meta name="copyright" content="Copyright (c) IBM Corporation and others 2000, 2005. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
<LINK REL="STYLESHEET" HREF="../book.css" CHARSET="ISO-8859-1" TYPE="text/css">
<TITLE>
Resources and the file system
</TITLE>
<link rel="stylesheet" type="text/css" HREF="../book.css">
</HEAD>
<BODY BGCOLOR="#ffffff">
<H2>
Resources and the file system</H2>
<P >
When the platform is running and the resources plug-in is active, the workspace is represented by an instance of
<b><a href="../reference/api/org/eclipse/core/resources/IWorkspace.html"> IWorkspace</a></b>, which provides
protocol for accessing the resources it contains. An <b><a href="../reference/api/org/eclipse/core/resources/IWorkspace.html"> IWorkspace</a></b>
instance represents an associated collection of files and directories in one or more file systems. You can access the
workspace from the resources plug-in class (defined in
<b><a href="../reference/api/org/eclipse/core/resources/package-summary.html">org.eclipse.core.resources</a></b>). </P>
<pre>
IWorkspace workspace = ResourcesPlugin.getWorkspace();
</pre>
<P >
When the resources plug-in is not running, the workspace exists solely in the file
system and is viewed or manipulated by the user via standard file-based tools.
Let's look at what a workspace looks like on disk as we explain the
resources plug-in API. </P>
<H3>
Our sample tree on disk</H3>
<P >
When you started the platform SDK, you were prompted to provide a <b>workspace</b>
directory. This is the directory where various plug-ins store interesting metadata
that is unique to a particular instance of the platform. By default, the resources
plug-in stores each project in a sub-directory of the workspace directory.
Within these subdirectories are the folders and files that each project contains. </P>
<P >
Let's say your chose the directory <b>c:\MySDK\workspace</b> for your workspace.
Inside this directory we find subdirectories named after the workspace's projects,
<b> MyWeb</b> and <b>MyServlet</b>. These are called the projects' content directories.
Content directories are created by the platform when the user creates a project.</P>
<P >
Inside each directory, we find the files and folders within the project, laid out exactly the same as they are in the
workspace's resource tree. All file names are the same, and the files' contents are the same
whether accessed from the file system or from the workspace. The only surprise
is the <b>.project</b> file, explained in a moment.</P>
<pre>
C:\MySDK\workspace (workspace root)
.metadata\ (platform metadata directory
MyWeb\ (project content directory for MyWeb)
.project
index.html
images\
logo.png
MyServlet\ (project content directory for MyServlet)
.project
src\
main.java
bin\
main.class</pre>
<P >
The platform has a special <b>.metadata</b> directory for holding platform internal information. The
<b>.metadata</b> directory of a workspace is considered to be a &quot;black box.&quot; Important information about the
workspace structure, such as a project's references or a resource's properties,
is stored in the metadata portion of the workspace and should only be accessed by tools through the
platform API.&nbsp; These files should never be edited or manipulated using
generic file system API. </P>
<P >In addition, each project has its own <b>.project</b> file, where metadata
about the project is kept.&nbsp; This file is basically an on-disk equivalent of
the information found in a project's
<b><a href="../reference/api/org/eclipse/core/resources/IProjectDescription.html">IProjectDescription</a></b>.&nbsp;&nbsp; </P>
<P >Apart from the <b>.metadata</b> directory and the <b>.project</b> files, the folders and files in the workspace directory are fair game for other
tools.&nbsp; The files and folders can be manipulated by non-integrated tools, such as text editors and file system
utilities.&nbsp; The only issue is that the user must be careful when editing
these files both in the workbench and externally.&nbsp; (This is no
different than when a user edits a file using two independent stand-alone
tools.)&nbsp; The workbench provides refresh operations to reconcile the
workspace view of resources with the actual state in the file system and
there is an option to periodically refresh the workspace based on the state of the file system.</P>
<H3>
Our sample tree in code</H3>
<P >
The resource API allows us to manipulate this resource tree in code. Here we will look at some code snippets for a quick taste of the resource
API. The resource API is defined in a series of interfaces in
<b><a href="../reference/api/org/eclipse/core/resources/package-summary.html">org.eclipse.core.resources</a></b>. There are interfaces for all of the resource types, such as
<b><a href="../reference/api/org/eclipse/core/resources/IProject.html">IProject</a></b>,
<b><a href="../reference/api/org/eclipse/core/resources/IFolder.html">IFolder</a></b>, and
<b><a href="../reference/api/org/eclipse/core/resources/IFile.html">IFile</a></b>. Extensive common protocol is defined in
<b><a href="../reference/api/org/eclipse/core/resources/IResource.html">IResource</a></b>. We also make use of the
<b><a href="../reference/api/org/eclipse/core/runtime/package-summary.html">org.eclipse.core.runtime</a></b> interface
<b><a href="../reference/api/org/eclipse/core/runtime/IPath.html">IPath</a></b>, which represents segmented paths such as resource or file system paths.</P>
<P >
Manipulating resources is very similar to manipulating files using <b> java.io.File</b>.&nbsp;
The API is based on <b>handles</b>.&nbsp; When you use API like <b>getProject</b>
or <b>getFolder</b>, you are returned a handle to the
resource.&nbsp;&nbsp; There is no guarantee or requirement that the resource itself exists
until you try to do something with the handle.&nbsp; If you expect a resource to
exist, you can use <b>exists</b> method to ensure
this is the case.&nbsp;&nbsp; </P>
<P >
To navigate the workspace from a plug-in, we must first obtain the <a href="../reference/api/org/eclipse/core/resources/IWorkspaceRoot.html"><b>IWorkspaceRoot</b></a>, which represents the top of the resource hierarchy in the workspace.</P>
<pre>
IWorkspaceRoot myWorkspaceRoot = ResourcesPlugin.getWorkspace().getRoot();</pre>
<P >
Once we have a workspace root, we can access the projects in the workspace. </P>
<pre>
IProject myWebProject = myWorkspaceRoot.getProject(&quot;MyWeb&quot;);
// open if necessary
if (myWebProject.exists() &amp;&amp; !myWebProject.isOpen())
myWebProject.open(null);
</pre>
<P >
Before we can manipulate a project, we must open it. Opening the project reads the project's
structure from disk and creates the in-memory object representation of the project's resource tree. Opening a project is an explicit operation since each open project consumes memory to represent the resource tree
internally and open projects participate in various resource lifecycle events
(such as building) which can be lengthy.&nbsp; In general, closed projects
cannot be accessed and will appear empty even though the resources are still present in the file system.</P>
<P >
You'll notice that many of these resource examples pass a <b> null</b> parameter when manipulating resources.
Many resource operations are potentially heavyweight enough to warrant progress reporting and
user cancellation. If your code has a user interface, you will typically pass an <b><a href="../reference/api/org/eclipse/core/runtime/IProgressMonitor.html"> IProgressMonitor</a></b>,
which allows the
resources plug-in to report progress as the resource is manipulated and allows the user to cancel the operation if desired.&nbsp;
For now, we simply pass <b>null</b>, indicating no
progress monitor.</P>
<P >
Once we have an open project, we can access its folders and files, as well as create additional ones.&nbsp;
In the following example we create a file resource from the contents of a file
located outside of our workspace. </P>
<pre>
IFolder imagesFolder = myWebProject.getFolder(&quot;images&quot;);
if (imagesFolder.exists()) {
// create a new file
IFile newLogo = imagesFolder.getFile(&quot;newLogo.png&quot;);
FileInputStream fileStream = new FileInputStream(
&quot;c:/MyOtherData/newLogo.png&quot;);
newLogo.create(fileStream, false, null);
// create closes the file stream, so no worries.
}
</pre>
<P >
In the example above, the
first line obtains a handle to the images folder.&nbsp; We must check that the
folder <b>exists</b> before we can do anything
interesting with it.&nbsp; Likewise, when we get the file <b>newLogo</b>,
the handle does not represent a real file until we create the file in the last
line.&nbsp; In this example, we create the file by populating it with the
contents of <b>logo.png</b>. </P>
<P >
The next snippet is similar to the previous one, except that it copies the <b> newLogo</b> file from the original logo rather than create a new
one from its contents.</P>
<pre>
IFile logo = imagesFolder.getFile(&quot;logo.png&quot;);
if (logo.exists()) {
IPath newLogoPath = new Path(&quot;newLogo.png&quot;);
logo.copy(newLogoPath, false, null);
IFile newLogo = imagesFolder.getFile(&quot;newLogo.png&quot;);
...
}
</pre>
<P >
Finally, we'll create another images folder and move the newly created file to it. We rename the file as a side effect of moving it.</P>
<pre>
...
IFolder newImagesFolder = myWebProject.getFolder(&quot;newimages&quot;);
newImagesFolder.create(false, true, null);
IPath renamedPath = newImagesFolder.getFullPath().append(&quot;renamedLogo.png&quot;);
newLogo.move(renamedPath, false, null);
IFile renamedLogo = newImagesFolder.getFile(&quot;renamedLogo.png&quot;);
</pre>
<P>Many of the resource API methods include a <b>force</b>
boolean flag which specifies whether resources that are out of synch with the
corresponding files in the file system will be updated anyway.&nbsp; See <a href="../reference/api/org/eclipse/core/resources/IResource.html"><b>IResource</b></a>
for more information.&nbsp; You can also use <a href="../reference/api/org/eclipse/core/resources/IResource.html"><b>IResource</b></a><b>.isSynchronized
</b>to determine whether a particular resource is in synch with the file system.</P>
<H3>
<a name="mapping">
Mapping resources to disk locations</a></H3>
<P >
In the sample resource tree, we've assumed that all of the project content directories are
in the <b>workspace</b> directory underneath the platform root
directory (<b>C:\MySDK\workspace)</b>. This is the default configuration
for projects.&nbsp; However, a project's content directory can be mapped to any
arbitrary directory in some backing file system, perhaps even on a different machine.</P>
<P >
The ability to map the location of a project independent of other projects allows the user to
store the contents of a project in a place that makes sense for the project and the project team.
A project's content directory should be considered &quot;out in the open.&quot;
This means that users can create, modify, and delete resources
by using the workbench and plug-ins, or by directly using file system based tools and editors.</P>
<P> Resource path names are not complete file system paths. Resource paths are always
based on the project's location (usually the <b>workspace</b>
directory).&nbsp; To obtain the full file system path to a resource, you must query its location using
<b>
<a href="../reference/api/org/eclipse/core/resources/IResource.html">IResource</a>.getLocationURI.&nbsp;
</b>Howevever, you cannot use
<b> <a href="../reference/api/org/eclipse/core/resources/IProjectDescription.html">IProjectDescription</a>.setLocation
</b>to change its location, because that method is just a simple setter for a
data structure.&nbsp;&nbsp;</P>
<P>Conversely, if you want to get the corresponding resource object given a file
system path, you can use <a href="../reference/api/org/eclipse/core/resources/IWorkspaceRoot.html"><b>IWorkspaceRoot</b></a>.<b>findFilesForLocationURI</b>
or <a href="../reference/api/org/eclipse/core/resources/IWorkspaceRoot.html"><b>IWorkspaceRoot</b></a>.<b>findContainersForLocationURI</b>.</P>
<H3>
Resource API and the file system</H3>
<P >
When we use the resources API to modify our workspace's resource tree, the files
are changed in the file system in addition to updating our resource objects. What about changes to
resource files that happen outside of the platform's API? </P>
<P >
External changes to resources will not be reflected in the workspace and resource objects until
detected by the resources plug-in. The resources plug-in also uses a mechanism appropriate for
each particular native operating system for discovering external changes made in the file system.
In addition, clients can use resource API to
reconcile workspace and resource objects with the local file system quietly and without user intervention.
The user can also explicitly force a refresh in the resource navigator view of the workbench. </P>
<p>Many of the methods in the resource APIs include a force parameter which specifies how resources that
are out of sync with the file system should be handled. The API Reference for each method provides specific information
about this parameter. Additional methods in the API allow programmatic control of file system refresh, such as
<b>IResource.refreshLocal(int depth, IProgressMonitor monitor)</b>. See
<b><a href="../reference/api/org/eclipse/core/resources/IResource.html">IResource</a></b>
for information on correct usage and costs.</p>
<p>
Plug-ins that wish to supply their own mechanism for periodically refreshing the workspace based on
the state of the external file system may do so using the
<a href="../reference/extension-points/org_eclipse_core_resources_refreshProviders.html"><b>org.eclipse.core.resources.refreshProviders</b></a>
extension point. See <a href="resAdv_refresh.htm">Refresh providers</a> for more information. </p>
</BODY>
</HTML>