![JAR search and dependency download from the Maven repository](/logo.png)
org.wildfly.clustering.web.session.oob.OOBSession Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source.
* Copyright 2021, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.wildfly.clustering.web.session.oob;
import java.time.Duration;
import java.time.Instant;
import java.util.Set;
import org.wildfly.clustering.ee.Batch;
import org.wildfly.clustering.web.session.ImmutableSession;
import org.wildfly.clustering.web.session.Session;
import org.wildfly.clustering.web.session.SessionAttributes;
import org.wildfly.clustering.web.session.SessionManager;
import org.wildfly.clustering.web.session.SessionMetaData;
/**
* Out-of-band session implementation, for use outside the context of a request.
* @author Paul Ferraro
*/
public class OOBSession implements Session, SessionMetaData, SessionAttributes {
private final SessionManager manager;
private final String id;
private final L localContext;
public OOBSession(SessionManager manager, String id, L localContext) {
this.manager = manager;
this.id = id;
this.localContext = localContext;
}
@Override
public String getId() {
return this.id;
}
@Override
public boolean isValid() {
try (B batch = this.manager.getBatcher().createBatch()) {
return this.manager.readSession(this.id) != null;
}
}
@Override
public SessionMetaData getMetaData() {
return this;
}
@Override
public void invalidate() {
try (B batch = this.manager.getBatcher().createBatch()) {
try (Session session = this.manager.findSession(this.id)) {
if (session == null) {
throw new IllegalStateException();
}
session.invalidate();
}
}
}
@Override
public SessionAttributes getAttributes() {
return this;
}
@Override
public L getLocalContext() {
return this.localContext;
}
@Override
public void close() {
// OOB session have no concept of lifecycle
}
@Override
public boolean isNew() {
try (B batch = this.manager.getBatcher().createBatch()) {
ImmutableSession session = this.manager.readSession(this.id);
if (session == null) {
throw new IllegalStateException();
}
return session.getMetaData().isNew();
}
}
@Override
public boolean isExpired() {
try (B batch = this.manager.getBatcher().createBatch()) {
ImmutableSession session = this.manager.readSession(this.id);
if (session == null) {
throw new IllegalStateException();
}
return session.getMetaData().isExpired();
}
}
@Override
public Instant getCreationTime() {
try (B batch = this.manager.getBatcher().createBatch()) {
ImmutableSession session = this.manager.readSession(this.id);
if (session == null) {
throw new IllegalStateException();
}
return session.getMetaData().getCreationTime();
}
}
@Override
public Instant getLastAccessStartTime() {
try (B batch = this.manager.getBatcher().createBatch()) {
ImmutableSession session = this.manager.readSession(this.id);
if (session == null) {
throw new IllegalStateException();
}
return session.getMetaData().getLastAccessStartTime();
}
}
@Override
public Instant getLastAccessTime() {
try (B batch = this.manager.getBatcher().createBatch()) {
ImmutableSession session = this.manager.readSession(this.id);
if (session == null) {
throw new IllegalStateException();
}
return session.getMetaData().getLastAccessTime();
}
}
@Override
public Duration getTimeout() {
try (B batch = this.manager.getBatcher().createBatch()) {
ImmutableSession session = this.manager.readSession(this.id);
if (session == null) {
throw new IllegalStateException();
}
return session.getMetaData().getTimeout();
}
}
@Override
public void setLastAccess(Instant startTime, Instant endTime) {
throw new IllegalStateException();
}
@Override
public void setMaxInactiveInterval(Duration duration) {
try (B batch = this.manager.getBatcher().createBatch()) {
try (Session session = this.manager.findSession(this.id)) {
if (session == null) {
throw new IllegalStateException();
}
session.getMetaData().setMaxInactiveInterval(duration);
}
}
}
@Override
public Set getAttributeNames() {
try (B batch = this.manager.getBatcher().createBatch()) {
ImmutableSession session = this.manager.readSession(this.id);
if (session == null) {
throw new IllegalStateException();
}
return session.getAttributes().getAttributeNames();
}
}
@Override
public Object getAttribute(String name) {
try (B batch = this.manager.getBatcher().createBatch()) {
ImmutableSession session = this.manager.readSession(this.id);
if (session == null) {
throw new IllegalStateException();
}
return session.getAttributes().getAttribute(name);
}
}
@Override
public Object removeAttribute(String name) {
try (B batch = this.manager.getBatcher().createBatch()) {
try (Session session = this.manager.findSession(this.id)) {
if (session == null) {
throw new IllegalStateException();
}
return session.getAttributes().removeAttribute(name);
}
}
}
@Override
public Object setAttribute(String name, Object value) {
try (B batch = this.manager.getBatcher().createBatch()) {
try (Session session = this.manager.findSession(this.id)) {
if (session == null) {
throw new IllegalStateException();
}
return session.getAttributes().setAttribute(name, value);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy