diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2018-02-10 08:24:14 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-10 08:24:14 +1300 |
commit | e1bd30161e842b61e395e932ec9251a326025ad8 (patch) | |
tree | fc142d1f296623186e55ef0cd51df4219fa8dbc1 /src/org/traccar/BaseProtocolDecoder.java | |
parent | 96e45b5a990182ddc4b878e48d93d301d014427a (diff) | |
parent | 267c6e1651b6e0e91dd7c3463f86de929d7bc73c (diff) | |
download | traccar-server-e1bd30161e842b61e395e932ec9251a326025ad8.tar.gz traccar-server-e1bd30161e842b61e395e932ec9251a326025ad8.tar.bz2 traccar-server-e1bd30161e842b61e395e932ec9251a326025ad8.zip |
Merge pull request #3765 from Abyss777/device_timezone
Unified Device timezone handling
Diffstat (limited to 'src/org/traccar/BaseProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/BaseProtocolDecoder.java | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/src/org/traccar/BaseProtocolDecoder.java b/src/org/traccar/BaseProtocolDecoder.java index 18b0bc04a..3ea1208ca 100644 --- a/src/org/traccar/BaseProtocolDecoder.java +++ b/src/org/traccar/BaseProtocolDecoder.java @@ -1,5 +1,5 @@ /* - * Copyright 2012 - 2016 Anton Tananaev (anton@traccar.org) + * Copyright 2012 - 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. @@ -29,6 +29,7 @@ import java.util.Collection; import java.util.Date; import java.util.HashMap; import java.util.Map; +import java.util.TimeZone; import java.sql.SQLException; public abstract class BaseProtocolDecoder extends ExtendedObjectDecoder { @@ -81,6 +82,25 @@ public abstract class BaseProtocolDecoder extends ExtendedObjectDecoder { } } + protected TimeZone getTimeZone(long deviceId) { + TimeZone result = TimeZone.getTimeZone("UTC"); + String timeZoneName = null; + if (Context.getDeviceManager() != null) { + timeZoneName = Context.getDeviceManager().lookupAttributeString( + deviceId, "decoder.timezone", null, true); + } + if (timeZoneName != null) { + result = TimeZone.getTimeZone(timeZoneName); + } else { + int timeZoneOffset = Context.getConfig().getInteger(getProtocolName() + ".timezone", 0); + if (timeZoneOffset != 0) { + result.setRawOffset(timeZoneOffset * 1000); + Log.warning("Config parameter " + getProtocolName() + ".timezone is deprecated"); + } + } + return result; + } + private DeviceSession channelDeviceSession; // connection-based protocols private Map<SocketAddress, DeviceSession> addressDeviceSessions = new HashMap<>(); // connectionless protocols |