#!/usr/bin/perl -w # NAME: cmakesrcs.pl # AIM: Given a folder, follow the CMakeLists.txt trail, and list projects and source # WARNING: *** WORK IN PROGRESS *** *** NOT FINISHED *** # 13/07/2013 geoff mclane http://geoffair.net/mperl use strict; use warnings; use File::Basename; # split path ($name,$dir,$ext) = fileparse($file [, qr/\.[^.]*/] ) use Cwd; my $os = $^O; my $perl_dir = '/home/geoff/bin'; my $PATH_SEP = '/'; my $temp_dir = '/tmp'; if ($os =~ /win/i) { $perl_dir = 'C:\GTools\perl'; $temp_dir = $perl_dir; $PATH_SEP = "\\"; } unshift(@INC, $perl_dir); require 'lib_utils.pl' or die "Unable to load 'lib_utils.pl' Check paths in \@INC...\n"; require 'lib_cmakeread.pl' or die "Unable to load 'lib_cmakeread.pl' Check paths in \@INC...\n"; # log file stuff our ($LF); my $pgmname = $0; if ($pgmname =~ /(\\|\/)/) { my @tmpsp = split(/(\\|\/)/,$pgmname); $pgmname = $tmpsp[-1]; } my $outfile = $temp_dir.$PATH_SEP."temp.$pgmname.txt"; open_log($outfile); # user variables my $VERS = "0.0.2 2015-09-02"; ###my $VERS = "0.0.1 2013-03-17"; my $load_log = 0; my $in_dir = ''; my $verbosity = 0; my $out_file = ''; my $in_file = ''; # ### DEBUG ### my $debug_on = 0; my $def_file = 'C:\FG\18\geomview'; ### program variables my @warnings = (); my $cwd = cwd(); my $tmp_out = $temp_dir.$PATH_SEP."tempcmake.txt"; sub VERB1() { return $verbosity >= 1; } sub VERB2() { return $verbosity >= 2; } sub VERB5() { return $verbosity >= 5; } sub VERB9() { return $verbosity >= 9; } sub show_warnings($) { my ($val) = @_; if (@warnings) { prt( "\nGot ".scalar @warnings." WARNINGS...\n" ); foreach my $itm (@warnings) { prt("$itm\n"); } prt("\n"); } else { prt( "\nNo warnings issued.\n\n" ) if (VERB9()); } } sub pgm_exit($$) { my ($val,$msg) = @_; if (length($msg)) { $msg .= "\n" if (!($msg =~ /\n$/)); prt($msg); } show_warnings($val); close_log($outfile,$load_log); exit($val); } sub prtw($) { my ($tx) = shift; $tx =~ s/\n$//; prt("$tx\n"); push(@warnings,$tx); } sub process_one_file($$); sub get_sub_dir($) { my $line = shift; my $sd = ''; if ($line =~ /\(\s*(.+)\s*\)/) { $sd = trim_all($1); } return $sd; } sub strip_brackets($) { my $txt = shift; $txt =~ s/^\(//; $txt =~ s/\)$//; $txt = trim_all($txt); return $txt; } my %substituion = (); sub do_subs($) { my $ract = shift; my $act = ${$ract}; if ( !($act =~ /\$\{.+\}/) ) { return; } my ($i,$ch,$max,$pc,$i2,$nc,$tag,$sub); $max = length($act); $pc = ''; my @stk = (); my $nline = ''; my $donesub = 0; prt("Checking sub for '$act'... len $max\n") if (VERB9()); for ($i = 0; $i < $max; $i++) { $ch = substr($act,$i,1); $i2 = $i + 1; $nc = ($i2 < $max) ? substr($act,$i2,1) : ''; if (($ch eq '$')&&($nc = '{')) { $i2 = $i + 2; $tag = ''; prt("Got begin of sub...\n") if (VERB9()); for (;$i2 < $max; $i2++) { $nc = substr($act,$i2,1); if ($nc eq '{') { push(@stk,$i2); } elsif ($nc eq '}') { if (@stk) { pop @stk; } else { last; } } $tag .= $nc; } prt("Got tag '$tag'...\n") if (VERB9()); if (length($tag)) { if (defined $substituion{$tag}) { $sub = $substituion{$tag}; $nline .= $sub; $i = $i2; $ch = ''; $donesub = 1; prt("Sub '$sub' for '$tag'...\n") if (VERB9()); } else { prt("No sub for '$tag'...\n") if (VERB9()); $i = $i2; $ch = ''; $donesub = 1; } } } $pc = $ch; $nline .= $ch; } if ($donesub) { prt("Converted '$act' to '$nline'...\n") if (VERB5()); ${$ract} = $nline; } } sub process_one_file($$) { my ($inf,$rm) = @_; my %hash = (); my $rh = \%hash; $hash{'BASE_FILE'} = $inf; $hash{'CURR_WARNINGS'} = \@warnings; $hash{'CURR_DBG_FLAG'} = 0; load_cmake_script_file(\%hash); ##$hash{'CURR_DUMP_NAME'} = $temp_dir.$PATH_SEP."tempcmake.txt"; ##dump_cmake2(\%hash); ${$rm}{$inf} = $rh; my $rclines = ${$rh}{"CLEAN_LINES"}; my $cnt = scalar @{$rclines}; my $bfile = ${$rh}{'BASE_FILE'}; my ($line,$sd,$ff,$rcln,$tag,$act,$lnn,$endln,@arr,$i,$ra,$itm,$val); ###$line = join("\n", @{$rclines})."\n"; $line = "# $cnt cleaned lines...\n"; foreach $rcln (@{$rclines}) { $line .= ${$rcln}[0]."\n"; } if (-f $tmp_out) { append2file($line,$tmp_out); prt("Contents of [$bfile] $cnt 'cleaned' lines, appended to $tmp_out\n"); } else { write2file($line,$tmp_out); prt("Contents of [$bfile] $cnt 'cleaned' lines, written to $tmp_out\n"); } my $proj = ''; my ($name,$dir) = fileparse($inf); ut_fix_directory(\$dir); my %h = (); my %shown = (); foreach $rcln (@{$rclines}) { # 0 1 2 3 4 #push(@{$rclines},[$line,$ucdir,$action,$bgnln,$endln]); $line = ${$rcln}[0]; $tag = ${$rcln}[1]; $act = ${$rcln}[2]; $lnn = ${$rcln}[3]; $endln = ${$rcln}[4]; $sd = strip_brackets($act); @arr = space_split($sd); #prt("$line [$act] $sd\n"); $cnt = scalar @arr; $act = $arr[0]; if ($line =~ /^\s*set(.+)$/i) { do_subs(\$act); $h{$act} = []; # if (! defined $h{$act}); $ra = $h{$act}; $val = ''; for ($i = 1; $i < $cnt; $i++) { $itm = $arr[$i]; do_subs(\$itm); push(@{$ra}, $itm); $val .= ';' if (length($val)); $val .= $itm; } ##do_subs(\$val); $substituion{$act} = $val; } elsif ($line =~ /^\s*project(.+)$/i) { $proj = strip_brackets($1); $proj = trim_all($proj); prt("Project '$proj'\n"); } elsif ($line =~ /^\s*cmake_minimum_required/i) { } elsif ($line =~ /^\s*if(.+)$/i) { } elsif ($line =~ /^\s*else(.+)$/i) { } elsif ($line =~ /^\s*endif(.+)$/i) { } elsif ($line =~ /^\s*option(.+)$/i) { } elsif ($line =~ /^\s*list(.+)$/i) { # list(APPEND ${name}_SRCS win32/Scintilla.def) } elsif ($line =~ /^\s*message(.+)$/i) { } elsif ($line =~ /^\s*include(.+)$/i) { } elsif ($line =~ /^\s*string(.+)$/i) { } elsif ($line =~ /^\s*file(.+)$/i) { } elsif ($line =~ /^\s*math(.+)$/i) { } elsif ($line =~ /^\s*add_definitions(.+)$/i) { } elsif ($line =~ /^\s*add_library(.+)$/i) { } elsif ($line =~ /^\s*add_executable(.+)$/i) { } elsif ($line =~ /^\s*target_link_libraries(.+)$/i) { } elsif ($line =~ /^\s*include_directories(.+)$/) { } elsif ($line =~ /^\s*link_directories(.+)$/) { } elsif ($line =~ /^\s*CHECK_TYPE_SIZE(.+)$/i) { } elsif ($line =~ /^\s*macro(.+)$/i) { } elsif ($line =~ /^\s*endmacro(.+)$/i) { } elsif ($line =~ /^\s*check_symbol_exists(.+)$/i) { } elsif ($line =~ /^\s*check_function_exists(.+)$/i) { } elsif ($line =~ /^\s*check_include_file(.+)$/i) { } elsif ($line =~ /^\s*find_package(.+)$/i) { } elsif ($line =~ /^\s*find_library(.+)$/i) { } elsif ($line =~ /^\s*find_path(.+)$/i) { } elsif ($line =~ /^\s*configure_file(.+)$/i) { } elsif ($line =~ /^\s*check_c_source_compiles(.+)$/i) { } elsif ($line =~ /^\s*check_cxx_source_runs(.+)$/i) { } elsif ($line =~ /^\s*GET_FILENAME_COMPONENT(.+)$/i) { } elsif ($line =~ /^\s*add_subdirectory(.+)$/i) { } elsif ($line =~ /^\s*TEST_BIG_ENDIAN(.+)$/i) { } elsif ($line =~ /^\s*GetGitInfo(.+)$/i) { } elsif ($line =~ /^\s*CHECK_SYMBOL(.+)$/i) { } elsif ($line =~ /^\s*CHECK_LIBRARY_EXISTS(.+)$/i) { } elsif ($line =~ /^\s*install(.+)$/i) { } else { if (! defined $shown{$act}) { prtw("WARNING: '$line' not handled! *** FIX ME ***\n"); $shown{$act} = 1; } } } if (VERB9()) { @arr = keys %h; foreach $act (@arr) { $ra = $h{$act}; $cnt = scalar @{$ra}; $sd = join(" ",@{$ra}); prt("$act has $cnt items... $sd\n"); } } foreach $rcln (@{$rclines}) { # 0 1 2 3 4 #push(@{$rclines},[$line,$ucdir,$action,$bgnln,$endln]); $line = ${$rcln}[0]; $tag = ${$rcln}[1]; $act = ${$rcln}[2]; $lnn = ${$rcln}[3]; $endln = ${$rcln}[4]; if ($line =~ /^add_subdirectory/i) { $sd = strip_brackets($act); $sd = trim_all($sd); prt("$line [$act] $sd\n"); $sd = get_sub_dir($line); $ff = $dir.$sd.$PATH_SEP.'CMakeLists.txt'; if (-f $ff) { process_one_file($ff,$rm); } else { prtw("WARNING: Cn NOT locate file [$ff]!\n"); } } } } sub process_the_file($) { my $inf = shift; my %h = (); rename_2_old_bak($tmp_out); process_one_file($inf,\%h); my @arr = keys %h; my $cnt = scalar @arr; prt("Processed $cnt cmake files...\n"); } ######################################### ### MAIN ### parse_args(@ARGV); process_the_file($in_file); pgm_exit(0,""); ######################################## sub need_arg { my ($arg,@av) = @_; pgm_exit(1,"ERROR: [$arg] must have a following argument!\n") if (!@av); } sub parse_args { my (@av) = @_; my ($arg,$sarg); while (@av) { $arg = $av[0]; if ($arg =~ /^-/) { $sarg = substr($arg,1); $sarg = substr($sarg,1) while ($sarg =~ /^-/); if (($sarg =~ /^h/i)||($sarg eq '?')) { give_help(); pgm_exit(0,"Help exit(0)"); } elsif ($sarg =~ /^v/) { if ($sarg =~ /^v.*(\d+)$/) { $verbosity = $1; } else { while ($sarg =~ /^v/) { $verbosity++; $sarg = substr($sarg,1); } } prt("Verbosity = $verbosity\n") if (VERB1()); } elsif ($sarg =~ /^l/) { if ($sarg =~ /^ll/) { $load_log = 2; } else { $load_log = 1; } prt("Set to load log at end. ($load_log)\n") if (VERB1()); } elsif ($sarg =~ /^o/) { need_arg(@av); shift @av; $sarg = $av[0]; $out_file = $sarg; prt("Set out file to [$out_file].\n") if (VERB1()); } else { pgm_exit(1,"ERROR: Invalid argument [$arg]! Try -?\n"); } } else { $in_dir = $arg; prt("Set input to [$in_dir]\n") if (VERB1()); } shift @av; } if ($debug_on) { prtw("WARNING: DEBUG is ON!\n"); if ((length($in_dir) == 0) && $debug_on) { $in_dir = $def_file; prt("Set DEFAULT input to [$in_dir]\n"); } } if (length($in_dir) == 0) { pgm_exit(1,"ERROR: No input directory found in command!\n"); } if (! -d $in_dir) { pgm_exit(1,"ERROR: Unable to find in directory [$in_dir]! Check name, location...\n"); } $sarg = $in_dir; ut_fix_directory(\$sarg); $sarg .= 'CMakeLists.txt'; if (!-f $sarg) { pgm_exit(1,"ERROR: Unable to find cmake [$sarg]! Check name, location...\n"); } $in_file = $sarg; } sub give_help { prt("$pgmname: version $VERS\n"); prt("Usage: $pgmname [options] in-file\n"); prt("Options:\n"); prt(" --help (-h or -?) = This help, and exit 0.\n"); prt(" --verb[n] (-v) = Bump [or set] verbosity. def=$verbosity\n"); prt(" --load (-l) = Load LOG at end. ($outfile)\n"); prt(" --out (-o) = Write output to this file.\n"); } # eof - template.pl