diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-06-07 17:12:01 -0700 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2017-06-07 17:12:01 -0700 |
commit | d6e9efc48fca16263d6ac50aa063b1da8f14b125 (patch) | |
tree | 0f28d37449cff1e7ccb130571692e53ad41f5611 /src/org/traccar/protocol/AtrackProtocolEncoder.java | |
parent | 2742be4523fab5b371ae5dc11f573c7064546a7f (diff) | |
download | trackermap-server-d6e9efc48fca16263d6ac50aa063b1da8f14b125.tar.gz trackermap-server-d6e9efc48fca16263d6ac50aa063b1da8f14b125.tar.bz2 trackermap-server-d6e9efc48fca16263d6ac50aa063b1da8f14b125.zip |
Custom Atrack commands encoding
Diffstat (limited to 'src/org/traccar/protocol/AtrackProtocolEncoder.java')
-rw-r--r-- | src/org/traccar/protocol/AtrackProtocolEncoder.java | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/org/traccar/protocol/AtrackProtocolEncoder.java b/src/org/traccar/protocol/AtrackProtocolEncoder.java new file mode 100644 index 000000000..77f16527f --- /dev/null +++ b/src/org/traccar/protocol/AtrackProtocolEncoder.java @@ -0,0 +1,42 @@ +/* + * Copyright 2017 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 org.jboss.netty.buffer.ChannelBuffers; +import org.traccar.BaseProtocolEncoder; +import org.traccar.helper.Log; +import org.traccar.model.Command; + +import java.nio.charset.StandardCharsets; + +public class AtrackProtocolEncoder extends BaseProtocolEncoder { + + @Override + protected Object encodeCommand(Command command) { + + switch (command.getType()) { + case Command.TYPE_CUSTOM: + return ChannelBuffers.copiedBuffer( + command.getString(Command.KEY_DATA) + "\r\n", StandardCharsets.US_ASCII); + default: + Log.warning(new UnsupportedOperationException(command.getType())); + break; + } + + return null; + } + +} |