Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this method to write messages to a socket:

public void sendMessage(byte[] msgB) {
    try {
        synchronized (writeLock) {
            log.debug("Sending message (" + msgB.length + "): " + HexBytes.toHex(msgB));
            ous.write(HEADER_MSG);
            ous.writeInt(msgB.length);
            ous.write(msgB);
            ous.flush();
        }
    } catch (IOException e) {
        throw new RuntimeException(e);
    }
}

Now a thread called Bob would like to close the socket at some undeterministic moment X, which means that there may still be threads waiting on writeLock to send their message, and there may even be one thread in the middle of writing it.

I can solve the latter by letting Bob acquire writeLock before closing the socket, but I could still lose messages that have not yet begun sending, because as far as I know synchronized is not fair, Bob could get the lock before some other thread that has been waiting longer.

What I need is that all calls made to sendMessage before X do their job normally, and calls made after X throw an error. How can I do this?

  • Specifics: Bob is the thread reading from the socket's input stream and X is when a "close" message is received on that stream.
share|improve this question

3 Answers

You can use an executor here. Since each send message is synchronized (I am assuming on a commonly shared object) you can use thread confinement.

static final ExecutorService executor = Executors.newSingleThreadExecutor();

public void sendMessage(byte[] msgB) {
    executor.submit(new Runnable() {
        public void run() {
            try {
                log.debug("Sending message (" + msgB.length + "): " + HexBytes.toHex(msgB));
                ous.write(HEADER_MSG);
                ous.writeInt(msgB.length);
                ous.write(msgB);
                ous.flush();
            } catch (IOException e) {
                throw new RuntimeException(e);
            }
        }
    });
}
public static void atMomentX(){
    executor.shutdown();
}

When finished another thread can invoke atMomentX();

From the javadoc the shutdown method says:

Initiates an orderly shutdown in which previously submitted tasks are executed, but no new tasks will be accepted. Invocation has no additional effect if already shut down.

share|improve this answer
I used my own method because I don't want to add another thread to a server system which already has hundreds, but upvoted anyway because it's technically the correct way to do it. – Bart van Heukelom Nov 18 '10 at 16:07

Consider using a single-threaded ExecutorService to perform writing of messages. Sending threads simply attempt to "send" their message by calling execute(Runnable) or submit(Callable). Once you wish to stop sending messages you shut-down the ExecutorService (shutdown()) causing subsequent calls to submit / execute to result in a RejectedExecutionException.

The advantage of this approach is that you only have one I/O bound thread and less lock-contention than if you have multiple threads waiting to write messages themselves. It is also a better separation of concerns.

Here's a quick example that OO-ifies the problem a bit more:

public interface Message {
  /**
   * Writes the message to the specified stream.
   */
  void writeTo(OutputStream os);
}

public class Dispatcher {
  private final ExecutorService sender;
  private final OutputStream out;

  public Dispatcher() {
    this.sender = Executors.newSingleThreadExecutor();
    this.out = ...; // Set up output stream.
  }

  /**
   * Enqueue message to be sent.  Return a Future to allow calling thread
   * to perform a blocking get() if they wish to perform a synchronous send.
   */
  public Future<?> sendMessage(final Message msg) {
    return sender.submit(new Callable<Void>() {
      public Void call() throws Exception {
        msg.writeTo(out);
        return null;
      }
    });
  }

  public void shutDown() {
    sender.shutdown(); // Waits for all tasks to finish sending.

    // Close quietly, swallow exception.
    try {
      out.close();
    } catch (IOException ex) {
    }
  }
}
share|improve this answer
I used my own method because I don't want to add another thread to a server system which already has hundreds, but upvoted anyway because it's technically the correct way to do it. – Bart van Heukelom Nov 18 '10 at 16:07
up vote 1 down vote accepted

I suppose I could replace the synchronized block with a ReentrantLock set to be fair.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.