forked from Transitime/core
-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding in concurrent logic to help prevent ConcurrentModificationException #89
Open
rjasmin-camsys
wants to merge
2
commits into
transitclock-merge
Choose a base branch
from
MET-247-concurrent-mod
base: transitclock-merge
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,7 @@ | |
import org.transitclock.utils.Time; | ||
|
||
import java.util.*; | ||
import java.util.concurrent.locks.ReentrantLock; | ||
|
||
/** | ||
* This is a very important high-level class. It takes the AVL data and | ||
|
@@ -1396,14 +1397,16 @@ private void determineAndSetRealTimeSchAdh(VehicleState vehicleState) { | |
private void lowLevelProcessAvlReport(AvlReport avlReport, | ||
boolean recursiveCall) { | ||
// Determine previous state of vehicle | ||
ReentrantLock l = new ReentrantLock(); | ||
l.lock(); | ||
String vehicleId = avlReport.getVehicleId(); | ||
VehicleState vehicleState = VehicleStateManager.getInstance() | ||
.getVehicleState(vehicleId); | ||
|
||
// Since modifying the VehicleState should synchronize in case another | ||
// thread simultaneously processes data for the same vehicle. This | ||
// would be extremely rare but need to be safe. | ||
synchronized (vehicleState) { | ||
|
||
// Keep track of last AvlReport even if vehicle not predictable. | ||
vehicleState.setAvlReport(avlReport); | ||
|
||
|
@@ -1518,7 +1521,7 @@ private void lowLevelProcessAvlReport(AvlReport avlReport, | |
org.transitclock.db.structs.VehicleState dbVehicleState = | ||
new org.transitclock.db.structs.VehicleState(vehicleState); | ||
Core.getInstance().getDbLogger().add(dbVehicleState); | ||
} // End of synchronizing on vehicleState } | ||
l.unlock(); // End of synchronizing on vehicleState } | ||
} | ||
|
||
/** | ||
|
@@ -1580,22 +1583,23 @@ public AvlReport getLastAvlReport() { | |
* @param avlReport | ||
*/ | ||
public void cacheAvlReportWithoutProcessing(AvlReport avlReport) { | ||
ReentrantLock l = new ReentrantLock(); | ||
l.lock(); | ||
VehicleState vehicleState = | ||
VehicleStateManager.getInstance().getVehicleState( | ||
avlReport.getVehicleId()); | ||
|
||
// Since modifying the VehicleState should synchronize in case another | ||
// thread simultaneously processes data for the same vehicle. This | ||
// would be extremely rare but need to be safe. | ||
synchronized (vehicleState) { | ||
// Update AVL report for cached VehicleState | ||
vehicleState.setAvlReport(avlReport); | ||
// Update AVL report for cached VehicleState | ||
vehicleState.setAvlReport(avlReport); | ||
|
||
// Let vehicle data cache know that the vehicle state was updated | ||
// so that new IPC vehicle data will be created and cached and | ||
// made available to the API. | ||
VehicleDataCache.getInstance().updateVehicle(vehicleState); | ||
} | ||
// Let vehicle data cache know that the vehicle state was updated | ||
// so that new IPC vehicle data will be created and cached and | ||
// made available to the API. | ||
VehicleDataCache.getInstance().updateVehicle(vehicleState); | ||
l.unlock(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. again, if the updateVehicle(vehicleState) is at issue by being outside of the synchronized block, then consider moving it. |
||
} | ||
|
||
private boolean isCanceled(VehicleState vehicleState) { | ||
|
@@ -1637,7 +1641,8 @@ private void logInvalidAssignment(VehicleState vehicleState) { | |
* The new AVL report to be processed | ||
*/ | ||
public void processAvlReport(AvlReport avlReport) { | ||
IntervalTimer timer = new IntervalTimer(); | ||
IntervalTimer timer = new IntervalTimer(); | ||
logger.error("rjasmin processing starting {}msec", System.currentTimeMillis()); | ||
|
||
// Handle special case where want to not use assignment from AVL | ||
// report, most likely because want to test automatic assignment | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it the avlReports.put(...) is the problem here, I suggest extending the synchronized (avlReports) block instead. The Reentrant lock doesn't give you anything different as I understand it.