started on the prefix stuff, got most of it done
[spider.git] / perl / cluster.pl
index 76dea21912b67f81dc8a39d9c1e4da1beef62ac3..8a7ae01e7e02dd7368c3e027d4ac884a03b19737 100755 (executable)
@@ -26,6 +26,7 @@ use DXCommandmode;
 use DXProt;
 use DXCluster;
 use DXDebug;
+use Prefix;
 
 package main;
 
@@ -59,17 +60,13 @@ sub rec
   # set up the basic channel info - this needs a bit more thought - there is duplication here
   if (!defined $dxchan) {
      my ($sort, $call, $line) = $msg =~ /^(\w)(\S+)\|(.*)$/;
-     my $user = DXUser->get($call);
-        if (!defined $user) {
-          $user = DXUser->new($call);
-        }
-        my $sort = $user->sort();
-        
-        # is there one already connected?
+
+     # is there one already connected?
         if (DXChannel->get($call)) {
           my $mess = DXM::msg('conother', $call);
           dbg('chan', "-> D $call $mess\n"); 
        $conn->send_now("D$call|$mess");
+          sleep(1);
           dbg('chan', "-> Z $call bye\n");
        $conn->send_now("Z$call|bye");          # this will cause 'client' to disconnect
           return;
@@ -80,21 +77,20 @@ sub rec
           my $mess = DXM::msg('concluster', $call);
           dbg('chan', "-> D $call $mess\n"); 
        $conn->send_now("D$call|$mess");
+          sleep(1);
           dbg('chan', "-> Z $call bye\n");
        $conn->send_now("Z$call|bye");          # this will cause 'client' to disconnect
           return;
      }
 
-     # set some necessary flags on the user if they are connecting
-        $user->wwv(1) if !$user->wwv();
-        $user->talk(1) if !$user->talk();
-        $user->ann(1) if !$user->ann();
-        $user->here(1) if !$user->here();
-        $user->sort('U') if !$user->sort();
+     my $user = DXUser->get($call);
+        if (!defined $user) {
+          $user = DXUser->new($call);
+        }
 
-        # create the channel
-     $dxchan = DXCommandmode->new($call, $conn, $user) if ($sort eq 'U');
-     $dxchan = DXProt->new($call, $conn, $user) if ($sort eq 'A');
+     # create the channel
+     $dxchan = DXCommandmode->new($call, $conn, $user) if ($user->sort eq 'U');
+     $dxchan = DXProt->new($call, $conn, $user) if ($user->sort eq 'A');
         die "Invalid sort of user on $call = $sort" if !$dxchan;
   }
   
@@ -164,6 +160,9 @@ foreach(@debug) {
 }
 STDOUT->autoflush(1);
 
+# load Prefixes
+Prefix::load();
+
 # initialise User file system
 DXUser->init($userfn);
 
@@ -175,6 +174,9 @@ $SIG{'INT'} = \&cease;
 $SIG{'TERM'} = \&cease;
 $SIG{'HUP'} = 'IGNORE';
 
+# initialise the protocol engine
+DXProt->init();
+
 # this, such as it is, is the main loop!
 for (;;) {
   my $timenow;