From 526ec985c8d48d588511bddff22eaee53f4bdfc1 Mon Sep 17 00:00:00 2001 From: Irving Gonzalez Date: Mon, 27 Jul 2015 20:13:17 -0600 Subject: Implement Totem commands support --- src/org/traccar/model/Command.java | 3 +- src/org/traccar/protocol/TotemProtocol.java | 4 +++ src/org/traccar/protocol/TotemProtocolEncoder.java | 37 ++++++++++++++++++++++ 3 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 src/org/traccar/protocol/TotemProtocolEncoder.java diff --git a/src/org/traccar/model/Command.java b/src/org/traccar/model/Command.java index f7702dbd0..90e4ba767 100644 --- a/src/org/traccar/model/Command.java +++ b/src/org/traccar/model/Command.java @@ -26,7 +26,8 @@ public class Command implements Factory { public static final String TYPE_POSITION_FIX = "positionFix"; public static final String TYPE_ENGINE_STOP = "engineStop"; public static final String TYPE_ENGINE_RESUME = "engineResume"; - + public static final String TYPE_IMEI = "imei"; + public static final String KEY_UNIQUE_ID = "uniqueId"; public static final String KEY_FREQUENCY = "frequency"; diff --git a/src/org/traccar/protocol/TotemProtocol.java b/src/org/traccar/protocol/TotemProtocol.java index cbc35a664..1c0d21380 100644 --- a/src/org/traccar/protocol/TotemProtocol.java +++ b/src/org/traccar/protocol/TotemProtocol.java @@ -22,11 +22,14 @@ import org.traccar.BaseProtocol; import org.traccar.TrackerServer; import java.util.List; +import org.traccar.model.Command; public class TotemProtocol extends BaseProtocol { public TotemProtocol() { super("totem"); + setSupportedCommands( + Command.TYPE_IMEI); } @Override @@ -37,6 +40,7 @@ public class TotemProtocol extends BaseProtocol { pipeline.addLast("frameDecoder", new TotemFrameDecoder()); pipeline.addLast("stringDecoder", new StringDecoder()); pipeline.addLast("objectDecoder", new TotemProtocolDecoder(TotemProtocol.this)); + pipeline.addLast("objectEncoder", new TotemProtocolEncoder()); } }); } diff --git a/src/org/traccar/protocol/TotemProtocolEncoder.java b/src/org/traccar/protocol/TotemProtocolEncoder.java new file mode 100644 index 000000000..02dabc5fb --- /dev/null +++ b/src/org/traccar/protocol/TotemProtocolEncoder.java @@ -0,0 +1,37 @@ +/* + * Copyright 2015 alexis. + * + * 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.traccar.StringProtocolEncoder; +import org.traccar.model.Command; + +/** + * + * @author Irving Gonzalez [ialexis93@gmail.com] + */ +public class TotemProtocolEncoder extends StringProtocolEncoder{ + + @Override + protected Object encodeCommand(Command command) { + + switch (command.getType()) { + case Command.TYPE_IMEI: + return "*000000,801#"; + } + + return null; + } +} -- cgit v1.2.3