(bugfix) Insufficient warning level to catch that bug
[tpg/opendispense2.git] / src / server / handler_snack.c
index 826851e..0a34a71 100644 (file)
@@ -31,36 +31,47 @@ tHandler    gSnack_Handler = {
        Snack_DoDispense
 };
 char   *gsSnack_SerialPort = "/dev/ttyS1";
+#if 0
  int   giSnack_SerialFD;
 regex_t        gSnack_ResponseRegex;
+#endif
 
 // == CODE ===
 int Snack_InitHandler()
 {
-       giSnack_SerialFD = open(gsSnack_SerialPort, O_RDWR);
+#if 0
+       giSnack_SerialFD = InitSerial(gsSnack_SerialPort, 9600);
+       if( giSnack_SerialFD == -1 ) {
+               fprintf(stderr, "ERROR: Unable to open snack serial port ('%s')\n", gsSnack_SerialPort);
+       }
+       
        regcomp(&gSnack_ResponseRegex, "^(\\d\\d\\d)(.*)$", REG_EXTENDED);
+#endif
        return 0;
 }
 
-int Snack_CanDispense(int User, int Item)
+int Snack_CanDispense(int UNUSED(User), int Item)
 {
        // Sanity please
        if( Item < 0 || Item > 99 )     return -1;
        
-       return 1;
+       // Hmm... could we implement slot statuses?
+       
+       return 0;
 }
 
 /**
  * \brief Actually do a dispense from the coke machine
  */
-int Snack_DoDispense(int User, int Item)
+int Snack_DoDispense(int UNUSED(User), int Item)
 {
-       char    tmp[32];
-       regmatch_t      matches[4];
-
        // Sanity please
        if( Item < 0 || Item > 99 )     return -1;
 
+#if 0
+       char    tmp[32];
+       regmatch_t      matches[4];
+
        // Dispense
        sprintf(tmp, "V%02i\n", Item);
        write(giSnack_SerialFD, tmp, 2);
@@ -68,8 +79,7 @@ int Snack_DoDispense(int User, int Item)
        // Get status
        read(giSnack_SerialFD, tmp, sizeof(tmp)-1);
        regexec(&gSnack_ResponseRegex, tmp, sizeof(matches)/sizeof(matches[0]), matches, 0);
+#endif
 
        return 0;
 }
-
-

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