com.blade.mvc.http.session.SessionManager Maven / Gradle / Ivy
/**
* Copyright (c) 2017, biezhi 王爵 ([email protected])
*
* 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 com.blade.mvc.http.session;
import com.blade.event.Event;
import com.blade.event.EventManager;
import com.blade.event.EventType;
import com.blade.mvc.WebContext;
import com.blade.mvc.http.Session;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
/**
* SessionManager
*
* This class manages all session instances, including additions and deletions
*
* @author biezhi
* 2017/6/3
*/
public class SessionManager {
private EventManager eventManager;
/**
* Store all Session instances
*/
private Map sessionMap;
/**
* Create SessionManager
*/
public SessionManager(EventManager eventManager) {
this.sessionMap = new ConcurrentHashMap<>();
this.eventManager = eventManager;
}
/**
* Get a Session instance based on the Session id
*
* @param id session id
* @return Session instance
*/
public Session getSession(String id) {
return sessionMap.get(id);
}
/**
* Add a session instance to sessionMap
*
* @param session session instance
*/
public void createSession(Session session) {
sessionMap.put(session.id(), session);
Event event = new Event();
event.attribute("session", session);
eventManager.fireEvent(EventType.SESSION_CREATED, event);
}
/**
* Clean all session instances
*/
public void clear() {
sessionMap.clear();
}
/**
* Remove a session
*
* @param session session instance
*/
public void destorySession(Session session) {
session.attributes().clear();
sessionMap.remove(session.id());
Event event = new Event();
event.attribute("session", session);
eventManager.fireEvent(EventType.SESSION_DESTROY, event);
}
public Map sessionMap() {
return sessionMap;
}
}