diff options
author | Anton Tananaev <anton@traccar.org> | 2022-08-08 17:47:25 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-08-08 17:47:25 -0700 |
commit | 8fb2596c60d8e63e9933de4b077253f14daa1472 (patch) | |
tree | ba16ac044e6393f7d7f7500b4d1641630b81fa53 /src/main/java/org/traccar/protocol/BstplProtocol.java | |
parent | a551ac40761520e8d48e4438213f70854569c1d9 (diff) | |
download | trackermap-server-8fb2596c60d8e63e9933de4b077253f14daa1472.tar.gz trackermap-server-8fb2596c60d8e63e9933de4b077253f14daa1472.tar.bz2 trackermap-server-8fb2596c60d8e63e9933de4b077253f14daa1472.zip |
Implement BSTPL protocol
Diffstat (limited to 'src/main/java/org/traccar/protocol/BstplProtocol.java')
-rw-r--r-- | src/main/java/org/traccar/protocol/BstplProtocol.java | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/main/java/org/traccar/protocol/BstplProtocol.java b/src/main/java/org/traccar/protocol/BstplProtocol.java new file mode 100644 index 000000000..dde14a2ca --- /dev/null +++ b/src/main/java/org/traccar/protocol/BstplProtocol.java @@ -0,0 +1,43 @@ +/* + * Copyright 2022 Anton Tananaev (anton@traccar.org) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.traccar.protocol; + +import io.netty.handler.codec.string.StringDecoder; +import io.netty.handler.codec.string.StringEncoder; +import org.traccar.BaseProtocol; +import org.traccar.CharacterDelimiterFrameDecoder; +import org.traccar.PipelineBuilder; +import org.traccar.TrackerServer; +import org.traccar.config.Config; + +import javax.inject.Inject; + +public class BstplProtocol extends BaseProtocol { + + @Inject + public BstplProtocol(Config config) { + addServer(new TrackerServer(config, getName(), false) { + @Override + protected void addProtocolHandlers(PipelineBuilder pipeline, Config config) { + pipeline.addLast(new CharacterDelimiterFrameDecoder(1024, '#')); + pipeline.addLast(new StringEncoder()); + pipeline.addLast(new StringDecoder()); + pipeline.addLast(new BstplProtocolDecoder(BstplProtocol.this)); + } + }); + } + +} |