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

jolie.lang.parse.module.ModuleSource Maven / Gradle / Ivy

/*
 * Copyright (C) 2020 Narongrit Unwerawattana 
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 * MA 02110-1301  USA
 */

package jolie.lang.parse.module;

import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.net.URI;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.List;
import java.util.Optional;
import java.util.jar.Attributes;
import java.util.jar.JarFile;
import java.util.jar.Manifest;
import java.util.zip.ZipEntry;
import jolie.lang.Constants;

/**
 * an Interface of Joile module Source
 */
public interface ModuleSource {

	/**
	 * @return URI location of the module
	 */
	URI uri();

	/**
	 * @return an optional include path for parsing this module
	 */
	Optional< String > includePath();

	/**
	 * @return an InputStream of source
	 */
	Optional< InputStream > openStream();
}


class PathSource implements ModuleSource {

	private final Path path;

	public PathSource( Path p ) {
		this.path = p;
	}

	@Override
	public URI uri() {
		return this.path.toUri();
	}

	/**
	 * the include path of ol file should be empty
	 */
	@Override
	public Optional< String > includePath() {
		return Optional.empty();
	}

	@Override
	public Optional< InputStream > openStream() {
		try {
			InputStream is = new FileInputStream( this.path.toFile() );
			// wrap with BufferInputStream for improve performance
			return Optional.of( new BufferedInputStream( is ) );
		} catch( FileNotFoundException e ) {
			return Optional.empty();
		}
	}
}


class JapSource implements ModuleSource {

	private final JarFile japFile;
	private final URI uri;
	private final String filePath;
	private final String parentPath;
	private final ZipEntry moduleEntry;

	public JapSource( Path f ) throws IOException {
		this.japFile = new JarFile( f.toFile() );
		this.uri = f.toUri();
		Manifest manifest = this.japFile.getManifest();

		if( manifest != null ) { // See if a main program is defined through a Manifest attribute
			Attributes attrs = manifest.getMainAttributes();
			this.filePath = attrs.getValue( Constants.Manifest.MAIN_PROGRAM );
			this.parentPath = Paths.get( this.filePath ).getParent().toString();
			moduleEntry = japFile.getEntry( this.filePath );
			if( moduleEntry == null ) {
				throw new IOException();
			}
		} else {
			throw new IOException();
		}
	}

	public JapSource( Path f, List< String > path ) throws IOException {
		this.japFile = new JarFile( f.toFile() );
		this.uri = f.toUri();
		this.filePath = String.join( "/", path );
		moduleEntry = japFile.getEntry( this.filePath + ".ol" );
		if( moduleEntry == null ) {
			throw new FileNotFoundException(
				this.filePath + " in " + f.toString() );
		}
		this.parentPath = Paths.get( this.filePath ).getParent().toString();
	}

	/**
	 * additional includePath of JAP source is a parent path of the main execution file defined at main
	 * program
	 */
	@Override
	public Optional< String > includePath() {
		return Optional.of( "jap:" + this.uri.toString() + "!/" + this.parentPath );
	}

	@Override
	public URI uri() {
		return this.uri;
	}

	@Override
	public Optional< InputStream > openStream() {
		try {
			return Optional.of( this.japFile.getInputStream( this.moduleEntry ) );
		} catch( IOException e ) {
			return Optional.empty();
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy