aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/http/AsyncServlet.java
blob: 99929731fbc63c2e49e1d328e054107a91b52f7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/*
 * Copyright 2015 Anton Tananaev (anton.tananaev@gmail.com)
 *
 * 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.http;

import java.io.IOException;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import java.util.concurrent.TimeUnit;
import javax.json.Json;
import javax.json.JsonObjectBuilder;
import javax.servlet.AsyncContext;
import javax.servlet.ServletException;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.jboss.netty.util.Timeout;
import org.jboss.netty.util.TimerTask;
import org.traccar.Context;
import org.traccar.GlobalTimer;
import org.traccar.database.DataCache;
import org.traccar.helper.Log;
import org.traccar.model.Position;
import org.traccar.model.User;

public class AsyncServlet extends HttpServlet {

    private static final long ASYNC_TIMEOUT = 120000;
    
    @Override
    protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        async(req.startAsync());
    }
    
    public class AsyncSession {
        
        private static final boolean DEBUG_ASYNC = false;
        
        private static final long SESSION_TIMEOUT = 30;
        private static final long REQUEST_TIMEOUT = 20;
        
        private boolean destroyed;
        private final long userId;
        private final Set<Long> devices = new HashSet<Long>();
        private Timeout sessionTimeout;
        private Timeout requestTimeout;
        private final Map<Long, Position> positions = new HashMap<Long, Position>();
        private AsyncContext activeContext;
        
        private void logEvent(String message) {
            if (DEBUG_ASYNC) {
                Log.debug("AsyncSession: " + this.hashCode() + " destroyed: " + destroyed + " " + message);
            }
        }
        
        public AsyncSession(long userId, Collection<Long> devices) {
            logEvent("create userId: " + userId + " devices: " + devices.size());
            this.userId = userId;
            this.devices.addAll(devices);

            Collection<Position> initialPositions = Context.getDataCache().getInitialState(devices);
            for (Position position : initialPositions) {
                positions.put(position.getDeviceId(), position);
            }
            
            Context.getDataCache().addListener(devices, dataListener);
        }
        
        public boolean hasDevice(long deviceId) {
            return devices.contains(deviceId);
        }
        
        private final DataCache.DataCacheListener dataListener = new DataCache.DataCacheListener() {
            @Override
            public void onUpdate(Position position) {
                synchronized (AsyncSession.this) {
                    logEvent("onUpdate deviceId: " + position.getDeviceId());
                    if (!destroyed) {
                        if (requestTimeout != null) {
                            requestTimeout.cancel();
                            requestTimeout = null;
                        }
                        positions.put(position.getDeviceId(), position);
                        if (activeContext != null) {
                            response();
                        }
                    }
                }
            }
        };
        
        private final TimerTask sessionTimer = new TimerTask() {
            @Override
            public void run(Timeout tmt) throws Exception {
                synchronized (AsyncSession.this) {
                    logEvent("sessionTimeout");
                    Context.getDataCache().removeListener(devices, dataListener);
                    synchronized (asyncSessions) {
                        asyncSessions.remove(userId);
                    }
                    destroyed = true;
                }
            }
        };
                
        private final TimerTask requestTimer = new TimerTask() {
            @Override
            public void run(Timeout tmt) throws Exception {
                synchronized (AsyncSession.this) {
                    logEvent("requestTimeout");
                    if (!destroyed) {
                        if (activeContext != null) {
                            response();
                        }
                    }
                }
            }
        };
        
        public synchronized void request(AsyncContext context) {
            logEvent("request context: " + context.hashCode());
            if (!destroyed) {
                activeContext = context;
                if (sessionTimeout != null) {
                    sessionTimeout.cancel();
                    sessionTimeout = null;
                }

                if (!positions.isEmpty()) {
                    response();
                } else {
                    requestTimeout = GlobalTimer.getTimer().newTimeout(
                            requestTimer, REQUEST_TIMEOUT, TimeUnit.SECONDS);
                }
            }
        }
        
        private synchronized void response() {
            logEvent("response context: " + activeContext.hashCode());
            if (!destroyed) {
                ServletResponse response = activeContext.getResponse();

                JsonObjectBuilder result = Json.createObjectBuilder();
                result.add("success", true);
                result.add("data", JsonConverter.arrayToJson(positions.values()));
                positions.clear();

                try {
                    response.getWriter().println(result.build().toString());
                } catch (IOException error) {
                    Log.warning(error);
                }

                activeContext.complete();
                activeContext = null;

                sessionTimeout = GlobalTimer.getTimer().newTimeout(
                        sessionTimer, SESSION_TIMEOUT, TimeUnit.SECONDS);
            }
        }
        
    }
    
    private static final Map<Long, AsyncSession> asyncSessions = new HashMap<Long, AsyncSession>();
    
    public static void sessionRefreshUser(long userId) {
        asyncSessions.remove(userId);
    }
    
    public static void sessionRefreshDevice(long deviceId) {
        Iterator<Entry<Long, AsyncSession>> iterator = asyncSessions.entrySet().iterator();
        while (iterator.hasNext()) {
            if (iterator.next().getValue().hasDevice(deviceId)) {
                iterator.remove();
            }
        }
    }
    
    private void async(final AsyncContext context) {
        
        context.setTimeout(ASYNC_TIMEOUT);
        HttpServletRequest req = (HttpServletRequest) context.getRequest();
        User user = (User) req.getSession().getAttribute(MainServlet.USER_KEY);
        
        synchronized (asyncSessions) {
            
            if (Boolean.valueOf(req.getParameter("first")) || !asyncSessions.containsKey(user.getId())) {
                Collection<Long> devices = Context.getPermissionsManager().allowedDevices(user.getId());
                asyncSessions.put(user.getId(), new AsyncSession(user.getId(), devices));
            }
            
            asyncSessions.get(user.getId()).request(context);
        }
    }

}