io.ap4k.openshift.generator.OpenshiftApplicationGenerator Maven / Gradle / Ivy
The newest version!
/**
* Copyright 2018 The original 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
*
* 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 io.ap4k.openshift.generator;
import io.ap4k.WithProject;
import io.ap4k.WithSession;
import io.ap4k.Generator;
import io.ap4k.SessionListener;
import io.ap4k.config.ConfigurationSupplier;
import io.ap4k.openshift.adapter.OpenshiftConfigAdapter;
import io.ap4k.openshift.annotation.OpenshiftApplication;
import io.ap4k.openshift.config.OpenshiftConfig;
import io.ap4k.openshift.config.OpenshiftConfigBuilder;
import io.ap4k.openshift.config.OpenshiftConfigCustomAdapter;
import io.ap4k.openshift.configurator.ApplySourceToImageHook;
import javax.lang.model.element.Element;
import io.ap4k.openshift.handler.OpenshiftHandler;
import io.ap4k.openshift.hook.OcBuildHook;
import io.ap4k.project.ApplyProjectInfo;
import java.util.Map;
public interface OpenshiftApplicationGenerator extends Generator, WithSession, WithProject, SessionListener {
String OPENSHIFT = "openshift";
String DEFAULT_S2I_BUILDER_IMAGE = "fabric8/s2i-java:2.3";
OpenshiftConfig DEFAULT_SOURCE_TO_IMAGE_CONFIG = new OpenshiftConfigBuilder()
.withBuilderImage(DEFAULT_S2I_BUILDER_IMAGE)
.build();
default void add(Element element) {
OpenshiftApplication openshiftApplication = element.getAnnotation(OpenshiftApplication.class);
OpenshiftConfig openshiftConfig = OpenshiftConfigCustomAdapter.newBuilder(getProject(), openshiftApplication).build();
on(new ConfigurationSupplier<>(OpenshiftConfigAdapter.newBuilder(element.getAnnotation(OpenshiftApplication.class))
.accept(new ApplyProjectInfo(getProject()))
.accept(new ApplySourceToImageHook(openshiftConfig))));
}
default void add(Map map) {
OpenshiftConfig openshiftConfig = OpenshiftConfigAdapter.newBuilder((Map) map.get(OpenshiftApplication.class.getName())).build();
on(new ConfigurationSupplier<>(OpenshiftConfigAdapter.newBuilder(propertiesMap(map, OpenshiftApplication.class))
.accept(new ApplyProjectInfo(getProject()))
.accept(new ApplySourceToImageHook(openshiftConfig))));
}
default void on(ConfigurationSupplier config) {
session.configurators().add(config);
session.handlers().add(new OpenshiftHandler(session.resources()));
session.addListener(this);
}
default void onClosed() {
//We ned to set the TTCL, becuase the KubenretesClient used in this part of code, needs TTCL so that java.util.ServiceLoader can work.
ClassLoader tccl = Thread.currentThread().getContextClassLoader();
try {
Thread.currentThread().setContextClassLoader(OcBuildHook.class.getClassLoader());
OpenshiftConfig config = session.configurators().get(OpenshiftConfig.class).orElse(DEFAULT_SOURCE_TO_IMAGE_CONFIG);
String name = session.configurators().get(OpenshiftConfig.class).map(c -> c.getName()).orElse(getProject().getBuildInfo().getName());
if (config.isAutoBuildEnabled() || config.isAutoDeployEnabled()) {
OcBuildHook hook = new OcBuildHook(name, config, getProject(), session.getGeneratedResources().get("openshift"));
hook.register();
}
} finally {
Thread.currentThread().setContextClassLoader(tccl);
}
}
}