tuplespaces
.public class TupleSpace
public TupleSpace()
public Object[] get(Object[] pattern)
pattern
(which may not be null
)
from tuple space. Block until one is available. A tuple matches a
pattern if both have the same amount of entries and every entry
matches. A null
entry in the pattern matches any object
in that entry in the tuple. Any other object p
in the
pattern matches any object t
in the corresponding entry
in the tuple for which p.equals(t)
. The semantics of
equals
are those defined in the Java API description.public void put(Object[] tuple)
tuple
in tuple space. tuple
is
an array of any length (except zero) and is not
null
. tuple
may not contain null
values. You
may assume that objects stored in the tuple space do not change
(especially not in regard to equals
or
hashCode
).
String
s)
to which messages can be sent. It is also possible to listen to a
channel. When a listener connects to a channel, it is sent a log of the
n last messages sent to the
channel (where n
is a value specified at server startup). After that, the listener
receives all messages sent to the channel until it leaves the channel.chat
:public class ChatServer
public ChatServer(int rows, String[] channelNames)
String
s in channelNames
and a buffer
of rows
messages for each channel (the rows
last messages should be sent to new listeners connecting to the channel).public void writeMessage(String channel, String message)
message
to channel channel
.public ChatListener openConnection(String channel)
channel
.public class ChatListener
ChatListener
is used by only one
thread.
public String getNextMessage()
public void closeConnection()
ChatListener
.null
.
For testing purposes, you can use this simple chat
system user interface. To start it, run:java chatui.ChatUI
<buffer
size> [<channel name 1> [<channel name 2> [...]]]
java.lang
, not java.util.concurrent
).
Inefficient solutions, such as polling and busy-waiting, will be
rejected. Use of unsafe methods such as java.lang.Thread.destroy()
will
also lead to rejection.ChatListener
is used by only one thread at a time. However, a ChatServer
and its associated ChatListener
s may be used by multiple
threads.put
and get
operations in this simplified implementation should not fail. In a real
distributed tuple space implementation, many bad things can happen such
as connection failures and timeouts.
tuplespaces/ |
The Java (version 1.4 or earlier)
source
code of your tuple space implementation (the directory corresponds to
the tuplespaces
package). |
chat/ |
The Java (version 1.4 or earlier)
source
code of your chat system implementation (the directory corresponds to
the chat
package). |
description.pdf |
A PDF containing
the
documentation for your solution. |
@students.hut.fi
.