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

After reading topics here about Java synchronized methods, I've tried to implement it in my multiplayer game because many threads are opened and trying to access the same resource. I've made methods synchronized but that's doesn't help me since if I have a data member called ArrayList clientConnection; and the methods that are available are:

int getArrayListSize() {
    clientConnection.size();
}

void addConnection(ServerConnection i_connection) {
    clientConnection.add(i_connection);
}

void removeConnection(ServerConnection i_connection) {
    int index = clientConnections.indexOf(i_Connection);
    clientConnections.remove(index);
}

ServerConnection getClientFromArrayListByIndex(int i_Index) {
    ServerConnection client = this.clientConnections.get(i_Index);
}

I've tried to make a global synchronized method to whenever one want to use one of the methods he needs to pass in an operation type and other data and he locks the function. The problem is that there are 2 function that return void, 1 returns int and 1 returns ServerConnection so I can't create that global method. My question if there is a possible to lock data members and not methods in Java so I can lock the clientConnection data member? Thanks.

share|improve this question
Looks to me that getArrayListSize and getClientFromArrayListByIndex do not belong to a public interface of your object. If you could show us what would be the actual usage, we could have steered you in the right direction. – Alexander Pogrebnyak Oct 3 '11 at 21:51

4 Answers

up vote 0 down vote accepted

You can synchronize a function by using the synchronized keyword. For example:

synchronized ServerConnection getClientFromArrayListByIndex(int i_Index) { 
    ServerConnection client = this.clientConnections.get(i_Index);
    // ...
}
share|improve this answer
The problem I have with that that one thread can remove a server connection from clientConnection arrayList and in the same time another thread tries to get the arraylist size or to get the serverconnection object in that specifiec index that was removed and that's not ok – Alon Oct 3 '11 at 21:20
Then you should manually specify a lock object. You can synchronize based on the clientConnection ArrayList, and only one thread will be able to access that object at a time. The general rule of thumb is to synchronize on the resource that is shared (and therefore the cause of the potential problem). You could also look into using conncurrent data structures. – Jonathan Newmuis Oct 3 '11 at 21:24
This scenario might cause an ArrayIndexOutOfBoundsException, but it won't leave the list in an indeterminate state due to a concurrency problem. Just document the method correctly, and/or make it return null if the index is not valid anymore, and/or throw a custom exception rather than the default ArrayIndexOutOfBoundsException if the index is not valid anymore. – JB Nizet Oct 3 '11 at 21:27
you say I can lock the arraylist? – Alon Oct 3 '11 at 21:35
Yes, by simply wrapping accesses to the ArrayList in synchronized(clientConnections) { ... } blocks. But as others have mentioned in this answer and in others, you will also need to consider the performance. Ideally, what would you like to have happen if there is contention for this shared resource? For example, you could use a BlockingQueue, which will essentially just queue up the operations. If there is a remove performed first, then a read, the read operation will need to wait until the remove has completed. But then some client could just be stuck waiting. In a game, that's really bad. – Jonathan Newmuis Oct 3 '11 at 21:39
show 8 more comments

If you make all these methods synchronized, then only one thread at a time will be able to invoke any of the methods, and the list will thus be accessed in a thread-safe way, provided only these methods are able to access the list (i.e. the list is private, and no other method uses the list).

synchronized int getArrayListSize() { ... }
synchronized void addConnection(ServerConnection i_connection) { ... }
etc.
share|improve this answer
the problem with that that I need more methods that can access the list, like removing a connection or iterating for finding a connection... – Alon Oct 4 '11 at 22:31
synchronize those methods as well. – JB Nizet Oct 5 '11 at 6:54

If you have one class you can simply prefix your methods with synchronized; then there is only one thread in any of those methods. But please think if you need this really; it could slow the execution. If you have public fields you should make them private and create getter methods.

share|improve this answer
That was a gernal note; you should not make all methods of all classes synchronized. You should think about it. But better correct than fast is also in my opinion. – MasterCassim Oct 3 '11 at 21:24
making all methods synchronized will slow the application right ? what do I do if have different type of operations on the same arraylist and for example: add,remove,getsize etc... if I have 3 threads and each one uses a different method in the same time, that can cause a big problem. – Alon Oct 3 '11 at 21:34
You can use a synchronizedList or synchronize over the arraylist. – MasterCassim Oct 3 '11 at 22:07

You could use Collections.synchronizedList() to wrap your List in one for which all of the methods are synchronized.

Whether this is better than synchronizing the methods in your class depends on what else your methods do, and if those things also need to be coordinated.

share|improve this answer
That's sounds like a great solution, do you have an example of usage? – Alon Oct 3 '11 at 21:28
2  
Except in the removeConnection() method, which could fail - it performs two operations that are synchronized for each call, but aren't an atomic unit (and need to be). There's a chance another thread could modify the list between the indexOf() and remove() call. – Todd Oct 3 '11 at 21:30
I didn't spot what was happening in removeConnection()---given the code there, this would create a race condition and hence not be appropriate. I did mention that whether this is appropriate does depend on what else happens in the methods, however... – uckelman Oct 3 '11 at 21:49
1  
@Todd removeConnection(...) could be trivially rewritten to use List#remove(Object o), in which case this would not be a problem. – msandiford Oct 4 '11 at 8:37
Not to mention that the getClientFromArrayListByIndex(...) call poses some significant locking challenges to any list-based implementation. – msandiford Oct 4 '11 at 8:49
show 1 more comment

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.