]> WPIA git - gigi.git/blob - lib/jetty/org/eclipse/jetty/security/HashCrossContextPsuedoSession.java
updating jetty to jetty-9.2.16.v2016040
[gigi.git] / lib / jetty / org / eclipse / jetty / security / HashCrossContextPsuedoSession.java
1 //
2 //  ========================================================================
3 //  Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd.
4 //  ------------------------------------------------------------------------
5 //  All rights reserved. This program and the accompanying materials
6 //  are made available under the terms of the Eclipse Public License v1.0
7 //  and Apache License v2.0 which accompanies this distribution.
8 //
9 //      The Eclipse Public License is available at
10 //      http://www.eclipse.org/legal/epl-v10.html
11 //
12 //      The Apache License v2.0 is available at
13 //      http://www.opensource.org/licenses/apache2.0.php
14 //
15 //  You may elect to redistribute this code under either of these licenses.
16 //  ========================================================================
17 //
18
19 package org.eclipse.jetty.security;
20
21 import java.security.SecureRandom;
22 import java.util.HashMap;
23 import java.util.Map;
24 import java.util.Random;
25
26 import javax.servlet.http.Cookie;
27 import javax.servlet.http.HttpServletRequest;
28 import javax.servlet.http.HttpServletResponse;
29
30 /**
31  * @version $Rev: 4660 $ $Date: 2009-02-25 17:29:53 +0100 (Wed, 25 Feb 2009) $
32  * @deprecated
33  */
34 public class HashCrossContextPsuedoSession<T> implements CrossContextPsuedoSession<T>
35 {
36     private final String _cookieName;
37
38     private final String _cookiePath;
39
40     private final Random _random = new SecureRandom();
41
42     private final Map<String, T> _data = new HashMap<String, T>();
43
44     public HashCrossContextPsuedoSession(String cookieName, String cookiePath)
45     {
46         this._cookieName = cookieName;
47         this._cookiePath = cookiePath == null ? "/" : cookiePath;
48     }
49
50     public T fetch(HttpServletRequest request)
51     {
52         Cookie[] cookies = request.getCookies();
53         if (cookies == null)
54             return null;
55         
56         for (Cookie cookie : cookies)
57         {
58             if (_cookieName.equals(cookie.getName()))
59             {
60                 String key = cookie.getValue();
61                 return _data.get(key);
62             }
63         }
64         return null;
65     }
66
67     public void store(T datum, HttpServletResponse response)
68     {
69         String key;
70
71         synchronized (_data)
72         {
73             // Create new ID
74             while (true)
75             {
76                 key = Long.toString(Math.abs(_random.nextLong()), 30 + (int) (System.currentTimeMillis() % 7));
77                 if (!_data.containsKey(key)) break;
78             }
79
80             _data.put(key, datum);
81         }
82
83         Cookie cookie = new Cookie(_cookieName, key);
84         cookie.setPath(_cookiePath);
85         response.addCookie(cookie);
86     }
87
88     public void clear(HttpServletRequest request)
89     {
90         for (Cookie cookie : request.getCookies())
91         {
92             if (_cookieName.equals(cookie.getName()))
93             {
94                 String key = cookie.getValue();
95                 _data.remove(key);
96                 break;
97             }
98         }
99     }
100 }