/*** * Copyright (c) 2009 Caelum - www.caelum.com.br/opensource All rights reserved. * * 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 br.com.caelum.vraptor.ioc.guice; import static com.google.inject.matcher.Matchers.annotatedWith; import static com.google.inject.matcher.Matchers.not; import java.util.Map; import java.util.Map.Entry; import javax.servlet.ServletContext; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import br.com.caelum.vraptor.ComponentRegistry; import br.com.caelum.vraptor.core.BaseComponents; import br.com.caelum.vraptor.core.RequestInfo; import br.com.caelum.vraptor.http.MutableRequest; import br.com.caelum.vraptor.http.MutableResponse; import br.com.caelum.vraptor.ioc.ApplicationScoped; import br.com.caelum.vraptor.ioc.Container; import br.com.caelum.vraptor.ioc.PrototypeScoped; import br.com.caelum.vraptor.ioc.RequestScoped; import br.com.caelum.vraptor.ioc.SessionScoped; import br.com.caelum.vraptor.ioc.StereotypeHandler; import br.com.caelum.vraptor.ioc.spring.VRaptorRequestHolder; import br.com.caelum.vraptor.serialization.xstream.XStreamJSONSerialization; import br.com.caelum.vraptor.serialization.xstream.XStreamXMLSerialization; import com.google.inject.AbstractModule; import com.google.inject.Provider; import com.google.inject.Scopes; import com.google.inject.TypeLiteral; import com.google.inject.matcher.AbstractMatcher; import com.google.inject.matcher.Matcher; import com.google.inject.multibindings.Multibinder; /** * * An AbstractModule that wires VRaptor components. * * @author Lucas Cavalcanti * @author Sergio Lopes * * @since 3.2 * */ public class VRaptorAbstractModule extends AbstractModule { private static final Logger logger = LoggerFactory.getLogger(VRaptorAbstractModule.class); private final ServletContext context; private final Container container; public VRaptorAbstractModule(ServletContext context, Container container) { this.context = context; this.container = container; } @Override protected void configure() { bindScope(RequestScoped.class, GuiceProvider.REQUEST); bindScope(SessionScoped.class, GuiceProvider.SESSION); bindScope(ApplicationScoped.class, Scopes.SINGLETON); bindScope(PrototypeScoped.class, Scopes.NO_SCOPE); Matcher<TypeLiteral<?>> isApplication = type(annotatedWith(ApplicationScoped.class)); Matcher<TypeLiteral<?>> isSession = type(annotatedWith(SessionScoped.class)); bindListener(isApplication, new ScopeLifecycleListener(GuiceProvider.APPLICATION)); bindListener(isSession, new ScopeLifecycleListener(GuiceProvider.SESSION)); bindListener(not(isApplication).and(not(isSession)), new ScopeLifecycleListener(GuiceProvider.REQUEST)); requestInfoBindings(); bind(Container.class).toInstance(container); GuiceComponentRegistry registry = new GuiceComponentRegistry(binder(), Multibinder.newSetBinder(binder(), StereotypeHandler.class)); bind(ComponentRegistry.class).toInstance(registry); registry.registerInScope((Map) BaseComponents.getApplicationScoped(), GuiceProvider.APPLICATION); registry.registerInScope((Map) BaseComponents.getPrototypeScoped(), Scopes.NO_SCOPE); registry.registerInScope((Map) BaseComponents.getRequestScoped(), GuiceProvider.REQUEST); for (Class converter : BaseComponents.getBundledConverters()) { registry.register(converter, converter); } for (Class handler : BaseComponents.getStereotypeHandlers()) { registry.register(handler, handler); } for (Entry<Class<?>, Class<?>> entry : BaseComponents.getCachedComponents().entrySet()) { registry.register(entry.getKey(), entry.getValue()); } //XXX registry.register(XStreamXMLSerialization.class, XStreamXMLSerialization.class); registry.register(XStreamJSONSerialization.class, XStreamJSONSerialization.class); } private void requestInfoBindings() { bind(MutableRequest.class).toProvider(new Provider<MutableRequest>() { public MutableRequest get() { return VRaptorRequestHolder.currentRequest().getRequest(); } }); bind(RequestInfo.class).toProvider(new Provider<RequestInfo>() { public RequestInfo get() { return VRaptorRequestHolder.currentRequest(); } }); bind(HttpSession.class).toProvider(new Provider<HttpSession>() { public HttpSession get() { return VRaptorRequestHolder.currentRequest().getRequest().getSession(); } }); bind(MutableResponse.class).toProvider(new Provider<MutableResponse>() { public MutableResponse get() { return VRaptorRequestHolder.currentRequest().getResponse(); } }); bind(HttpServletResponse.class).to(MutableResponse.class); bind(HttpServletRequest.class).to(MutableRequest.class); bind(ServletContext.class).toInstance(context); } static Matcher<TypeLiteral<?>> type(final Matcher<? super Class> matcher) { return new AbstractMatcher<TypeLiteral<?>>() { public boolean matches(TypeLiteral<?> literal) { return matcher.matches(literal.getRawType()); } }; } }