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

com.aspectran.core.activity.InstantActivitySupport Maven / Gradle / Ivy

There is a newer version: 8.1.5
Show newest version
/*
 * Copyright (c) 2008-2022 The Aspectran Project
 *
 * 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.aspectran.core.activity;

import com.aspectran.core.adapter.ApplicationAdapter;
import com.aspectran.core.component.bean.BeanRegistry;
import com.aspectran.core.component.bean.annotation.AvoidAdvice;
import com.aspectran.core.component.bean.aware.ActivityContextAware;
import com.aspectran.core.component.template.TemplateRenderer;
import com.aspectran.core.context.ActivityContext;
import com.aspectran.core.context.env.Environment;
import com.aspectran.core.context.rule.TransletRule;
import com.aspectran.core.context.rule.type.MethodType;
import com.aspectran.core.lang.NonNull;
import com.aspectran.core.support.i18n.message.MessageSource;
import com.aspectran.core.util.Assert;
import com.aspectran.core.util.StringUtils;

/**
 * Inheriting this class provides access to the activity context and
 * facilitates execution of the activity.
 *
 * 

Created: 29/09/2019

*/ @AvoidAdvice public abstract class InstantActivitySupport implements ActivityContextAware { private ActivityContext context; @NonNull protected ActivityContext getActivityContext() { Assert.state(context != null, "No ActivityContext injected"); return context; } @Override public void setActivityContext(ActivityContext context) { Assert.state(this.context == null, "ActivityContext already injected"); this.context = context; } protected Activity getAvailableActivity() { return getActivityContext().getAvailableActivity(); } protected Activity getCurrentActivity() { return getActivityContext().getCurrentActivity(); } protected boolean hasCurrentActivity() { return getActivityContext().hasCurrentActivity(); } protected ApplicationAdapter getApplicationAdapter() { return getActivityContext().getApplicationAdapter(); } protected Environment getEnvironment() { return getActivityContext().getEnvironment(); } protected BeanRegistry getBeanRegistry() { return getActivityContext().getBeanRegistry(); } protected TemplateRenderer getTemplateRenderer() { return getActivityContext().getTemplateRenderer(); } protected MessageSource getMessageSource() { return getActivityContext().getMessageSource(); } protected V instantActivity(InstantAction instantAction) { if (instantAction == null) { throw new IllegalArgumentException("instantAction must not be null"); } try { InstantActivity activity = new InstantActivity(getActivityContext()); return activity.perform(instantAction); } catch (Exception e) { throw new InstantActivityException(e); } } protected void instantActivity(String transletName) { if (StringUtils.isEmpty(transletName)) { throw new IllegalArgumentException("transletName must not be null or empty"); } Activity currentActivity = getCurrentActivity(); Translet translet = currentActivity.getTranslet(); if (translet == null) { throw new UnsupportedOperationException("No such translet in " + currentActivity); } try { TransletRule transletRule = getActivityContext().getTransletRuleRegistry().getTransletRule(transletName); if (transletRule == null) { throw new TransletNotFoundException(transletName, MethodType.GET); } InstantActivity activity = new InstantActivity(getActivityContext()); activity.setSessionAdapter(currentActivity.getSessionAdapter()); activity.setRequestAdapter(currentActivity.getRequestAdapter()); activity.setResponseAdapter(currentActivity.getResponseAdapter()); activity.prepare(transletName, transletRule); activity.perform(); } catch (Exception e) { throw new InstantActivityException(e); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy