diff options
author | Abyss777 <abyss@fox5.ru> | 2018-06-07 15:38:00 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2018-06-07 15:38:00 +0500 |
commit | 757cdb82c9109541ee5e7dc8d8ddca31c8507ca3 (patch) | |
tree | 2a6a6ad9018e1de675fdadaadc6929f1163e37f7 /src/org/traccar/protocol/Vt200ProtocolDecoder.java | |
parent | 7e324a9dfb2bcde08d1524a9f3dc5114c0d49bdc (diff) | |
download | trackermap-server-757cdb82c9109541ee5e7dc8d8ddca31c8507ca3.tar.gz trackermap-server-757cdb82c9109541ee5e7dc8d8ddca31c8507ca3.tar.bz2 trackermap-server-757cdb82c9109541ee5e7dc8d8ddca31c8507ca3.zip |
Migrate U,V protocols
Diffstat (limited to 'src/org/traccar/protocol/Vt200ProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/Vt200ProtocolDecoder.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/org/traccar/protocol/Vt200ProtocolDecoder.java b/src/org/traccar/protocol/Vt200ProtocolDecoder.java index d08107b16..d0ee32c5d 100644 --- a/src/org/traccar/protocol/Vt200ProtocolDecoder.java +++ b/src/org/traccar/protocol/Vt200ProtocolDecoder.java @@ -1,5 +1,5 @@ /* - * Copyright 2017 Anton Tananaev (anton@traccar.org) + * Copyright 2017 - 2018 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. @@ -15,9 +15,9 @@ */ package org.traccar.protocol; -import org.jboss.netty.buffer.ChannelBuffer; -import org.jboss.netty.buffer.ChannelBuffers; -import org.jboss.netty.channel.Channel; +import io.netty.buffer.ByteBuf; +import io.netty.buffer.ByteBufUtil; +import io.netty.channel.Channel; import org.traccar.BaseProtocolDecoder; import org.traccar.DeviceSession; import org.traccar.helper.BcdUtil; @@ -42,7 +42,7 @@ public class Vt200ProtocolDecoder extends BaseProtocolDecoder { return degrees + minutes * 0.0001 / 60; } - protected Date decodeDate(ChannelBuffer buf) { + protected Date decodeDate(ByteBuf buf) { DateBuilder dateBuilder = new DateBuilder() .setDateReverse(BcdUtil.readInteger(buf, 2), BcdUtil.readInteger(buf, 2), BcdUtil.readInteger(buf, 2)) .setTime(BcdUtil.readInteger(buf, 2), BcdUtil.readInteger(buf, 2), BcdUtil.readInteger(buf, 2)); @@ -53,11 +53,11 @@ public class Vt200ProtocolDecoder extends BaseProtocolDecoder { protected Object decode( Channel channel, SocketAddress remoteAddress, Object msg) throws Exception { - ChannelBuffer buf = (ChannelBuffer) msg; + ByteBuf buf = (ByteBuf) msg; buf.skipBytes(1); // header - String id = ChannelBuffers.hexDump(buf.readBytes(6)); + String id = ByteBufUtil.hexDump(buf.readBytes(6)); DeviceSession deviceSession = getDeviceSession(channel, remoteAddress, id); if (deviceSession == null) { return null; |