Changed door code to use direct serial instead of llogin
[tpg/opendispense2.git] / src / server / main.c
index d6fefbc..d336b77 100644 (file)
@@ -30,7 +30,7 @@ extern int    giServer_Port;
 extern char    *gsItemListFile;
 extern char    *gsCoke_SerialPort;
 extern char    *gsSnack_SerialPort;
-extern char    *gsDoor_Password;
+extern char    *gsDoor_SerialPort;
 
 // === PROTOTYPES ===
 void   *Periodic_Thread(void *Unused);
@@ -43,6 +43,7 @@ char  *gsCokebankPath = "cokebank.db";
 struct sPeriodicCall {
        void    (*Function)(void);
 }      gaPeriodicCalls[ciMaxPeriodics];
+pthread_t      gTimerThread;
 
 // === CODE ===
 void sigint_handler()
@@ -59,16 +60,17 @@ void PrintUsage(const char *progname)
        fprintf(stderr, "        Set debug level (0 - 2, default 0)\n");
        fprintf(stderr, "  --cokeport\n");
        fprintf(stderr, "        Coke machine serial port (Default \"/dev/ttyS0\")\n");
-       fprintf(stderr, "  --doorpass\n");
-       fprintf(stderr, "        Door LAT password file (Default empty password)\n");
+       fprintf(stderr, "  --doorport\n");
+       fprintf(stderr, "        Door modem/relay serial port (Default \"/dev/ttyS3\")\n");
        fprintf(stderr, "  --cokebank\n");
        fprintf(stderr, "        Coke bank database file (Default \"cokebank.db\")\n");
+       fprintf(stderr, "  --[dont-]daemonise\n");
+       fprintf(stderr, "        Run (or explicitly don't) the server disconnected from the terminal\n");
 }
 
 int main(int argc, char *argv[])
 {
         int    i;
-       pthread_t       timer_thread;
        
        // Parse Arguments
        for( i = 1; i < argc; i++ )
@@ -108,19 +110,9 @@ int main(int argc, char *argv[])
                                if( i + 1 >= argc )     return -1;
                                gsSnack_SerialPort = argv[++i];
                        }
-                       else if( strcmp(arg, "--doorpass") == 0 ) {
-                               FILE    *fp;
-                               char    buf[30];
+                       else if( strcmp(arg, "--doorport") == 0 ) {
                                if( i + 1 >= argc )     return -1;
-                               fp = fopen(argv[++i], "r");
-                               if( !fp ) {
-                                       fprintf(stderr, "ERROR: Unable to read password file\n");
-                                       perror("reading LAT password");
-                                       return -1;
-                               }
-                               fgets(buf, sizeof buf, fp);
-                               fclose(fp);
-                               gsDoor_Password = strdup(buf);
+                               gsDoor_SerialPort = argv[++i];
                        }
                        else if( strcmp(arg, "--cokebank") == 0 ) {
                                if( i + 1 >= argc )     return -1;
@@ -130,7 +122,7 @@ int main(int argc, char *argv[])
                                gbServer_RunInBackground = 1;
                        }
                        else if( strcmp(arg, "--dont-daemonise") == 0 ) {
-                               gbServer_RunInBackground = 1;
+                               gbServer_RunInBackground = 0;
                        }
                        else {
                                // Usage error?
@@ -157,11 +149,9 @@ int main(int argc, char *argv[])
 
        Load_Itemlist();
        
-       pthread_create( &timer_thread, NULL, Periodic_Thread, NULL );
-       
        Server_Start();
        
-       pthread_kill(timer_thread, SIGKILL);
+       pthread_kill(gTimerThread, SIGKILL);
 
        return 0;
 }
@@ -184,6 +174,11 @@ void *Periodic_Thread(void *Unused)
        return NULL;
 }
 
+void StartPeriodicThread(void)
+{
+       pthread_create( &gTimerThread, NULL, Periodic_Thread, NULL );
+}
+
 void AddPeriodicFunction(void (*Fcn)(void))
 {
        int i;
@@ -247,6 +242,8 @@ int InitSerial(const char *File, int BaudRate)
        
        info.c_lflag = 0;       // Non-Canoical, No Echo
        info.c_cflag = baud | CS8 | CLOCAL | CREAD;     // baud, 8N1
+       info.c_iflag = IGNCR;   // Ignore \r
+       info.c_oflag = 0;       // ???
        cfsetspeed(&info, baud);
        info.c_cc[VTIME] = 0;   // No time limit
        info.c_cc[VMIN] = 1;    // Block until 1 char

UCC git Repository :: git.ucc.asn.au