]> jfr.im git - irc/quakenet/newserv.git/blobdiff - chanserv/mkcommandlist.pl
TRUSTS: require sqlite
[irc/quakenet/newserv.git] / chanserv / mkcommandlist.pl
index 61432bdd80f38c35a99a3605f014f7b4d95bbd18..00f6bde6133d87559c83bc612f747cecaffb97d0 100755 (executable)
@@ -10,11 +10,14 @@ my @cmdfunc;
 my @protos;
 my @files;
 my @help;
+my @cmdaliases;
 
 my @filelist = <*.c>;
 
 my $modname;
 
+my %cmdhash;
+
 unless (@ARGV) {
   print "Usage: $0 <module name>\n";
   exit(0);
@@ -22,6 +25,13 @@ unless (@ARGV) {
   $modname=$ARGV[0];
 }
 
+my $rootpath;
+if($#ARGV >= 1) {
+  $rootpath=$ARGV[1];
+} else {
+  $rootpath="..";
+}
+
 my $smallname;
 $smallname=$modname;
 $smallname=~s/\.so$//;
@@ -36,8 +46,9 @@ for (@filelist) {
   next if ($_ eq $cname);
   
   my $fname = $_;
-  my ($cn, $cl, $ca, $cd, $cf, $cp, $ch);
+  my ($cn, $cl, $ca, $cd, $cf, $cp, $ch, $cal);
   $ch="";
+  $cal="";
 
   open INFILE,"<$fname";
   
@@ -71,10 +82,16 @@ for (@filelist) {
     if (/CMDHELP: (.*)/) {
       $ch.=$1."\\n";
     }
+
+    if (/CMDALIASES: (.*)/) {
+      $cal=$1;
+    }
   }
   
   if (defined $cn and defined $cl and defined $ca and defined $cd and defined $cf and defined $cp) {
     # valid command found 
+    $cmdhash{$cn} = scalar @cmdnames;
+
     push @files, $fname;
     push @cmdnames, $cn;
     push @cmdlevels, $cl;
@@ -83,6 +100,7 @@ for (@filelist) {
     push @cmdfunc, $cf;
     push @protos, $cp;
     push @help, $ch;
+    push @cmdaliases, $cal;
   } else {
     print "Warning: found source file $fname without complete tags, skipping...\n";
   }
@@ -98,7 +116,7 @@ if (@files < 1) {
 open CL, ">commandlist.c";
 
 print CL "/* Automatically generated by mkcommandlist.pl, do not edit. */\n\n";
-print CL "#include \"../chanserv.h\"\n\n";
+print CL "#include \"".$rootpath."/chanserv.h\"\n\n";
 
 # Print prototypes
 print CL "/* Prototypes */\n";
@@ -106,32 +124,72 @@ foreach (@protos) {
   print CL "$_\n";
 }
 
-my @names2 = @cmdnames;
-my @func2 = @cmdfunc;
-
 print CL "void ".$smallname."_init(void);\n";
 print CL "void ".$smallname."_fini(void);\n\n";
 
 print CL "\nvoid _init() {\n";
 print CL "  ".$smallname."_init();\n";
 
-while (my $cn = shift @cmdnames) {
-  print CL "  chanservaddcommand(\"".$cn."\", ".(shift @cmdlevels).", ".(shift @cmdargs).", ";
-  print CL (shift @cmdfunc).", \"".(shift @cmddesc)."\", \"".(shift @help),"\");\n";
+sub generate_help_text {
+  my ($cn, $ch) = @_;
+
+  my %SUBS;
+
+  $SUBS{"COMMAND"} = $cn;
+  $SUBS{"UCOMMAND"} = uc($cn);
+
+  my %realsubs;
+  while(my ($key, $value) = each(%SUBS)) {
+    $key = '@'.quotemeta($key).'@';
+    $value = quotemeta($value);
+    $ch =~ s/$key/$value/g;
+  }
+
+  return $ch;
+}
+
+sub writecmd {
+  my ($cn, $i, $isalias) = @_;
+
+  my $cl = $cmdlevels[$i];
+  if ($isalias) {
+    $cl .= " | " if ($cl ne "");
+    $cl .= "QCMD_ALIAS";
+  }
+
+  print CL "  chanservaddcommand(\"".$cn."\", ".($cl).", ".($cmdargs[$i]).", ";
+  print CL ($cmdfunc[$i]).", \"".($cmddesc[$i])."\", \"".(generate_help_text($cn,$help[$i])),"\");\n";
+}
+
+for (my $i=0;$i<scalar @cmdnames;$i++) {
+  writecmd($cmdnames[$i], $i, 0);
+
+  foreach (split / /, $cmdaliases[$i]) {
+    writecmd($_, $i, 1);
+  }
 }
 
 print CL "}\n\nvoid _fini() {\n";
 print CL "  ".$smallname."_fini();\n";
 
-while (my $cn = shift @names2) {
-  print CL "  chanservremovecommand(\"".$cn."\", ".(shift @func2).");\n";
+sub writercmd {
+  my ($cn, $i) = @_;
+  print CL "  chanservremovecommand(\"".$cn."\", ".($cmdfunc[$i]).");\n";
+}
+
+for (my $i=0;$i<scalar @cmdnames;$i++) {
+  writercmd($cmdnames[$i], $i);
+
+  foreach (split / /, $cmdaliases[$i]) {
+    writercmd($_, $i);
+  }
 }
 
 print CL "}\n";
 
 close CL;
 
-open MF,">autobuild.mk";
+open MF,">.autobuild.mk";
 
 print MF "# Automatically generated Makefile, do not edit.\n";