diff options
author | Abyss777 <abyss@fox5.ru> | 2016-08-11 11:34:51 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-08-11 11:34:51 +0500 |
commit | 46be66c0639032c8ebf222f79e3a52b2b120ad24 (patch) | |
tree | 7fe77ba8692592ea5676665035f1c8a3daea6352 /src/org/traccar/BasePipelineFactory.java | |
parent | d89466435165e978429b609f43d3e5904212da3b (diff) | |
download | trackermap-server-46be66c0639032c8ebf222f79e3a52b2b120ad24.tar.gz trackermap-server-46be66c0639032c8ebf222f79e3a52b2b120ad24.tar.bz2 trackermap-server-46be66c0639032c8ebf222f79e3a52b2b120ad24.zip |
- Enabled IgnitionEventHandler in pipeline
- Added motorHours to SummaryReport
- Added ignition to test-generator.py
Diffstat (limited to 'src/org/traccar/BasePipelineFactory.java')
-rw-r--r-- | src/org/traccar/BasePipelineFactory.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/org/traccar/BasePipelineFactory.java b/src/org/traccar/BasePipelineFactory.java index 2b5028f33..ed7aa0a69 100644 --- a/src/org/traccar/BasePipelineFactory.java +++ b/src/org/traccar/BasePipelineFactory.java @@ -31,6 +31,7 @@ import org.jboss.netty.handler.logging.LoggingHandler; import org.jboss.netty.handler.timeout.IdleStateHandler; import org.traccar.events.CommandResultEventHandler; import org.traccar.events.GeofenceEventHandler; +import org.traccar.events.IgnitionEventHandler; import org.traccar.events.MotionEventHandler; import org.traccar.events.OverspeedEventHandler; import org.traccar.events.AlertEventHandler; @@ -55,6 +56,7 @@ public abstract class BasePipelineFactory implements ChannelPipelineFactory { private MotionEventHandler motionEventHandler; private GeofenceEventHandler geofenceEventHandler; private AlertEventHandler alertEventHandler; + private IgnitionEventHandler ignitionEventHandler; private static final class OpenChannelHandler extends SimpleChannelHandler { @@ -156,6 +158,9 @@ public abstract class BasePipelineFactory implements ChannelPipelineFactory { if (Context.getConfig().getBoolean("event.alertHandler")) { alertEventHandler = new AlertEventHandler(); } + if (Context.getConfig().getBoolean("event.ignitionHandler")) { + ignitionEventHandler = new IgnitionEventHandler(); + } } protected abstract void addSpecificHandlers(ChannelPipeline pipeline); @@ -225,6 +230,10 @@ public abstract class BasePipelineFactory implements ChannelPipelineFactory { pipeline.addLast("AlertEventHandler", alertEventHandler); } + if (alertEventHandler != null) { + pipeline.addLast("IgnitionEventHandler", ignitionEventHandler); + } + pipeline.addLast("mainHandler", new MainEventHandler()); return pipeline; } |