Skip to content

Commit c72f45a

Browse files
committed
perf: switch from Java to HPPC hash map
1 parent dc279a2 commit c72f45a

File tree

1 file changed

+3
-5
lines changed
  • ors-engine/src/main/java/org/heigit/ors/routing/graphhopper/extensions

1 file changed

+3
-5
lines changed

ors-engine/src/main/java/org/heigit/ors/routing/graphhopper/extensions/ORSOSMReader.java

+3-5
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
package org.heigit.ors.routing.graphhopper.extensions;
1515

1616
import com.carrotsearch.hppc.LongArrayList;
17+
import com.graphhopper.coll.GHLongObjectHashMap;
1718
import com.graphhopper.reader.ReaderNode;
1819
import com.graphhopper.reader.ReaderWay;
1920
import com.graphhopper.reader.osm.OSMReader;
@@ -39,9 +40,7 @@ public class ORSOSMReader extends OSMReader {
3940
private boolean processNodeTags;
4041
private final OSMDataReaderContext readerCntx;
4142

42-
//FIXME: big regular hashmaps should be avoided because they don't support MMAP
43-
private final HashMap<Long, HashMap<String, String>> nodeTags = new HashMap<>();
44-
43+
private final GHLongObjectHashMap<Map<String, String>> nodeTags = new GHLongObjectHashMap(200, 0.5);
4544
private boolean processGeom = false;
4645
private boolean processSimpleGeom = false;
4746
private boolean processWholeGeom = false;
@@ -171,7 +170,6 @@ protected void processWay(ReaderWay way) {
171170
*/
172171
@Override
173172
public void onProcessWay(ReaderWay way) {
174-
175173
Map<Integer, Map<String, String>> tags = new HashMap<>();
176174
ArrayList<Coordinate> coords = new ArrayList<>();
177175
ArrayList<Coordinate> allCoordinates = new ArrayList<>();
@@ -189,7 +187,7 @@ public void onProcessWay(ReaderWay way) {
189187
long id = osmNodeIds.get(i);
190188
// replace the osm id with the internal id
191189
int internalId = getNodeMap().get(id);
192-
HashMap<String, String> tagsForNode = nodeTags.get(id);
190+
Map<String, String> tagsForNode = nodeTags.get(id);
193191

194192
if (tagsForNode != null) {
195193
tags.put(internalId, nodeTags.get(id));

0 commit comments

Comments
 (0)