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

com.yahoo.application.container.impl.StandaloneContainerRunner Maven / Gradle / Ivy

There is a newer version: 8.442.54
Show newest version
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.application.container.impl;

import com.yahoo.text.Utf8;

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;

/**
 * @author Tony Vaagenes
 * @author ollivir
 */
public class StandaloneContainerRunner {

    public static Path createApplicationPackage(String servicesXml) {
        try {
            return createApplicationDirectory(servicesXml);
        } catch (IOException e) {
            throw new RuntimeException(e);
        }
    }

    private static Path createApplicationDirectory(String servicesXml) throws IOException {
        Path applicationDir = Files.createTempDirectory("application");
        Path servicesXmlFile = applicationDir.resolve("services.xml");
        String content = servicesXml;
        
        if (!servicesXml.startsWith("\n" + servicesXml;
        }
        Files.write(servicesXmlFile, Utf8.toBytes(content));
        return applicationDir;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy