[project @ 2000-05-12 11:55:52 by rrt]
[ghc-hetmet.git] / ghc / utils / mkdependHS / mkdependHS.prl
index 3cd94bd..93d08b3 100644 (file)
@@ -24,7 +24,7 @@ Options recognised wherever they occur (mkdependHS or GHC):
                to search for "import"ed modules
     -I<dir>    Add <dir> to list of directories to search for
                .h files (i.e., usual meaning)
-    -syslib <blah> This program uses this GHC system library; take
+    -package <blah> This program uses this GHC system library; take
                appropriate action (e.g., recognise when they are
                "import"ing a module from that library).
 
@@ -52,7 +52,7 @@ mkdependHS-specific options (not between --'s):
     --include-prelude
                Regard prelude libraries as unstable, i.e., generate dependencies
                on prelude modules. This option is normally only used by the
-                various system libraries. If a -syslib option is used, dependencies
+                various system libraries. If a -package option is used, dependencies
                 will also be generated on the library's interfaces.
     --include-module=<file> 
                 Regard <file> as not "stable"; i.e., generate dependencies
@@ -99,18 +99,21 @@ $Import_dirs = '.';
 # directories to considered stable.
 @Ignore_dirs = ();
 
+%ModuleIn = ();
+
 $Include_dirs = '-I.';
 $Makefile = '';
 @Src_files = ();
 $Include_prelude = 0;
 @Defines = ();
+$ProcessingOptions=0;
 
 # Delete temp. file if script is halted.
 sub quit_upon_signal { print STDERR "Deleting $Tmp_prefix.hs .. \n"; unlink "$Tmp_prefix.hs"; }
 $SIG{'INT'}  = 'quit_upon_signal';
 $SIG{'QUIT'} = 'quit_upon_signal';
 
-&mangle_command_line_args();
+&mangle_command_line_args(@ARGV);
 
 if ( $Status ) {
     print stderr $Usage;
@@ -120,35 +123,10 @@ if ( $Status ) {
 @Import_dirs  = split(/:/,$Import_dirs);
 @Include_dirs = split(/\s+/,$Include_dirs); # still has -I's in it
 
-# set up array of ignored modules
-local(@dirs) = ($INSTALLING) ? 
-              ("$InstLibDirGhc/imports/std")
-            : ("$TopPwd/ghc/lib/std");
-if (!$Include_prelude) {
-    push(@Ignore_dirs, @dirs);
-} else {
-    push(@Import_dirs, @dirs);
-}
-
-foreach $lib ( @Syslibs ) {
-    local($dir);
-
-    if ( $lib eq 'win32' && ! $INSTALLING ) {
-      $dir = "${TopPwd}/hslibs/${lib}/src";
-    } else {
-      $dir = ($INSTALLING) ? "${InstLibDirGhc}/imports/${lib}" 
-                          : "${TopPwd}/ghc/lib/${lib}";
-    }
-    if (!$Include_prelude) {
-       push(@Ignore_dirs,$dir);
-    } else {
-       push(@Import_dirs, $dir);
-    }
-}
-
-
 # NB: We keep the scalar-variable equivalents to use in error messages
 
+&gather_import_dirs();
+
 if ( ! $Makefile && -f 'makefile' ) {
     $Makefile = 'makefile';
 } elsif ( ! $Makefile && -f 'Makefile') {
@@ -234,8 +212,10 @@ close(OMKF) || exit(1);
 exit 0;
 
 sub mangle_command_line_args {
-    while($_ = $ARGV[0]) {
-       shift(@ARGV);
+    local(@Args) = @_;
+        
+    while($_ = $Args[0]) {
+       shift(@Args);
 
        if ( /^--$/ ) {
            $Dashdashes_seen++;
@@ -250,21 +230,25 @@ sub mangle_command_line_args {
            $Import_dirs = "$1:$Import_dirs";
        } elsif ( /^-I/ ) {
            $Include_dirs .= " $_";
-       } elsif ( /^-syslib$/ ) {
-           push(@Syslibs, &grab_arg_arg($_,''));
+       } elsif ( /^-syslib$/ ) { # deprecated, use -syslib
+           push(@Syslibs, &grab_arg_arg(*Args,$_,''));
+       } elsif ( /^-package$/ ) {
+           push(@Syslibs, &grab_arg_arg(*Args,$_,''));
        } elsif ( /^-fglasgow-exts$/ ) {
-           push(@Syslibs, 'exts');
+           push(@Syslibs, 'lang');
        } elsif ( /^-concurrent$/ ) {
            push(@Syslibs, 'concurrent');
+       } elsif (/^-#include(.*)/) {
+           &grab_arg_arg(*Args,$_,'');
        } elsif ($Dashdashes_seen != 1) { # not between -- ... --
            if ( /^-v$/ ) {
                $Verbose++;
            } elsif ( /^-w$/ ) {
                $Warnings     = 0;
-           } elsif ( /^-f(.*)/ ) {
-               $Makefile       = &grab_arg_arg('-f',$1);
+           } elsif ( /^-f(.*)/ && !$ProcessingOptions ) {
+               $Makefile       = &grab_arg_arg(*Args,'-f',$1);
            } elsif ( /^-o(.*)/ ) {
-               local($suff)    = &grab_arg_arg('-o',$1);
+               local($suff)    = &grab_arg_arg(*Args,'-o',$1);
                # Weed out existing entry .. there must be a better way of doing this
                # with arrays (non-assoc) ! -- sof
                @Obj_suffix     = grep(!/$suff/,@Obj_suffix);
@@ -273,23 +257,25 @@ sub mangle_command_line_args {
            # --exclude-module=mod => it's stable, trust me!
             
            } elsif ( /^-(x|-exclude-module=)(.*)/ ) { 
-               local($thing) = &grab_arg_arg($1,$2);
+               local($thing) = &grab_arg_arg(*Args,$1,$2);
                $IgnoreMe{$thing} = 'Y';
            } elsif ( /^-(X|-exclude-directory=)(.*)/ ) { 
-               foreach $d ( split(/:/,&grab_arg_arg($1, $2)) ) {
+               foreach $d ( split(/:/,&grab_arg_arg(*Args,$1, $2)) ) {
                    push(@Ignore_dirs,"$d");
                 }
            } elsif ( /^--include-module=(.*)/ ) { 
-               local($thing) = &grab_arg_arg($1,$2);
+               local($thing) = &grab_arg_arg(*Args,$1,$2);
                $IgnoreMe{$thing} = 'n';
            } elsif ( /^--include-prelude$/ ) { 
                $Include_prelude = 1;
            } elsif ( /^-s(.*)/ ) {
-               local($suff)    =  &grab_arg_arg('-s',$1);
+               local($suff)    =  &grab_arg_arg(*Args,'-s',$1);
                push(@File_suffix, $suff);
            } elsif ( /^-/ ) {
-               print STDERR "$Pgm: unknown option ignored: $_\n";
-               $Status++;
+               if (!$ProcessingOptions) {
+                  print STDERR "$Pgm: unknown option ignored: $_\n";
+                  $Status++;
+               }
            } else {
                push(@Src_files, $_);
            }
@@ -308,12 +294,12 @@ sub mangle_command_line_args {
 }
 
 sub grab_arg_arg {
-    local($option, $rest_of_arg) = @_;
+    local(*Args, $option, $rest_of_arg) = @_;
     
     if ($rest_of_arg) {
        return($rest_of_arg);
-    } elsif ($#ARGV >= 0) {
-       local($temp) = $ARGV[0]; shift(@ARGV); 
+    } elsif ($#Args >= 0) {
+       local($temp) = $Args[0]; shift(@Args); 
        return($temp);
     } else {
        print STDERR "$Pgm: no argument following $option option\n";
@@ -321,12 +307,64 @@ sub grab_arg_arg {
     }
 }
 
+sub gather_import_dirs {
+
+       # set up array of ignored modules
+       local(@dirs) = ($INSTALLING) ? 
+                      ("$InstLibDirGhc/imports/std")
+                    : ("$TopPwd/ghc/lib/std");
+
+       if (!$Include_prelude) {
+          push(@Ignore_dirs, @dirs);
+       } else {
+          push(@Import_dirs, @dirs);
+        }
+
+       foreach $lib ( @Syslibs ) {
+          local($dir);
+
+           # Yuck ^ 2
+           if ( $lib eq 'lang' && ! $INSTALLING ) {
+              push(@Import_dirs, "${TopPwd}/hslibs/${lib}/monads");
+          }
+           if ( $lib eq 'text' && ! $INSTALLING ) {
+              push(@Import_dirs, "${TopPwd}/hslibs/${lib}/html");
+              push(@Import_dirs, "${TopPwd}/hslibs/${lib}/haxml/lib");
+          }
+           if ( $lib eq 'data' && ! $INSTALLING ) {
+              push(@Import_dirs, "${TopPwd}/hslibs/${lib}/edison");
+              push(@Import_dirs, "${TopPwd}/hslibs/${lib}/edison/Assoc");
+              push(@Import_dirs, "${TopPwd}/hslibs/${lib}/edison/Coll");
+              push(@Import_dirs, "${TopPwd}/hslibs/${lib}/edison/Seq");
+          }
+           if ( $lib eq 'util' && ! $INSTALLING ) {
+              push(@Import_dirs, "${TopPwd}/hslibs/${lib}/check");
+          }
+
+           # Yuck ^ 3
+           if ( $lib eq 'win32' && ! $INSTALLING ) {
+              $dir = "${TopPwd}/hslibs/${lib}/src";
+           } elsif ( $lib eq 'com' && ! $INSTALLING ) {
+              $dir = "${TopPwd}/hdirect/lib";
+           } else {
+              $dir = ($INSTALLING) ? "${InstLibDirGhc}/imports/${lib}" 
+                                  : "${TopPwd}/hslibs/${lib}";
+           }
+          if (!$Include_prelude) {
+              push(@Ignore_dirs,$dir);
+           } else {
+              push(@Import_dirs, $dir);
+           }
+       }
+}
+
+
+
 sub preprocess_import_dirs {
     # it's probably cheaper to find out what's in all
     # the @Import_dirs before we start processing.
     local($d, $thing);
     local($_);
-    %ModuleIn = ();
 
     foreach $d ( @Import_dirs ) {
         # Check to see if it can be ignored
@@ -370,6 +408,10 @@ sub slurp_file_for_imports {
     local($follow_file,$read_from_file);
     local($cleanup)=0;
 
+    local(@Old_Syslibs, $options);
+    local(@Old_Ignore_dirs);
+    local($found_options)=0;
+
     local($last_seen_dir) = $orig_src_file;
     $last_seen_dir =~ s/\/[^\/]+$//; # strip to dir name
     $last_seen_dir = '.' if ($last_seen_dir eq $orig_src_file);
@@ -384,13 +426,31 @@ sub slurp_file_for_imports {
 
     &process_dependency('import',0,'Prelude') if ($Include_prelude);
 
+    #
+    # Check for {-# OPTIONS in the file-to-be-processed. If any syslib related options
+    # *only* are found, add them to the module search list (and take them off once
+    # we're through with this module.)
+    #
+
+    $options = &check_for_source_options($file_to_read);
+    if ($options ne "") {
+      @Old_Syslibs=@Syslibs;
+      $ProcessingOptions=1;
+      &mangle_command_line_args(split(/\s+/,$options));
+      if (@Old_Syslibs ne @Syslibs) {
+        $found_options=1;
+       @Old_Ignore_dirs = @Ignore_dirs;
+        &gather_import_dirs();
+       &preprocess_import_dirs();
+      }
+    }
+    
     # we mangle #include's so they will also leave something
     # behind to indicate the dependency on _them_
     
     local ($open_cmd);
     if ($Cpp_flag_set) {
-#       $open_cmd = "${SED} -e '/^# *include/{p;s/^# *include/!include/;};s/'\\''//g;s/\"//g' $file_to_read | $Cpp $Include_dirs -I$last_seen_dir @Defines |";
-       &run_something("${SED} -e '/^# *include/{p;s/^# *include/!include/;};s/'\\''//g;s/\"//g' $file_to_read | $Cpp $Include_dirs -I$last_seen_dir @Defines - 2>&1 > ${file_to_read}.i", $orig_src_file, 'cpp');
+       &run_something("${SED} -e '/^# *include/{p;s/^# *include/!include/;}' $file_to_read | $Cpp $Include_dirs -I$last_seen_dir @Defines - 2>&1 > ${file_to_read}.i", $orig_src_file, 'cpp');
        $read_from_file="${file_to_read}.i";
        $cleanup=1;
     } else {
@@ -415,6 +475,11 @@ sub slurp_file_for_imports {
         next if $modname eq '';
        &process_dependency($todo,$source,$modname);
     }
+
+    if ($found_options) {
+      @Ignore_dirs = @Old_Ignore_dirs;
+    }
+
     close(SRCFILE) || exit(1);
     # remove temporary file, if any.
     if ($cleanup) {
@@ -629,3 +694,40 @@ sub run_something {
        exit $return_val;
     }
 }
+
+# out of the driver too.
+sub check_for_source_options {
+    local($file) = @_;
+    local($comment_start,$comment_end);
+
+    # Assume it is a file containing Haskell source
+    $comment_start = "{-#";
+    $comment_end   = "#-}";
+
+    open(FILE,$file) || return ""; # No big loss
+    
+    while (<FILE>) {
+       if ( /^${comment_start} OPTIONS (.*)${comment_end}/ ) {
+           # return the options.
+          local($stuff) = $1;
+          print STDERR "Found OPTIONS $stuff in $file\n" if $Verbose;
+          close(FILE);
+          return $stuff;
+       }
+        elsif ( /^$/ ) { # ignore empty lines
+           ;
+        }
+        elsif ( /^#line.+$/ ) { # ignore comment lines (unused..ToDo: rm )
+           ;
+        }
+        elsif ( /^{-# LINE.+$/ ) { # ignore line pragmas
+           ;
+        }
+        else { # stop looking, something non-empty / not
+              # ${comment_start} OPTIONS .. ${comment_end} encountered.
+           close(FILE);return "";
+        }
+    }
+    close(FILE);
+    return "";
+}