diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-10-21 16:03:52 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-21 16:03:52 +1300 |
commit | aa358c035e97ed5bcfc0b859b80d68187146d828 (patch) | |
tree | d279c1468d8e20f54ac2d216dc15b1f6fbbf4e9f /src/org/traccar/BasePipelineFactory.java | |
parent | eb15c16571c0070ae60f39dce6ae974128ff1be1 (diff) | |
parent | d57fba24dcff412339a09e102bfdbe91e38da7d9 (diff) | |
download | trackermap-server-aa358c035e97ed5bcfc0b859b80d68187146d828.tar.gz trackermap-server-aa358c035e97ed5bcfc0b859b80d68187146d828.tar.bz2 trackermap-server-aa358c035e97ed5bcfc0b859b80d68187146d828.zip |
Merge pull request #2467 from Abyss777/sticky_attributes
Copy some attributes from last position
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 837712e84..6d7089644 100644 --- a/src/org/traccar/BasePipelineFactory.java +++ b/src/org/traccar/BasePipelineFactory.java @@ -50,6 +50,7 @@ public abstract class BasePipelineFactory implements ChannelPipelineFactory { private ReverseGeocoderHandler reverseGeocoderHandler; private LocationProviderHandler locationProviderHandler; private HemisphereHandler hemisphereHandler; + private CopyAttributesHandler copyAttributesHandler; private CommandResultEventHandler commandResultEventHandler; private OverspeedEventHandler overspeedEventHandler; @@ -139,6 +140,10 @@ public abstract class BasePipelineFactory implements ChannelPipelineFactory { hemisphereHandler = new HemisphereHandler(); } + if (Context.getConfig().getBoolean("processing.copyAttributes.enable")) { + copyAttributesHandler = new CopyAttributesHandler(); + } + if (Context.getConfig().getBoolean("event.enable")) { commandResultEventHandler = new CommandResultEventHandler(); @@ -201,6 +206,10 @@ public abstract class BasePipelineFactory implements ChannelPipelineFactory { pipeline.addLast("distance", distanceHandler); } + if (copyAttributesHandler != null) { + pipeline.addLast("copyAttributes", copyAttributesHandler); + } + if (Context.getDataManager() != null) { pipeline.addLast("dataHandler", new DefaultDataHandler()); } |