KatsuteDev/OneMTA

Use all bus data

Katsute opened this issue · 10 comments

Feature

Anytime a bus is requested:

  1. Check the cache
  2. Pull data for all busses
  3. Parse
  4. Fulfill the request

Reason

Current implementation runs a new request for every bus which is not efficient for enterprise. Requesting all busses then parsing is more efficient when submitting multiple requests.

Use similar binary search implemented in #90 against bus line not possible

Store raw data in cache, DO NOT STORE OBJECTS; will cause memory issues.

< 10,000 busses

https://bt.mta.info/wiki/Developers/SIRIVehicleMonitoring

Please note that the calls made without either a VehicleRef or LineRef produces quite a load on the system, so use them sparingly. Any developers found to be making repeated calls (e.g. at less than 30 second intervals) for all vehicles in the system may find their key revoked.

Only this subclass needs to be modified

Stop monitoring should derive values from vehicle request if possible.

JSON parser needs to be massively optimized to avoid memory issues; use JIT (just-in-time) parsing, where we load immediate keys into memory, then parse the subsequent object when requested.


This count needs to be optimized to only run once: not possible due to split logic

final long count = Regex9.count(quotes.reset(after));

https://sites.google.com/site/gson/streaming

https://stackoverflow.com/a/11876086

Regex may actually be more inefficient since we are rescanning the string multiple times. Use character loop stream instead.


Return a method to parse for:

else if(arrayMatcher.group("array") != null) // open new array
list.add(openArray(reader, json));
else if(arrayMatcher.group("map") != null) // open new map
list.add(openMap(reader, json));

and

else if(mapMatcher.group("array") != null) // open new array
obj.set(key, openArray(reader, json));
else if(mapMatcher.group("map") != null) // open new map
obj.set(key, openMap(reader, json));

@mashiro-san create a branch upgrade-json

@Katsute I have created a new branch upgrade-json@f3dfe30

  • get methods need to be optimized so synchronized isn't blocking threads
  • pull bus stop alert info from gtfs feed
  • derive stop vehicles from all vehicles

Use CopyOnWriteArrayList to allow concurrent reads and locked writes.

ConcurrentMap?

In order to make write thread safe, have synchronized write block also check if its expired before fetching (any current active writes will make the result not expired, any queued writes will see that the resource is no longer expired and will return the new one instead).

Get first then check if expired to prevent concurrency issues.

@mashiro-san create a new branch upgrade cache

@Katsute I have created a new branch upgrade-cache@ebf9c8e

Possibly use #100 to implement this.