I have an object User with two locks, inventoryLock and currencyLock. Often these locks will be used individually, e.g.
synchronized (user.inventoryLock) {
// swap items
tmp = user.inventory[x];
user.inventory[x] = user.inventory[y];
user.inventory[y] = tmp;
}
or
synchronized (user.currencyLock) {
if (user.money < loss) throw new Exception();
user.money -= loss;
}
But sometimes a piece of code requires both locks:
synchronized (user.currencyLock) {
synchronized (user.inventoryLock) {
if (user.money < item.price) throw new Exception();
user.money -= item.price;
user.inventory[empty] = item;
}
}
Seems simple, but there are more bits of code using both locks than just this example, and I know from previous experience that if multiple pieces of code require the same shared locks, they have a risk of deadlocking.
What's a good way to avoid that?
Is there maybe some kind of mechanism that will let me atomically lock on two objects?