#!/usr/bin/perl


# build-lives-rfx-plugin-multi - Copyright G. Finch (salsaman) 2005
# Released under the GPL 2.0 or higher - see file COPYING or www.gnu.org for details


#########################################################

my ($dir_extra)="/lives/plugins/effects/";
my ($home_dir_extra)="/.lives-dir/plugins/effects/";
my ($builder)="build-lives-rfx-plugin";
my ($type)="builtin"; # default

#########################################################

my ($dir);
my ($builder_location);

if (defined $ARGV[0]) {
    $type=$ARGV[0];
}

if (defined $ARGV[1]) {
    $dir=$ARGV[1];
}

if (defined $ARGV[2]) {
    $build_bindir=$ARGV[2];
}

if (!defined($dir)) {
#get <tempdir>
    `smogrify get_tempdir rfx_builder`;
    open IN,"< /tmp/.smogrify.rfx_builder";
    read IN,$tmpdir,512;
    close IN;
    unlink "/tmp/.smogrify.rfx_builder";
    
    if ($tmpdir eq "") {
	$tmpdir="/tmp";
    }
    
    
# check we have the plugin builder
    `smogrify get_location $builder rfx builder`;
    open IN,"< $tmpdir/.smogval.rfx.builder";
    read IN,$builder_location,512;
    close IN;
    unlink "$tmpdir/.smogval.rfx.builder";
    
    if ($builder_location eq "") {
	print "Unable to locate $builder. Exiting.\n";
	exit 3;
    }
    
    
    if ($type eq "builtin") {
# get the prefix_dir from ~/.lives
	`smogrify get_pref prefix_dir rfx builder`;
	open IN,"< $tmpdir/.smogval.rfx.builder";
	read IN,$dir,512;
	close IN;
	unlink "$tmpdir/.smogval.rfx.builder";
	chomp($dir);
	$dir.="/share";
   }
    else {
	$dir=$ENV{"HOME"};
	chomp($dir);
    }
}



if ($type eq "builtin") {
    $dir.=$dir_extra;
    $indir=$dir."RFXscripts/";
    unlink <$indir/*~>;
    $outdir=$dir."rendered/";
}
elsif ($type eq "custom") {
    $dir.=$home_dir_extra;
    $indir=$dir."RFXscripts/custom/";
    unlink <$indir/*~>;
    $outdir=$dir."rendered/custom/";
}
elsif ($type eq "test") {
    $dir.=$home_dir_extra;
    $indir=$dir."RFXscripts/test/";
    unlink <$indir/*~>;
    $outdir=$dir."rendered/test/";
}
else {
    print "error: unknown RFX type\n";
    exit 1;
}

print "Deleting scripted plugins from $outdir\n";
&remove_scripted_plugins($outdir);

print "Building all in $indir\n";


$mkdirhier=&location("mkdirhier");
`$mkdirhier $outdir`;

opendir DIR,$indir;
while ($plugin=readdir(DIR)) {
    unless ($plugin =~ /^\./) {
	print "building $indir$plugin \n";
	if (defined $build_bindir) {
	    system("$build_bindir/build-lives-rfx-plugin $indir$plugin $outdir");
	}
	else {
	    system("build-lives-rfx-plugin $indir$plugin $outdir");
	}
    }
}
close DIR;

exit 0;

######################################################################

sub remove_scripted_plugins {
    # remove only plugins with properties&0x8000, and "broken" plugins
    my ($outdir)=@_;
    my ($file);
    opendir DIR,$outdir;
    while ($file=readdir(DIR)) {
	unless ($file =~ /^\./) {
	    if (-x "$outdir$file") {
		my ($fx_caps)=`$outdir$file get_capabilities`;
		if ($fx_caps&0x8000||$fx_caps eq "") {
		    unlink "$outdir$file";
		}
	    }
	}
    }
    closedir DIR;
}


sub location {
    # return the location of an executable
    my ($command)=@_;
    my ($location)=`which $command 2>/dev/null`;
    chomp($location);
    $location;
}
