/*
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* - Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
*
* - Neither the name of Oracle nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* This source code is provided to illustrate the usage of a given feature
* or technique and has been deliberately simplified. Additional steps
* required for a production-quality application, such as security checks,
* input validation and proper error handling, might not be present in
* this sample code.
*/
/**
* Client represents a remote connection to the chat server.
* It contains methods for reading and writing messages from the
* channel.
* Messages are considered to be separated by newline, so incomplete
* messages are buffered in the {@code Client}.
*
* All reads and writes are asynchronous and uses the nio2 asynchronous
* elements.
*/
class Client {
private boolean writing = false;
}
/**
* Enqueues a write of the buffer to the channel.
* The call is asynchronous so the buffer is not safe to modify after
* passing the buffer here.
*
* @param buffer the buffer to send to the channel
*/
boolean threadShouldWrite = false;
synchronized(queue) {
// Currently no thread writing, make this thread dispatch a write
if (!writing) {
writing = true;
threadShouldWrite = true;
}
}
if (threadShouldWrite) {
}
}
private void writeFromQueue() {
synchronized (queue) {
writing = false;
}
}
// No new data in buffer to write
if (writing) {
}
}
if (buffer.hasRemaining()) {
} else {
// Go back and check if there is new data to write
}
}
}
});
}
/**
* Sends a message
* @param string the message
*/
}
/**
* Send a message from a specific client
* @param client the message is sent from
* @param message to send
*/
}
}
/**
* Enqueue a read
* @param completionHandler callback on completed read
*/
return;
}
}
/**
* Closes the channel
*/
public void close() {
try {
} catch (IOException e) {
e.printStackTrace();
}
}
/**
* Run the current states actions.
*/
public void run() {
}
}
}
return userName;
}
synchronized (messageBuffer) {
}
}
/**
* @return the next newline separated message in the buffer. null is returned if the buffer
* doesn't contain any newline.
*/
synchronized(messageBuffer) {
if (nextNewline == -1) {
return null;
}
return message;
}
}
}