org.grails.web.servlet.GrailsFlashScope Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grace-web-common Show documentation
Show all versions of grace-web-common Show documentation
Grace Framework : Grace Web Common
/*
* Copyright 2004-2023 the original author or authors.
*
* 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
*
* https://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.grails.web.servlet;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import jakarta.servlet.http.HttpSession;
import groovy.lang.GroovySystem;
import groovy.lang.MetaClass;
import org.springframework.web.context.request.RequestContextHolder;
import grails.web.mvc.FlashScope;
import org.grails.web.servlet.mvc.GrailsWebRequest;
import org.grails.web.util.GrailsApplicationAttributes;
/**
* Grails implementation of Flash scope (@see grails.web.mvc.FlashScope).
*
* @author Graeme Rocher
*/
@SuppressWarnings({ "unchecked", "rawtypes" })
public class GrailsFlashScope implements FlashScope {
private static final long serialVersionUID = 1457772347769500476L;
private Map current = new ConcurrentHashMap();
private Map next = new ConcurrentHashMap();
public static final String ERRORS_PREFIX = "org.codehaus.groovy.grails.ERRORS_";
private static final String ERRORS_PROPERTY = "errors";
private final boolean registerWithSession;
public GrailsFlashScope() {
this(true);
}
public GrailsFlashScope(boolean registerWithSession) {
this.registerWithSession = registerWithSession;
}
public void next() {
this.current.clear();
this.current = new ConcurrentHashMap(this.next);
this.next.clear();
reassociateObjectsWithErrors(this.current);
}
public Map getNow() {
return this.current;
}
private void reassociateObjectsWithErrors(Map scope) {
for (Object key : scope.keySet()) {
Object value = scope.get(key);
if (value instanceof Map) {
reassociateObjectsWithErrors((Map) value);
}
reassociateObjectWithErrors(scope, value);
}
}
private void reassociateObjectWithErrors(Map scope, Object value) {
if (value instanceof Collection) {
Collection values = (Collection) value;
for (Object val : values) {
reassociateObjectWithErrors(scope, val);
}
}
else {
String errorsKey = ERRORS_PREFIX + System.identityHashCode(value);
Object errors = scope.get(errorsKey);
if (value != null && errors != null) {
MetaClass mc = GroovySystem.getMetaClassRegistry().getMetaClass(value.getClass());
if (mc.hasProperty(value, ERRORS_PROPERTY) != null) {
mc.setProperty(value, ERRORS_PROPERTY, errors);
}
}
}
}
public int size() {
return this.current.size() + this.next.size();
}
public void clear() {
this.current.clear();
this.next.clear();
}
public boolean isEmpty() {
return size() == 0;
}
public boolean containsKey(Object key) {
return (this.current.containsKey(key) || this.next.containsKey(key));
}
public boolean containsValue(Object value) {
return (this.current.containsValue(value) || this.next.containsValue(value));
}
public Collection