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

org.codehaus.mojo.unix.maven.deb.DebMojoUtil Maven / Gradle / Ivy

package org.codehaus.mojo.unix.maven.deb;

/*
 * The MIT License
 *
 * Copyright 2009 The Codehaus.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy of
 * this software and associated documentation files (the "Software"), to deal in
 * the Software without restriction, including without limitation the rights to
 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
 * of the Software, and to permit persons to whom the Software is furnished to do
 * so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

import fj.*;
import static fj.Function.*;
import fj.data.*;
import static fj.data.Option.*;
import org.codehaus.mojo.unix.*;
import org.codehaus.mojo.unix.java.*;
import org.codehaus.mojo.unix.maven.plugin.*;

/**
 * @author Trygve Laugstøl
 */
public class DebMojoUtil
{
    public static final F2 validateMojoSettingsAndApplyFormatSpecificSettingsToPackage =
        new F2()
        {
            public UnixPackage f( DebSpecificSettings debSpecificSettings, UnixPackage unixPackage )
            {
                return validateMojoSettingsAndApplyFormatSpecificSettingsToPackage( debSpecificSettings, unixPackage );
            }
        };

    public static UnixPackage validateMojoSettingsAndApplyFormatSpecificSettingsToPackage( DebSpecificSettings deb,
                                                                                           UnixPackage unixPackage )
    {
        if ( deb == null )
        {
            throw new MissingSettingException( "You need to specify the required properties when building deb packages." );
        }

        if ( deb.section.isNone() )
        {
            throw new MissingSettingException( "Section has to be specified." );
        }

        return DebUnixPackage.cast( unixPackage ).
            debParameters( fromNull( deb.priority.orSome( "standard" ) ),
                           fromNull( deb.section.some() ),
                           deb.useFakeroot,
                           deb.depends.map( flip( StringF.split ).f( "," ) ).orSome( List.nil() ),
                           deb.recommends.map( flip( StringF.split ).f( "," ) ).orSome( List.nil() ),
                           deb.suggests.map( flip( StringF.split ).f( "," ) ).orSome( List.nil() ),
                           deb.preDepends.map( flip( StringF.split ).f( "," ) ).orSome( List.nil() ),
                           deb.provides.map( flip( StringF.split ).f( "," ) ).orSome( List.nil() ),
                           deb.replaces.map( flip( StringF.split ).f( "," ) ).orSome( List.nil() ) );
    }

//    public static final F>> unfolder = new F>>()
//    {
//        public Option> f( String s )
//        {
//            int index = s.indexOf( ',' );
//
//            if ( s.length() == 0 || index == s.length() )
//            {
//                return Option.none();
//            }
//
//            if ( index == -1 )
//            {
//                return some( p( s.trim(), "" ) );
//            }
//
//            return some( p( s.substring( 0, index ).trim(), s.substring( index + 1 ) ) );
//        }
//    };
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy