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

org.glassfish.appclient.server.core.AppClientGroupFacadeGenerator Maven / Gradle / Ivy

There is a newer version: 6.2024.6
Show newest version
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 2009-2014 Oracle and/or its affiliates. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License.  You can
 * obtain a copy of the License at
 * https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
 * or packager/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at packager/legal/LICENSE.txt.
 *
 * GPL Classpath Exception:
 * Oracle designates this particular file as subject to the "Classpath"
 * exception as provided by Oracle in the GPL Version 2 section of the License
 * file that accompanied this code.
 *
 * Modifications:
 * If applicable, add the following below the License Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyright [year] [name of copyright owner]"
 *
 * Contributor(s):
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */

package org.glassfish.appclient.server.core;

import com.sun.enterprise.deployment.Application;
import com.sun.enterprise.deployment.BundleDescriptor;
import org.glassfish.deployment.common.ModuleDescriptor;
import java.io.*;
import java.util.Collection;
import java.util.Iterator;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.jar.Attributes;
import java.util.jar.JarEntry;
import java.util.jar.JarFile;
import java.util.jar.Manifest;
import java.util.logging.Level;
import java.util.logging.Logger;
import jakarta.inject.Inject;
import org.glassfish.api.deployment.DeployCommandParameters;
import org.glassfish.api.deployment.DeploymentContext;
import org.glassfish.deployment.common.ClientArtifactsManager;
import org.glassfish.deployment.common.DeploymentException;
import org.glassfish.deployment.versioning.VersioningSyntaxException;
import org.glassfish.appclient.server.connector.CarType;
import org.glassfish.appclient.server.core.jws.JavaWebStartInfo;
import org.glassfish.deployment.common.DeploymentUtils;
import org.glassfish.deployment.versioning.VersioningUtils;

import org.jvnet.hk2.annotations.Service;
import org.glassfish.hk2.api.PerLookup;
import org.glassfish.hk2.api.ServiceLocator;

/**
 * Generates the app client group (EAR-level) facade JAR.
 * 

* Because an EAR can contain multiple clients, this might be run multiple * times. To avoid extra work the class stores a flag that it has done its * work in the deployment context's transient app data. * * @author tjquinn */ @Service @PerLookup public class AppClientGroupFacadeGenerator { private static final String GLASSFISH_APPCLIENT_GROUP_FACADE_CLASS_NAME = "org.glassfish.appclient.client.AppClientGroupFacade"; private static final Attributes.Name GLASSFISH_APPCLIENT_GROUP = new Attributes.Name("GlassFish-AppClient-Group"); private static final String GF_CLIENT_MODULE_NAME = "fish.payara.server.appclient.gf-client-module"; private static final String GROUP_FACADE_ALREADY_GENERATED = "groupFacadeAlreadyGenerated"; private static final String PERMISSIONS_XML_PATH = "META-INF/permissions.xml"; private DeploymentContext dc; private AppClientDeployerHelper helper; @Inject private ServiceLocator serviceLocator; @Inject private CarType carType; void run(final AppClientDeployerHelper helper) { dc = helper.dc(); this.helper = helper; if ( ! groupFacadeAlreadyGenerated().get()) { generateGroupFacade(); } } private AtomicBoolean groupFacadeAlreadyGenerated() { AtomicBoolean groupFacadeAlreadyGenerated = dc.getTransientAppMetaData(GROUP_FACADE_ALREADY_GENERATED, AtomicBoolean.class); if (groupFacadeAlreadyGenerated == null) { groupFacadeAlreadyGenerated = new AtomicBoolean(false); dc.addTransientAppMetaData(GROUP_FACADE_ALREADY_GENERATED, groupFacadeAlreadyGenerated); } return groupFacadeAlreadyGenerated; } private void recordGroupFacadeGeneration() { dc.getTransientAppMetaData(GROUP_FACADE_ALREADY_GENERATED, AtomicBoolean.class).set(true); } private void generateGroupFacade() { final Application application = dc.getModuleMetaData(Application.class); final Collection> appClients = application.getModuleDescriptorsByType(carType); final StringBuilder appClientGroupListSB = new StringBuilder(); /* /* * For each app client, get its facade's URI to include in the * generated EAR facade's client group listing. */ for (Iterator> it = appClients.iterator(); it.hasNext(); ) { ModuleDescriptor md = it.next(); appClientGroupListSB.append((appClientGroupListSB.length() > 0) ? " " : "") .append(earDirUserURIText(dc)).append(appClientFacadeUserURI(md.getArchiveUri())); } try { addTopLevelContentToGroupFacade(); /* * Pass the EAR's generated/xml directory for where to generated the * group facade. Because the directories are flattened, even if the * client is actually x/y/z.jar its expanded directory will be just * one level lower than the EAR's directory. */ generateAndRecordEARFacadeContents( dc, appClientGroupListSB.toString()); recordGroupFacadeGeneration(); } catch (Exception e) { throw new DeploymentException(e); } } private void addTopLevelContentToGroupFacade() throws IOException { helper.addClientPolicyFiles(null); } private String earDirUserURIText(final DeploymentContext dc) { final DeployCommandParameters deployParams = dc.getCommandParameters(DeployCommandParameters.class); final String appName = deployParams.name(); try { return VersioningUtils.getUntaggedName(appName) + "Client/"; } catch (VersioningSyntaxException ex) { Logger.getLogger(JavaWebStartInfo.APPCLIENT_SERVER_MAIN_LOGGER, JavaWebStartInfo.APPCLIENT_SERVER_LOGMESSAGE_RESOURCE).log(Level.SEVERE, null, ex); } return appName; } private String appClientFacadeUserURI(String appClientModuleURIText) { if (appClientModuleURIText.endsWith("_jar")) { appClientModuleURIText = appClientModuleURIText.substring(0, appClientModuleURIText.lastIndexOf("_jar")) + ".jar"; } final int dotJar = appClientModuleURIText.lastIndexOf(".jar"); String appClientFacadePath = appClientModuleURIText.substring(0, dotJar) + "Client.jar"; return appClientFacadePath; } /** * Generates content for the top-level generated client JAR from the * app clients in this app. *

* Higher-level logic will actually create the client JAR, because the need * for a client JAR can be triggered by other deployers (EJB for generated * stubs and web services), not only app clients. * @param dc * @param appScratchDir * @param facadeFileName * @param appClientGroupList * @throws IOException */ private void generateAndRecordEARFacadeContents( final DeploymentContext dc, final String appClientGroupList) throws IOException { final ClientArtifactsManager clientArtifactsManager = ClientArtifactsManager.get(dc); final Manifest manifest = new Manifest(); Attributes mainAttrs = manifest.getMainAttributes(); mainAttrs.put(Attributes.Name.MANIFEST_VERSION, "1.0"); mainAttrs.put(Attributes.Name.MAIN_CLASS, GLASSFISH_APPCLIENT_GROUP_FACADE_CLASS_NAME); mainAttrs.put(GLASSFISH_APPCLIENT_GROUP, appClientGroupList); //Now manifest is ready to be written. final File manifestFile = File.createTempFile("groupMF", ".MF"); final OutputStream manifestOutputStream = new BufferedOutputStream(new FileOutputStream(manifestFile)); //facadeArchive.putNextEntry(JarFile.MANIFEST_NAME); try { manifest.write(manifestOutputStream); } finally { manifestOutputStream.close(); } clientArtifactsManager.add(manifestFile, JarFile.MANIFEST_NAME, true /* isTemp */); writeMainClass(clientArtifactsManager); /* * If the EAR contains a permissions file we need to make sure it's added * to the group-level generated facade JAR. */ final File permissionsFile = getPermissionsFile(); if (permissionsFile.canRead()) { clientArtifactsManager.add(permissionsFile, PERMISSIONS_XML_PATH, false /* isTemp */); } /* * Higher-level code will copy the files generated here plus other deployers' * artifacts - such as generated stubs - into the generated client JAR * which the app client deployer views as the group facade. * Each client's individual facade JARs then refer * to the group facade in their Class-Path so they can see the stubs. * This also allows Java SE clients to add the group facade JAR to * the runtime class path and see the stubs. (This allows users who * did this in v2 to use the same technique.) */ } private File getPermissionsFile() { return new File(new File(dc.getSource().getParentArchive().getURI()), PERMISSIONS_XML_PATH); } private void writeMainClass(final ClientArtifactsManager clientArtifactsManager) throws IOException { final String mainClassResourceName = GLASSFISH_APPCLIENT_GROUP_FACADE_CLASS_NAME.replace('.', '/') + ".class"; final File mainClassJAR = new File( AppClientDeployerHelper.getModulesDir(serviceLocator), AppClientDeployerHelper.GF_CLIENT_MODULE_PATH); final File mainClassFile = File.createTempFile("main", ".class"); final OutputStream os = new BufferedOutputStream(new FileOutputStream(mainClassFile)); InputStream is = null; JarFile jf = null; try { jf = new JarFile(mainClassJAR); final JarEntry entry = jf.getJarEntry(mainClassResourceName); is = jf.getInputStream(entry); DeploymentUtils.copyStream(is, os); is.close(); clientArtifactsManager.add(mainClassFile, mainClassResourceName, true); } catch (Exception e) { throw new DeploymentException(e); } finally { try { os.close(); } finally { try { if (is != null) { is.close(); } } finally { if (jf != null) { jf.close(); } } } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy