OpenCores
URL https://opencores.org/ocsvn/socgen/socgen/trunk

Subversion Repositories socgen

[/] [socgen/] [trunk/] [tools/] [sys/] [soc_link_child] - Diff between revs 94 and 99

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 94 Rev 99
Line 17... Line 17...
#/*  Author(s):                                                        */
#/*  Author(s):                                                        */
#/*      - John Eaton, jt_eaton@opencores.org                          */
#/*      - John Eaton, jt_eaton@opencores.org                          */
#/*                                                                    */
#/*                                                                    */
#/**********************************************************************/
#/**********************************************************************/
#/*                                                                    */
#/*                                                                    */
#/*    Copyright (C) <2010>                     */
#/*    Copyright (C) <2010-2011>                */
#/*                                                                    */
#/*                                                                    */
#/*  This source file may be used and distributed without              */
#/*  This source file may be used and distributed without              */
#/*  restriction provided that this copyright statement is not         */
#/*  restriction provided that this copyright statement is not         */
#/*  removed from the file and that any derivative work contains       */
#/*  removed from the file and that any derivative work contains       */
#/*  the original copyright notice and the associated disclaimer.      */
#/*  the original copyright notice and the associated disclaimer.      */
Line 49... Line 49...
# General PERL config
# General PERL config
############################################################################
############################################################################
use Getopt::Long;
use Getopt::Long;
use English;
use English;
use File::Basename;
use File::Basename;
 
use Cwd;
 
use XML::LibXML;
 
 
 
 
$OUTPUT_AUTOFLUSH = 1; # set autoflush of stdout to TRUE.
$OUTPUT_AUTOFLUSH = 1; # set autoflush of stdout to TRUE.
 
 
 
 
 
 
Line 60... Line 63...
############################################################################
############################################################################
### Process the options
### Process the options
############################################################################
############################################################################
 
 
Getopt::Long::config("require_order", "prefix=-");
Getopt::Long::config("require_order", "prefix=-");
GetOptions("h",
GetOptions("h","help",
 
           "vendor=s" => \$vendor,
           "project=s" => \$project,
           "project=s" => \$project,
           "lib_comp_sep=s" => \$lib_comp_sep,
           "lib_comp_sep=s" => \$lib_comp_sep,
           "component=s" => \$component,
           "component=s" => \$component,
           "comp_xml_sep=s" => \$comp_xml_sep,
           "comp_xml_sep=s" => \$comp_xml_sep,
           "variant=s" => \$variant
           "variant=s" => \$variant
Line 72... Line 76...
 
 
 
 
##############################################################################
##############################################################################
## Help option
## Help option
##############################################################################
##############################################################################
if ( ($opt_h eq "1") )
if ( $opt_h or $opt_help  )
   {
   {
   print "\n type soc_link_2  work/project component  variant";
   print "\n type soc_link_child  -vendor vendor_name -project project_name -lib_comp_sep /ip/ -component  component_name -comp_xml_sep /rtl/xml/ -variant  variant_name  new_seperator";
   print "\n";
   print "\n";
   exit 1;
   exit 1;
   }
   }
 
 
 
 
##############################################################################
##############################################################################
##
##
##############################################################################
##############################################################################
use Cwd;
 
use XML::LibXML;
 
 
 
$home              = cwd();
$home              = cwd();
my $new_sep        = $ARGV[0];
my $new_sep        = $ARGV[0];
 
 
 
 
Line 108... Line 110...
my      @filelist_hier = (  );
my      @filelist_hier = (  );
my      @filelist      = (  );
my      @filelist      = (  );
 
 
@filelist_hier = (  );
@filelist_hier = (  );
@filelist = (  );
@filelist = (  );
@filelist = parse_hier("$project","$component",$new_sep,"$variant");
@filelist = parse_hier("$vendor","$project","$component",$new_sep,"$variant");
@filelist = trim_sort(@filelist);
@filelist = trim_sort(@filelist);
 
 
 
 
 
 
foreach $line (@filelist)
foreach $line (@filelist)
Line 152... Line 154...
                 mkdir $path,0755             unless( -e $path );
                 mkdir $path,0755             unless( -e $path );
                 my $path  = "work/${project}/children/${child_family}";
                 my $path  = "work/${project}/children/${child_family}";
                 mkdir $path,0755             unless( -e $path );
                 mkdir $path,0755             unless( -e $path );
                 my $path  = "work/${project}/children/${child_family}/bin";
                 my $path  = "work/${project}/children/${child_family}/bin";
                 mkdir $path,0755             unless( -e $path );
                 mkdir $path,0755             unless( -e $path );
                 $root = "${home}/projects/${child_family}/bin";
                 $root = "${home}/projects/${vendor}/${child_family}/bin";
                 $dest = "${home}/work/${project}/children/${child_family}/bin";
                 $dest = "${home}/work/${project}/children/${child_family}/bin";
                 &link_dir( "$root", "$dest"  );
                 &link_dir( "$root", "$dest"  );
                 symlink( "${home}/tools/bin/Makefile.root", "${home}/work/${project}/children/${child_family}/bin/Makefile.root");
                 symlink( "${home}/tools/bin/Makefile.root", "${home}/work/${project}/children/${child_family}/bin/Makefile.root");
                 symlink( "${home}/tools/bin/Makefile",      "${home}/work/${project}/children/${child_family}/bin/Makefile");
                 symlink( "${home}/tools/bin/Makefile",      "${home}/work/${project}/children/${child_family}/bin/Makefile");
                 my $path  = "work/${project}/children/${child_family}/sw";
                 my $path  = "work/${project}/children/${child_family}/sw";
                 mkdir $path,0755             unless( -e $path );
                 mkdir $path,0755             unless( -e $path );
                 $root = "${home}/projects/${child_family}/sw";
                 $root = "${home}/projects/${vendor}/${child_family}/sw";
                 $dest = "${home}/work/${project}/children/${child_family}/sw";
                 $dest = "${home}/work/${project}/children/${child_family}/sw";
                 &link_dir( "$root", "$dest"  );
                 &link_dir( "$root", "$dest"  );
                 my $path  = "work/${project}/children/${child_family}/ip";
                 my $path  = "work/${project}/children/${child_family}/ip";
                 mkdir $path,0755             unless( -e $path );
                 mkdir $path,0755             unless( -e $path );
                 my $path  = "work/${project}/children/${child_family}${lib_comp_sep}${child_parent}";
                 my $path  = "work/${project}/children/${child_family}${lib_comp_sep}${child_parent}";
                 mkdir $path,0755             unless( -e $path );
                 mkdir $path,0755             unless( -e $path );
 
 
                 my $path  = "work/${project}/children/${child_family}${lib_comp_sep}${child_parent}/rtl";
                 my $path  = "work/${project}/children/${child_family}${lib_comp_sep}${child_parent}/rtl";
                 mkdir $path,0755             unless( -e $path );
                 mkdir $path,0755             unless( -e $path );
                 $root = "${home}/projects/${child_family}${lib_comp_sep}${child_parent}/rtl";
                 $root = "${home}/projects/${vendor}/${child_family}${lib_comp_sep}${child_parent}/rtl";
                 $dest = "${home}/work/${project}/children/${child_family}${lib_comp_sep}${child_parent}/rtl";
                 $dest = "${home}/work/${project}/children/${child_family}${lib_comp_sep}${child_parent}/rtl";
                 &link_dir( "$root", "$dest"  );
                 &link_dir( "$root", "$dest"  );
                 my $path  = "work/${project}/children/${child_family}${lib_comp_sep}${child_parent}/doc";
                 my $path  = "work/${project}/children/${child_family}${lib_comp_sep}${child_parent}/doc";
                 mkdir $path,0755             unless( -e $path );
                 mkdir $path,0755             unless( -e $path );
                 symlink( "${home}/projects/${child_family}${lib_comp_sep}${child_parent}/doc/copyright.v", "${home}/work/${project}/children/${child_family}${lib_comp_sep}${child_parent}/doc/copyright.v");
                 symlink( "${home}/projects/${vendor}/${child_family}${lib_comp_sep}${child_parent}/doc/copyright.v", "${home}/work/${project}/children/${child_family}${lib_comp_sep}${child_parent}/doc/copyright.v");
 
 
               }
               }
 
 
 
 
#/*********************************************************************************************/
#/*********************************************************************************************/
Line 255... Line 257...
   my @params     = @_;
   my @params     = @_;
   my $variant    = pop(@params);
   my $variant    = pop(@params);
   my $comp_xml   = pop(@params);
   my $comp_xml   = pop(@params);
   my $component  = pop(@params);
   my $component  = pop(@params);
   my $project    = pop(@params);
   my $project    = pop(@params);
 
   my $vendor    = pop(@params);
 
 
   $home = cwd();
   $home = cwd();
 
 
 
 
 
 
   my $parser = XML::LibXML->new();
   my $parser = XML::LibXML->new();
   my $doc    = $parser->parse_file("${home}/projects/${project}${lib_comp_sep}${component}${comp_xml}${variant}.xml");
   my $doc    = $parser->parse_file("${home}/projects/${vendor}/${project}${lib_comp_sep}${component}${comp_xml}${variant}.xml");
 
 
   foreach my $comp ($doc->findnodes('//spirit:component'))
   foreach my $comp ($doc->findnodes('//spirit:component'))
      {
      {
 
 
      my($vendor)   = $comp->findnodes('./spirit:vendor/text()')->to_literal ;
      my($vendor)   = $comp->findnodes('./spirit:vendor/text()')->to_literal ;
Line 289... Line 292...
 
 
      push(@filelist_hier,"::${library}::${name}::${comp_xml}::${variant}::");
      push(@filelist_hier,"::${library}::${name}::${comp_xml}::${variant}::");
 
 
      foreach  my   $i_name ($doc->findnodes("//spirit:component/spirit:componentInstances/spirit:componentInstance/spirit:instanceName"))
      foreach  my   $i_name ($doc->findnodes("//spirit:component/spirit:componentInstances/spirit:componentInstance/spirit:instanceName"))
         {
         {
 
         my($vendor_name)        = $i_name ->findnodes('../spirit:componentRef/spirit:vendor/text()')->to_literal ;
         my($library_name)        = $i_name ->findnodes('../spirit:componentRef/spirit:library/text()')->to_literal ;
         my($library_name)        = $i_name ->findnodes('../spirit:componentRef/spirit:library/text()')->to_literal ;
         my($component_name)      = $i_name ->findnodes('../spirit:componentRef/spirit:name/text()')->to_literal ;
         my($component_name)      = $i_name ->findnodes('../spirit:componentRef/spirit:name/text()')->to_literal ;
         my($version_name)        = $i_name ->findnodes('../spirit:componentRef/spirit:version/text()')->to_literal ;
         my($version_name)        = $i_name ->findnodes('../spirit:componentRef/spirit:version/text()')->to_literal ;
 
 
         my $variant_name   = "";
         my $variant_name   = "";
         if($version_name)  {$variant_name = "${component_name}_${version_name}";}
         if($version_name)  {$variant_name = "${component_name}_${version_name}";}
         else               {$variant_name = "${component_name}";}
         else               {$variant_name = "${component_name}";}
 
 
         my  @filelist_sub = parse_hier("$library_name","$component_name","$comp_xml_sep","$variant_name");
         my  @filelist_sub = parse_hier("$vendor_name","$library_name","$component_name","$comp_xml_sep","$variant_name");
         foreach $line (@filelist_sub) { push(@filelist_hier,"$line"); }
         foreach $line (@filelist_sub) { push(@filelist_hier,"$line"); }
 
 
         }
         }
      }
      }
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.