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

org.openbakery.AbstractDistributeTask.groovy Maven / Gradle / Ivy

Go to download

XCode-Plugin is a plugin to allow custom XCode projects to build as generated by CMake

The newest version!
package org.openbakery

import org.apache.commons.io.FileUtils
import org.openbakery.packaging.PackageTask

import java.util.regex.Pattern

/**
 * User: rene
 * Date: 11/11/14
 */
class AbstractDistributeTask extends AbstractXcodeTask {

	private File archiveDirectory;

	File getProductsDirectory() {
		File productsDirectory = new File(getArchiveDirectory(), "Products")
		if (!productsDirectory.exists()) {
			throw new IllegalStateException("products directory not found: " + productsDirectory.absolutePath)
		}
		return productsDirectory
	}

	File getApplicationBundleDirectory() {
		File appBundleDirectory = new File(getProductsDirectory(), "Applications/" + getApplicationNameFromArchive() + ".app")
		if (!appBundleDirectory.exists()) {
			throw new IllegalStateException("app directory not found: " + appBundleDirectory.absolutePath);
		}
		return appBundleDirectory;
	}


	def getAppBundleInfoPlist() {

		File infoPlist = new File(getApplicationBundleDirectory(), "Info.plist")

		if (!infoPlist.exists()) {
			throw new IllegalStateException("Info.plist not found: " + infoPlist.absolutePath);
		}
		return infoPlist;
	}



	File getDestinationFile(File outputDirectory, String extension) {
		if (project.xcodebuild.bundleNameSuffix != null) {
			return new File(outputDirectory, getApplicationNameFromArchive() + project.xcodebuild.bundleNameSuffix + extension)
		}
		return new File(outputDirectory, getApplicationNameFromArchive() + extension)
	}

	File getDestinationBundleFile(File outputDirectory, File bundle) {
		if (!bundle.exists()) {
			throw new IllegalArgumentException("cannot find bundle: " + bundle)
		}

		String name = bundle.getName();
		String extension = ""
		int index = name.indexOf(".")
		if (index > 0) {
			extension = name.substring(index);
		}

		return getDestinationFile(outputDirectory, extension)
	}


	File copyBundleToDirectory(File outputDirectory, File bundle) {
		if (!outputDirectory.exists()) {
			outputDirectory.mkdirs()
		}



		File destinationBundle = getDestinationBundleFile(outputDirectory, bundle)
		FileUtils.copyFile(getIpaBundle()	, destinationBundle)

		logger.lifecycle("Created bundle archive in {}", outputDirectory)
		return destinationBundle;
	}

	File copyIpaToDirectory(File outputDirectory) {
		return copyBundleToDirectory(outputDirectory, getIpaBundle())
	}


	File copyDsymToDirectory(File outputDirectory) {
		return copyBundleToDirectory(outputDirectory, getDSymBundle())
	}

	File getBundle(String extension) {
		File packageDirectory = new File(project.getBuildDir(), PackageTask.PACKAGE_PATH)

		if (!packageDirectory.exists()) {
			throw new IllegalStateException("package does not exist: " + packageDirectory)
		}

		Pattern pattern = Pattern.compile(".*" + extension)
		def fileList = packageDirectory.list(
						[accept: { d, f -> f ==~ pattern }] as FilenameFilter
		).toList()


		if (fileList.isEmpty()) {
			throw new IllegalStateException("No ipa found")
		}

		return new File(packageDirectory, fileList.get(0))
	}

	File getIpaBundle() {
		return getBundle("ipa")
	}


	File getAppBundle() {
		return getBundle("app")
	}


	File getDSymBundle() {
		File dSym = new File(getArchiveDirectory(), "dSYMs/" + getApplicationNameFromArchive() + ".app.dSYM");
		if (!dSym.exists()) {
			throw new IllegalStateException("dSYM not found: " + dSym)
		}
		return dSym;
	}



	def getArchiveDirectory() {
		if (archiveDirectory != null) {
			return archiveDirectory;
		}
		File archiveDirectory = new File(project.getBuildDir(), XcodeBuildArchiveTask.ARCHIVE_FOLDER)
		if (!archiveDirectory.exists()) {
			throw new IllegalStateException("Archive does not exist: " + archiveDirectory)
		}

		def fileList = archiveDirectory.list(
						[accept: { d, f -> f ==~ /.*xcarchive/ }] as FilenameFilter
		).toList()
		if (fileList.isEmpty()) {
			throw new IllegalStateException("No xcarchive found")
		}
		return new File(archiveDirectory, fileList.get(0))

	}

	def getApplicationNameFromArchive() {
		def fileList = new File(getArchiveDirectory(), "Products/Applications").list(
						[accept: { d, f -> f ==~ /.*app/ }] as FilenameFilter
		).toList()

		if (fileList.isEmpty()) {
			throw new IllegalStateException("No app	found")
		}
		return fileList.get(0) - ".app"
	}






}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy