This page presents the source code for a Java server that implements our file system and communicates with the client we wrote earlier. The code is fully functional, apart from the required interlocking for threads.
Note that the server is remarkably free of code that relates to distribution: most of the server code is simply application logic that would be present just the same for a non-distributed version. Again, this is one of the major advantages of Ice: distribution concerns are kept away from application code so that you can concentrate on developing application logic instead of networking infrastructure.
The server code shown here is not quite correct as it stands: if two clients access the same file in parallel, each via a different thread, one thread may read the |
On this page:
We have now seen enough of the server-side Java mapping to implement a server for our file system. (You may find it useful to review these Slice definitions before studying the source code.)
Our server is composed of three source files:
Server.java
Filesystem/DirectoryI.java
Directory
servants.Filesystem/FileI.java
File
servants.
Our server main program, in the file Server.java
, uses the Ice.Application
class. The run
method installs a shutdown hook, creates an object adapter, instantiates a few servants for the directories and files in the file system, and then activates the adapter. This leads to a main program as follows:
{zcode:java} import Filesystem.*; public class Server extends Ice.Application { public int run(String[] args) { // // Terminate cleanly on receipt of a signal // shutdownOnInterrupt(); // Create an object adapter (stored in the _adapter // static members) // Ice.ObjectAdapter adapter = communicator().createObjectAdapterWithEndpoints( "SimpleFilesystem", "default -p 10000"); DirectoryI._adapter = adapter; FileI._adapter = adapter; // Create the root directory (with name "/" and no parent) // DirectoryI root = new DirectoryI("/", null); // Create a file "README" in the root directory // File file = new FileI("README", root); String[] text; text = new String[] { "This file system contains a collection of poetry." }; try { file.write(text, null); } catch (GenericError e) { System.err.println(e.reason); } // Create a directory "Coleridge" in the root directory // DirectoryI coleridge = new DirectoryI("Coleridge", root); // Create a file "Kubla_Khan" in the Coleridge directory // file = new FileI("Kubla_Khan", coleridge); text = new String[]{ "In Xanadu did Kubla Khan", "A stately pleasure-dome decree:", "Where Alph, the sacred river, ran", "Through caverns measureless to man", "Down to a sunless sea." }; try { file.write(text, null); } catch (GenericError e) { System.err.println(e.reason); } // All objects are created, allow client requests now // adapter.activate(); // Wait until we are done // communicator().waitForShutdown(); return 0; } public static void main(String[] args) { Server app = new Server(); System.exit(app.main("Server", args)); } } {zcode} |
The code imports the contents of the Filesystem
package. This avoids having to continuously use fully-qualified identifiers with a Filesystem.
prefix.
The next part of the source code is the definition of the Server
class, which derives from Ice.Application
and contains the main application logic in its run
method. Much of this code is boiler plate that we saw previously: we create an object adapter, and, towards the end, activate the object adapter and call waitForShutdown
.
The interesting part of the code follows the adapter creation: here, the server instantiates a few nodes for our file system to create the structure shown below:
A small file system.
As we will see shortly, the servants for our directories and files are of type DirectoryI
and FileI
, respectively. The constructor for either type of servant accepts two parameters, the name of the directory or file to be created and a reference to the servant for the parent directory. (For the root directory, which has no parent, we pass a null parent.) Thus, the statement
{zcode:java} DirectoryI root = new DirectoryI("/", null); {zcode} |
creates the root directory, with the name "/"
and no parent directory.
Here is the code that establishes the structure in the above illustration:
{zcode:java} // Create the root directory (with name "/" and no parent) // DirectoryI root = new DirectoryI("/", null); // Create a file "README" in the root directory // File file = new FileI("README", root); String[] text; text = new String[] { "This file system contains a collection of poetry." }; try { file.write(text, null); } catch (GenericError e) { System.err.println(e.reason); } // Create a directory "Coleridge" in the root directory // DirectoryI coleridge = new DirectoryI("Coleridge", root); // Create a file "Kubla_Khan" in the Coleridge directory // file = new FileI("Kubla_Khan", coleridge); text = new String[]{ "In Xanadu did Kubla Khan", "A stately pleasure-dome decree:", "Where Alph, the sacred river, ran", "Through caverns measureless to man", "Down to a sunless sea." }; try { file.write(text, null); } catch (GenericError e) { System.err.println(e.reason); } {zcode} |
We first create the root directory and a file README
within the root directory. (Note that we pass a reference to the root directory as the parent when we create the new node of type FileI
.)
The next step is to fill the file with text:
{zcode:java} String[] text; text = new String[] { "This file system contains a collection of poetry." }; try { file.write(text, null); } catch (GenericError e) { System.err.println(e.reason); } {zcode} |
Recall that Slice sequences by default map to Java arrays. The Slice type Lines
is simply an array of strings; we add a line of text to our README
file by initializing the text
array to contain one element.
Finally, we call the Slice write
operation on our FileI
servant by writing:
{zcode:java} file.write(text, null); {zcode} |
This statement is interesting: the server code invokes an operation on one of its own servants. Because the call happens via a reference to the servant (of type FileI
) and not via a proxy (of type FilePrx
), the Ice run time does not know that this call is even taking place — such a direct call into a servant is not mediated by the Ice run time in any way and is dispatched as an ordinary Java function call.
In similar fashion, the remainder of the code creates a subdirectory called Coleridge
and, within that directory, a file called Kubla_Khan
to complete the structure in the illustration listed above.
FileI
Servant Class in JavaOur FileI
servant class has the following basic structure:
{zcode:java} public class FileI extends _FileDisp { // Constructor and operations here... public static Ice.ObjectAdapter _adapter; private String _name; private DirectoryI _parent; private String[] _lines; } {zcode} |
The class has a number of data members:
_adapter
_name
_parent
_lines
The _name
and _parent
data members are initialized by the constructor:
{zcode:java} public FileI(String name, DirectoryI parent) { _name = name; _parent = parent; assert(_parent != null); // Create an identity // Ice.Identity myID = new Ice.Identity(); myID.name = java.util.UUID.randomUUID().toString(); // Add the identity to the object adapter // _adapter.add(this, myID); // Create a proxy for the new node and // add it as a child to the parent // NodePrx thisNode = NodePrxHelper.uncheckedCast(_adapter.createProxy(myID)); _parent.addChild(thisNode); } {zcode} |
After initializing the _name
and _parent
members, the code verifies that the reference to the parent is not null because every file must have a parent directory. The constructor then generates an identity for the file by calling java.util.UUID.randomUUID
and adds itself to the servant map by calling ObjectAdapter.add
. Finally, the constructor creates a proxy for this file and calls the addChild
method on its parent directory. addChild
is a helper function that a child directory or file calls to add itself to the list of descendant nodes of its parent directory. We will see the implementation of this function in DirectoryI
Methods.
The remaining methods of the FileI
class implement the Slice operations we defined in the Node
and File
Slice interfaces:
{zcode:java} // Slice Node::name() operation public String name(Ice.Current current) { return _name; } // Slice File::read() operation public String[] read(Ice.Current current) { return _lines; } // Slice File::write() operation public void write(String[] text, Ice.Current current) throws GenericError { _lines = text; } {zcode} |
The name
method is inherited from the generated Node
interface (which is a base interface of the _FileDisp
class from which FileI
is derived). It returns the value of the _name
member.
The read
and write
methods are inherited from the generated File
interface (which is a base interface of the _FileDisp
class from which FileI
is derived) and return and set the _lines
member.
DirectoryI
Servant Class in JavaThe DirectoryI
class has the following basic structure:
{zcode:java} package Filesystem; public final class DirectoryI extends _DirectoryDisp { // Constructor and operations here... public static Ice.ObjectAdapter _adapter; private String _name; private DirectoryI _parent; private java.util.ArrayList<NodePrx> _contents = new java.util.ArrayList<NodePrx>(); } {zcode} |
DirectoryI
Data MembersAs for the FileI
class, we have data members to store the object adapter, the name, and the parent directory. (For the root directory, the _parent
member holds a null reference.) In addition, we have a _contents
data member that stores the list of child directories. These data members are initialized by the constructor:
{zcode:java} public DirectoryI(String name, DirectoryI parent) { _name = name; _parent = parent; // Create an identity. The parent has the // fixed identity "RootDir" // Ice.Identity myID = new Ice.Identity(); myID.name = _parent != null ? java.util.UUID.randomUUID().toString() : "RootDir"; // Add the identity to the object adapter // _adapter.add(this, myID); // Create a proxy for the new node and add it as a // child to the parent // NodePrx thisNode = NodePrxHelper.uncheckedCast(_adapter.createProxy(myID)); if (_parent != null) _parent.addChild(thisNode); } {zcode} |
DirectoryI
ConstructorThe constructor creates an identity for the new directory by calling java.util.UUID.randomUUID
. (For the root directory, we use the fixed identity "RootDir"
.) The servant adds itself to the servant map by calling ObjectAdapter.add
and then creates a reference to itself and passes it to the addChild
helper function.
DirectoryI
MethodsaddChild
adds the passed reference to the _contents
list:
{zcode:java} void addChild(NodePrx child) { _contents.add(child); } {zcode} |
The remainder of the operations, name
and list
, are equally trivial:
{zcode:java} public String name(Ice.Current current) { return _name; } // Slice Directory::list() operation public NodePrx[] list(Ice.Current current) { NodePrx[] result = new NodePrx[_contents.size()]; _contents.toArray(result); return result; } {zcode} |
Note that the _contents
member is of type java.util.ArrayList<NodePrx>
, which is convenient for the implementation of the addChild
method. However, this requires us to convert the list into a Java array in order to return it from the list
operation.