Say I have a custom lock class that includes these methods: acquireReadLock(), acquireWriteLock(), releaseReadLock(), and releaseWriteLock().
Also, would I have to declare my main thread's TreeMap as volatile for each of the worker threads to write directly to the main thread?
public void addWord(String word, String path, int index) {
// if there is no mapping for the word yet
if(!words.containsKey(word)) {
TreeMap<String, ArrayList<Integer>> m = new TreeMap<String , ArrayList<Integer>>();
m.put(path, new ArrayList<Integer>());
m.get(path).add(index);
words.put(word, m);
}
// if there is a mapping to the word, but not to the path
else if(words.containsKey(word) && !words.get(word).containsKey(path)) {
addPath(word, path, index);
}
// just to add an index to an existing path
else if(words.containsKey(word) && words.get(word).containsKey(path)) {
addIndex(word, path, index);
}
}
/**
* Adds a path and index to a word
*
* @param word the word that was found
* @param path the path the word was found in
* @param index the location of the word in the path
*/
private void addPath(String word, String path, int index) {
words.get(word).put(path, new ArrayList<Integer>());
words.get(word).get(path).add(index);
}
/** Adds an index of the word into the path
*
* @param word the word that was found
* @param path the path the word was found in
* @param index the location of the word in the path
*/
private void addIndex(String word, String path, int index) {
words.get(word).get(path).add(index);
}