X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=src%2Fserver%2Fhandler_coke.c;h=b8d3158b285552b39c70631f92ed10b4130edad9;hb=1260408d65c759d98f158087adc1e9497c360504;hp=c937756583c9bac0a7bbf1f9b65d03aface5d3f2;hpb=3e7700e1b9b652bb3ed7daaff76cf891907a63b3;p=tpg%2Fopendispense2.git diff --git a/src/server/handler_coke.c b/src/server/handler_coke.c index c937756..b8d3158 100644 --- a/src/server/handler_coke.c +++ b/src/server/handler_coke.c @@ -21,6 +21,8 @@ int Coke_InitHandler(); int Coke_CanDispense(int User, int Item); int Coke_DoDispense(int User, int Item); + int WaitForColon(); + int ReadLine(int len, char *output); // === GLOBALS === tHandler gCoke_Handler = { @@ -56,26 +58,44 @@ int Coke_CanDispense(int User, int Item) // Sanity please if( Item < 0 || Item > 6 ) return -1; // -EYOURBAD + ret = 0; + do { + write(giCoke_SerialFD, "d7\r\n", 4); + } while( WaitForColon() && ret++ < 3 ); + + if( ret == 3 ) { + fprintf(stderr, "Coke machine timed out\n"); + return -2; // -EMYBAD + } + + // TODO: Handle "not ok" response to D7 + // Ask the coke machine - sprintf(tmp, "s%i\n", Item); - write(giCoke_SerialFD, tmp, 2); + sprintf(tmp, "s%i\r\n", Item); + write(giCoke_SerialFD, tmp, 4); - // Wait a little - sleep(250); + ret = ReadLine(sizeof(tmp)-1, tmp); + printf("ret = %i, tmp = '%s'\n", ret, tmp); +// if( !ret ) +// ret = ReadLine(sizeof(tmp)-1, tmp); + printf("ret = %i, tmp = '%s'\n", ret, tmp); - // Read the response - tmp[0] = '\0'; - ret = read(giCoke_SerialFD, tmp, sizeof(tmp)-1); - //printf("ret = %i\n", ret); + // Catch an error if( ret <= 0 ) { fprintf(stderr, "Coke machine is not being chatty (read = %i)\n", ret); + if( ret == -1 ) { + perror("Coke Machine"); + } return -1; } + + // Parse status response ret = RunRegex(&gCoke_StatusRegex, tmp, sizeof(matches)/sizeof(matches[0]), matches, "Bad Response"); if( ret ) { return -1; } + // Get slot status tmp[ matches[3].rm_eo ] = '\0'; status = &tmp[ matches[3].rm_so ]; @@ -98,16 +118,16 @@ int Coke_DoDispense(int User, int Item) // Sanity please if( Item < 0 || Item > 6 ) return -1; + WaitForColon(); + // Dispense - sprintf(tmp, "d%i\n", Item); - write(giCoke_SerialFD, tmp, 2); + sprintf(tmp, "d%i\r\n", Item); + write(giCoke_SerialFD, tmp, 4); - // Wait a little - sleep(250); + WaitForColon(); // Get status - read(giCoke_SerialFD, tmp, sizeof(tmp)-1); - regexec(&gCoke_StatusRegex, tmp, sizeof(matches)/sizeof(matches[0]), matches, 0); + ReadLine(sizeof(tmp)-1, tmp); tmp[ matches[3].rm_eo ] = '\0'; status = &tmp[ matches[3].rm_so ]; @@ -117,4 +137,76 @@ int Coke_DoDispense(int User, int Item) return 0; } +char ReadChar() +{ + fd_set readfs; + char ch = 0; + int ret; + struct timeval timeout; + + timeout.tv_sec = 5; // 5 second 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; + } + + ret = read(giCoke_SerialFD, &ch, 1); + if( ret != 1 ) { + printf("ret = %i\n", ret); + return 0; + } + + return ch; +} + +int WaitForColon() +{ + fd_set readfs; + char ch = 0; + + FD_SET(giCoke_SerialFD, &readfs); + + while( (ch = ReadChar()) != ':' && ch != 0); + + if( ch == 0 ) return -1; // Timeout + + return 0; +} + +int ReadLine(int len, char *output) +{ + char ch; + int i = 0; + int ret = 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; +} +