All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jetbrick.web.servlet.map.RequestCookieMap Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
/**
 * Copyright 2013-2016 Guoqiang Chen, Shanghai, China. All rights reserved.
 *
 *   Author: Guoqiang Chen
 *    Email: [email protected]
 *   WebURL: https://github.com/subchen
 *
 * 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 jetbrick.web.servlet.map;

import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServletRequest;

import jetbrick.util.concurrent.ConcurrentInitializer;
import jetbrick.util.concurrent.LazyInitializer;

public final class RequestCookieMap implements Map {
    private final HttpServletRequest request;

    private final ConcurrentInitializer> map = new LazyInitializer>() {
        @Override
        protected Map initialize() {
            Cookie[] cookies = request.getCookies();
            if (cookies == null) {
                return Collections.emptyMap();
            } else {
                Map map = new HashMap();
                for (Cookie cookie : cookies) {
                    String name = cookie.getName();
                    map.put(name, cookie);
                }
                return map;
            }
        }
    };

    public RequestCookieMap(HttpServletRequest request) {
        this.request = request;
    }

    @Override
    public boolean containsKey(Object key) {
        return map.get().containsKey(key);
    }

    @Override
    public boolean containsValue(Object value) {
        return map.get().containsValue(value);
    }

    @Override
    public Cookie get(Object key) {
        return map.get().get(key);
    }

    @Override
    public boolean isEmpty() {
        return map.get().isEmpty();
    }

    @Override
    public int size() {
        return map.get().size();
    }

    @Override
    public Set> entrySet() {
        return map.get().entrySet();
    }

    @Override
    public Set keySet() {
        return map.get().keySet();
    }

    @Override
    public Collection values() {
        return map.get().values();
    }

    @Override
    public synchronized Cookie put(String key, Cookie value) {
        throw new UnsupportedOperationException();
    }

    @Override
    public synchronized void putAll(Map m) {
        throw new UnsupportedOperationException();
    }

    @Override
    public synchronized Cookie remove(Object key) {
        throw new UnsupportedOperationException();
    }

    @Override
    public synchronized void clear() {
        throw new UnsupportedOperationException();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy