Initial move to common config code directory
[tpg/opendispense2.git] / src / server / handler_coke.c
index 79ae262..b9a9cf3 100644 (file)
  * - Remember, the coke machine echoes your text back to you!
  */
 #include "common.h"
+#include "../common/config.h"
 #include <stdio.h>
 #include <string.h>
-#include <unistd.h>
-#include <sys/stat.h>
-#include <fcntl.h>
-#include <regex.h>
 #include <stdarg.h>
 #include <pthread.h>
+#include <unistd.h>
+#include <modbus/modbus.h>
+#include <errno.h>
 
-#define READ_TIMEOUT   2       // 2 seconds for ReadChar
-#define TRACE_COKE     1
+#define MIN_DISPENSE_PERIOD    2
+#define COKE_RECONNECT_RATELIMIT       2
+
+// === CONSTANTS ===
+const int      ciCoke_MinPeriod = 5;
+const int      ciCoke_DropBitBase = 1024;
+const int      ciCoke_StatusBitBase = 16;
 
 // === IMPORTS ===
 
 // === PROTOTYPES ===
  int   Coke_InitHandler();
- int   Coke_int_GetSlotStatus(char *Buffer, int Slot);
-void   Coke_int_UpdateSlotStatuses(void);
  int   Coke_CanDispense(int User, int Item);
  int   Coke_DoDispense(int User, int Item);
- int   Writef(const char *Format, ...);
- int   WaitForColon();
- int   ReadLine(int len, char *output);
+ int   Coke_int_ConnectToPLC(void);
+ int   Coke_int_GetSlotFromItem(int Item, int bDispensing);
+ int   Coke_int_IsSlotEmpty(int Slot);
+ int   Coke_int_DropSlot(int Slot);
+static int     _ReadBit(int BitNum, uint8_t *Value);
+static int     _WriteBit(int BitNum, uint8_t Value);
 
 // === GLOBALS ===
 tHandler       gCoke_Handler = {
@@ -42,306 +48,223 @@ tHandler  gCoke_Handler = {
        Coke_CanDispense,
        Coke_DoDispense
 };
-char   *gsCoke_SerialPort = "/dev/ttyS0";
- int   giCoke_SerialFD;
-regex_t        gCoke_StatusRegex;
- int   gaCoke_CachedStatus[7];
-pthread_mutex_t        gCoke_Mutex = PTHREAD_MUTEX_INITIALIZER;
+const char     *gsCoke_ModbusAddress = "130.95.13.73";
+modbus_t       *gCoke_Modbus;
+time_t gtCoke_LastDispenseTime;
+time_t gtCoke_LastReconnectTime;
+ int   gbCoke_DummyMode = 1;
+ int   giCoke_NextCokeSlot = 0;
 
 // == CODE ===
 int Coke_InitHandler()
 {
-       printf("connecting to coke machine...\n");
-       
-       giCoke_SerialFD = InitSerial(gsCoke_SerialPort, 9600);
-       if( giCoke_SerialFD == -1 ) {
-               fprintf(stderr, "ERROR: Unable to open coke serial port ('%s')\n", gsCoke_SerialPort);
+       // Configuable dummy/blank mode (all dispenses succeed)
+       // TODO: Find a better way of handling missing/invalid options
+       if( Config_GetValueCount("coke_dummy_mode") > 0 )
+       {
+               gbCoke_DummyMode = Config_GetValue_Bool("coke_dummy_mode", 0);
+               if(gbCoke_DummyMode == -1)      gbCoke_DummyMode = 0;
        }
-       else {
-               // Reset the slot names.
-               // - Dunno why this is needed, but the machine plays silly
-               //   sometimes.
-               Writef("n0 Slot0\n");
-               if( !WaitForColon() )
-               {
-                       Writef("n1 Slot1\n");
-                       WaitForColon();
-                       Writef("n2 Slot2\n");
-                       WaitForColon();
-                       Writef("n3 Slot3\n");
-                       WaitForColon();
-                       Writef("n4 Slot4\n");
-                       WaitForColon();
-                       Writef("n5 Slot5\n");
-                       WaitForColon();
-                       Writef("n6 Coke\n");
-                       
-                       Coke_int_UpdateSlotStatuses();
-               }
+
+       // Open modbus
+       if( !gbCoke_DummyMode )
+       {
+               Coke_int_ConnectToPLC();
        }
-       
-       AddPeriodicFunction(Coke_int_UpdateSlotStatuses);
-       
-       CompileRegex(&gCoke_StatusRegex, "^slot\\s+([0-9]+)\\s+([^:]+):([a-zA-Z]+)\\s*", REG_EXTENDED);
+
        return 0;
 }
 
-int Coke_int_GetSlotStatus(char *Buffer, int Slot)
+int Coke_CanDispense(int UNUSED(User), int Item)
 {
-       regmatch_t      matches[4];
-        int    ret;
-       char    *status;        
+        int    slot;
        
-       // Parse status response
-       ret = RunRegex(&gCoke_StatusRegex, Buffer, sizeof(matches)/sizeof(matches[0]), matches, "Bad Response");
-       if( ret ) {
-               return -1;
-       }
+       // Check for 'dummy' mode
+       if( gbCoke_DummyMode )
+               return 0;
 
-       // Get slot status
-       Buffer[ matches[3].rm_eo ] = '\0';
-       status = &Buffer[ matches[3].rm_so ];
-       
-       #if TRACE_COKE
-       printf("Coke_CanDispense: Machine responded slot status '%s'\n", status);
-       #endif
+       // Get slot
+       slot = Coke_int_GetSlotFromItem(Item, 0);
+       if(slot < 0)    return -1;
 
-       if( strcmp(status, "full") == 0 ) {
-               gaCoke_CachedStatus[Slot] = 0;  // 0: Avaliiable
-               return 0;
-       }
-       else {
-               gaCoke_CachedStatus[Slot] = 1;  // 1: Empty
-               return 1;
-       }
+       return Coke_int_IsSlotEmpty(slot);
 }
 
 /**
- * \brief Update the status of all coke slots
- * \note Uses goto to reduce the chance of the lock being kept
+ * \brief Actually do a dispense from the coke machine
  */
-void Coke_int_UpdateSlotStatuses(void)
+int Coke_DoDispense(int UNUSED(User), int Item)
 {
-        int    i, len;
-       char    tmp[40];
-       
-       if( giCoke_SerialFD == -1 )     return ;
-       
-       pthread_mutex_lock(&gCoke_Mutex);
-       
-       WaitForColon();
-       Writef("d7\r\n");       // Update slot statuses
-       if( WaitForColon() )    goto ret;
-       Writef("s\n");
-       ReadLine(sizeof tmp, tmp);      // Read back what we just said
+        int    slot;
+       // Check for 'dummy' mode
+       if( gbCoke_DummyMode )
+               return 0;
+
+       // Get slot
+       slot = Coke_int_GetSlotFromItem(Item, 1);
+       if(slot < 0)    return -1;
        
-       for( i = 0; i <= 6; i ++ )
+       // Make sure there are not two dispenses within n seconds
+       if( time(NULL) - gtCoke_LastDispenseTime < ciCoke_MinPeriod )
        {
-               len = ReadLine(sizeof tmp, tmp);
-               if( len == -1 ) {
-                       #if TRACE_COKE
-                       printf("Coke_int_UpdateSlotStatuses: Read failed on slot %i\n", i);
-                       #endif
-                       goto ret;       // I give up :(
-               }
-               Coke_int_GetSlotStatus(tmp, i);
+                int    delay = ciCoke_MinPeriod - (time(NULL) - gtCoke_LastDispenseTime);
+               Debug_Debug("Waiting for %i seconds (rate limit)", delay);
+               sleep( delay );
+               Debug_Debug("wait done");
        }
+       gtCoke_LastDispenseTime = time(NULL);
 
-ret:
-       pthread_mutex_unlock(&gCoke_Mutex);
+       return Coke_int_DropSlot(slot);
 }
 
-int Coke_CanDispense(int UNUSED(User), int Item)
+// --- INTERNAL FUNCTIONS ---
+int Coke_int_ConnectToPLC(void)
 {
-       // Sanity please
-       if( Item < 0 || Item > 6 )      return -1;      // -EYOURBAD
-       
-       // Can't dispense if the machine is not connected
-       if( giCoke_SerialFD == -1 )
-               return -2;
+       // Ratelimit
+       if( time(NULL) - gtCoke_LastReconnectTime < COKE_RECONNECT_RATELIMIT )
+               return -1;
+
+       if( !gCoke_Modbus )
+       {
+               gCoke_Modbus = modbus_new_tcp(gsCoke_ModbusAddress, 502);
+               if( !gCoke_Modbus )
+               {
+                       perror("coke - modbus_new_tcp");
+                       gtCoke_LastReconnectTime = time(NULL);
+                       return 1;
+               }
+       }
+       else {
+               // Preven resource leaks
+               modbus_close(gCoke_Modbus);
+       }
+       Debug_Notice("Connecting to coke PLC machine on '%s'\n", gsCoke_ModbusAddress);
        
-       return gaCoke_CachedStatus[Item];
+       if( modbus_connect(gCoke_Modbus) )
+       {
+               gtCoke_LastReconnectTime = time(NULL);
+               perror("coke - modbus_connect");
+               modbus_free(gCoke_Modbus);
+               gCoke_Modbus = NULL;
+               return 1;
+       }
+
+       return 0;
 }
 
-/**
- * \brief Actually do a dispense from the coke machine
- */
-int Coke_DoDispense(int UNUSED(User), int Item)
+int Coke_int_GetSlotFromItem(int Item, int bDispensing)
 {
-       char    tmp[32];
-        int    ret, len;
-
-       // Sanity please
        if( Item < 0 || Item > 6 )      return -1;
 
-       // Can't dispense if the machine is not connected
-       if( giCoke_SerialFD == -1 )
-               return -2;
-       
-       // LOCK
-       pthread_mutex_lock(&gCoke_Mutex);
+       // Non-coke slots
+       if( Item < 6 )
+               return Item;
        
-       #if TRACE_COKE
-       printf("Coke_DoDispense: flushing input\n");
-       #endif
-       
-       // Wait for prompt
-       ret = 0;
-       while( WaitForColon() && ret < 3 )
+       // Iterate though coke slots and find the first one with a drink avaliable
+       // `giCoke_NextCokeSlot` ensures that the slots rotate
+       for( int i = 0; i < 4; i ++ )
        {
-               // Flush the input buffer
-               char    tmpbuf[512];
-               read(giCoke_SerialFD, tmpbuf, sizeof(tmpbuf));
-               #if TRACE_COKE
-               printf("Coke_DoDispense: sending 'd7'\n");
-               #endif
-               Writef("d7\r\n");
+               int slot = 6 + (i + giCoke_NextCokeSlot) % 4;
+               if( !Coke_int_IsSlotEmpty(slot) )
+               {
+                       if(bDispensing) {
+                               giCoke_NextCokeSlot ++;
+                               if(giCoke_NextCokeSlot == 4)    giCoke_NextCokeSlot = 0;
+                       }
+                       return slot;    // Drink avaliable
+               }
        }
 
-       #if TRACE_COKE
-       printf("Coke_DoDispense: sending 'd%i'\n", Item);
-       #endif
-       // Dispense
-       Writef("d%i\r\n", Item);
-       
-       // Read empty lines and echo-backs
-       do {
-               ret = ReadLine(sizeof(tmp)-1, tmp);
-               if( ret == -1 ) {
-                       pthread_mutex_unlock(&gCoke_Mutex);
-                       return -1;
-               }
-               #if TRACE_COKE
-               printf("Coke_DoDispense: read %i '%s'\n", ret, tmp);
-               #endif
-       } while( ret == 0 || tmp[0] == ':' || tmp[0] == 'd' );
+       // Coke is empty!
+       // - Return 6, even if it's empty, the checks elsewhere will avoid problems
+       return 6;
+}
 
-       WaitForColon(); // Eat up rest of response
-       
-       #if TRACE_COKE
-       printf("Coke_DoDispense: done\n");
-       #endif
-
-       // TODO: Regex instead?
-       if( strcmp(tmp, "ok") == 0 ) {
-               // We think dispense worked
-               // - The machine returns 'ok' if an empty slot is dispensed, even if
-               //   it doesn't actually try to dispense (no sound)
-               ret = 0;
-       }
-       else {
-               printf("Coke_DoDispense: Machine returned unknown value '%s'\n", tmp);
-               ret = -1;
+int Coke_int_IsSlotEmpty(int Slot)
+{
+       uint8_t status;
+
+       if( Slot < 0 || Slot > 9 )      return -1;
+
+       errno = 0;
+       if( _ReadBit(ciCoke_StatusBitBase + Slot, &status) )
+       {
+               perror("Coke_int_IsSlotEmpty - modbus_read_bits");
+               return -2;
        }
-       
-       #if TRACE_COKE
-       printf("Coke_DoDispense: Updating slot status\n");
-       #endif
-       // Update status
-       Writef("s%i\r\n", Item);
-       len = ReadLine(sizeof tmp, tmp);
-       if(len == -1)   gaCoke_CachedStatus[Item] = -1;
-       Coke_int_GetSlotStatus(tmp, Item);
-       
-       // Release and return
-       pthread_mutex_unlock(&gCoke_Mutex);
-       
-       return ret;
+
+       return status == 0;
 }
 
-char ReadChar()
+int Coke_int_DropSlot(int Slot)
 {
-       fd_set  readfs;
-       char    ch = 0;
-        int    ret;
-       struct timeval  timeout;
-       
-       timeout.tv_sec = READ_TIMEOUT;
-       timeout.tv_usec = 0;
-       
-       FD_ZERO(&readfs);
-       FD_SET(giCoke_SerialFD, &readfs);
-       
-       ret = select(giCoke_SerialFD+1, &readfs, NULL, NULL, &timeout);
-       if( ret == 0 )  return 0;       // Timeout
-       if( ret != 1 ) {
-               printf("readchar return %i\n", ret);
-               return 0;
+       uint8_t res;
+
+       if(Slot < 0 || Slot > 9)        return -1;
+
+       // Check if a dispense is in progress
+       if( _ReadBit(ciCoke_DropBitBase + Slot, &res) )
+       {
+               perror("Coke_int_DropSlot - modbus_read_bits#1");
+               return -2;
        }
-       
-       ret = read(giCoke_SerialFD, &ch, 1);
-       if( ret != 1 ) {
-               printf("ret = %i\n", ret);
-               return 0;
+       if( res != 0 )
+       {
+               // Manual dispense in progress
+               return -1;
        }
-       
-       return ch;
-}
 
-int Writef(const char *Format, ...)
-{
-       va_list args;
-        int    len;
-       
-       va_start(args, Format);
-       len = vsnprintf(NULL, 0, Format, args);
-       va_end(args);
-       
+       // Dispense
+       if( _WriteBit(ciCoke_DropBitBase + Slot, 1) )
        {
-               char    buf[len+1];
-               va_start(args, Format);
-               vsnprintf(buf, len+1, Format, args);
-               va_end(args);
-               
-               #if DEBUG
-               printf("Writef: %s", buf);
-               #endif
-               
-               return write(giCoke_SerialFD, buf, len);
+               perror("Coke_int_DropSlot - modbus_write_bit");
+               return -2;
        }
-       
-}
 
-int WaitForColon()
-{
-       fd_set  readfs;
-       char    ch = 0;
-       
-       FD_SET(giCoke_SerialFD, &readfs);
-       
-       while( (ch = ReadChar()) != ':' && ch != 0);
-       
-       if( ch == 0 )   return -1;      // Timeout
+       // Check that it started
+       usleep(1000);   // 1ms
+       if( _ReadBit(ciCoke_DropBitBase + Slot, &res) )
+       {
+               perror("Coke_int_DropSlot - modbus_read_bits#2");
+               return -2;
+       }
+       if( res == 0 )
+       {
+               // Oops!, no drink
+               Log_Error("Drink dispense failed, bit lowered too quickly");
+               Debug_Notice("Drink dispense failed, bit lowered too quickly");
+               return 1;
+       }
        
        return 0;
 }
 
-int ReadLine(int len, char *output)
+int _ReadBit(int BitNum, uint8_t *Value)
 {
-       char    ch;
-        int    i = 0;
-       
-       for(;;)
-       {
-               ch = ReadChar();
-                       
-               if( i < len )
-                       output[i++] = ch;
-               
-               if( ch == '\0' ) {
-                       break;
-               }
-               if( ch == '\n' || ch == '\r' ) {
-                       if( i < len )
-                               output[--i] = '\0';
-                       break;
-               }
-       }
-
-       //printf("ReadLine: output=%s\n", output);
-
-       if( !ch )       return -1;
-       return i;
+       errno = 0;
+       if( !gCoke_Modbus && Coke_int_ConnectToPLC() )
+               return -1;
+       if( modbus_read_bits( gCoke_Modbus, BitNum, 1, Value) >= 0 )
+               return 0;
+       if( Coke_int_ConnectToPLC() )
+               return -1;
+       if( modbus_read_bits( gCoke_Modbus, BitNum, 1, Value) >= 0 )
+               return 0;
+       return -1;
 }
 
+int _WriteBit(int BitNum, uint8_t Value)
+{
+       errno = 0;
+       if( !gCoke_Modbus && Coke_int_ConnectToPLC() )
+               return -1;
+       if( modbus_write_bit( gCoke_Modbus, BitNum, Value != 0 ) >= 0 )
+               return 0;
+       // Error case
+       if( Coke_int_ConnectToPLC() )
+               return -1;
+       if( modbus_write_bit( gCoke_Modbus, BitNum, Value != 0 ) >= 0 )
+               return 0;
+       return -1;
+}
 

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