my_conio.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include "mysys_priv.h"
  14. #ifdef __WIN__
  15. static HANDLE my_coninpfh= 0;     /* console input */
  16. /*
  17.   functions my_pthread_auto_mutex_lock & my_pthread_auto_mutex_free
  18.   are experimental at this moment, they are intended to bring
  19.   ability of protecting code sections without necessity to explicitly
  20.   initialize synchronization object in one of threads
  21.   if found useful they are to be exported in mysys
  22. */
  23. /*
  24.   int my_pthread_auto_mutex_lock(HANDLE* ph, const char* name, 
  25.                                  int id, int time)
  26.   NOTES
  27.     creates a mutex with given name and tries to lock it time msec.
  28.     mutex name is appended with id to allow system wide or process wide
  29.     locks. Handle to created mutex returned in ph argument.
  30.   RETURN
  31.     0               thread owns mutex
  32.     <>0             error
  33. */
  34. static
  35. int my_pthread_auto_mutex_lock(HANDLE* ph, const char* name, int id, int time)
  36. {
  37.   int res;
  38.   char tname[FN_REFLEN];
  39.   
  40.   sprintf(tname, "%s-%08X", name, id);
  41.   
  42.   *ph= CreateMutex(NULL, FALSE, tname);
  43.   if (*ph == NULL)
  44.     return GetLastError();
  45.   res= WaitForSingleObject(*ph, time);
  46.   
  47.   if (res == WAIT_TIMEOUT)
  48.     return ERROR_SEM_TIMEOUT;
  49.   if (res == WAIT_FAILED)
  50.     return GetLastError();
  51.   return 0;
  52. }
  53. /*
  54.   int my_pthread_auto_mutex_free(HANDLE* ph)
  55.   NOTES
  56.     releases a mutex.
  57.   RETURN
  58.     0               thread released mutex
  59.     <>0             error
  60. */
  61. static
  62. int my_pthread_auto_mutex_free(HANDLE* ph)
  63. {
  64.   if (*ph)
  65.   {
  66.     ReleaseMutex(*ph);
  67.     CloseHandle(*ph);
  68.     *ph= NULL;
  69.   }
  70.   return 0;
  71. }
  72. #define pthread_auto_mutex_decl(name)                           
  73.   HANDLE __h##name= NULL;
  74. #define pthread_auto_mutex_lock(name, proc, time)               
  75.   my_pthread_auto_mutex_lock(&__h##name, #name, (proc), (time))
  76. #define pthread_auto_mutex_free(name)                           
  77.   my_pthread_auto_mutex_free(&__h##name)
  78. /*
  79.   char* my_cgets(char *string, unsigned long clen, unsigned long* plen)
  80.   NOTES
  81.     Replaces _cgets from libc to support input of more than 255 chars.
  82.     Reads from the console via ReadConsole into buffer which 
  83.     should be at least clen characters.
  84.     Actual length of string returned in plen.
  85.   WARNING
  86.     my_cgets() does NOT check the pushback character buffer (i.e., _chbuf).
  87.     Thus, my_cgets() will not return any character that is pushed back by 
  88.     the _ungetch() call.
  89.   RETURN
  90.     string pointer ok
  91.     NULL           Error
  92. */
  93. char* my_cgets(char *buffer, unsigned long clen, unsigned long* plen)
  94. {
  95.   ULONG state;
  96.   char *result;
  97.   CONSOLE_SCREEN_BUFFER_INFO csbi;
  98.   
  99.   pthread_auto_mutex_decl(my_conio_cs);
  100.  
  101.   /* lock the console for the current process*/
  102.   if (pthread_auto_mutex_lock(my_conio_cs, GetCurrentProcessId(), INFINITE))
  103.   {
  104.     /* can not lock console */
  105.     pthread_auto_mutex_free(my_conio_cs);  
  106.     return NULL;
  107.   }
  108.   /* init console input */
  109.   if (my_coninpfh == 0)
  110.   {
  111.     /* same handle will be used until process termination */
  112.     my_coninpfh= CreateFile("CONIN$", GENERIC_READ | GENERIC_WRITE,
  113.                             FILE_SHARE_READ | FILE_SHARE_WRITE,
  114.                             NULL, OPEN_EXISTING, 0, NULL);
  115.   }
  116.   if (my_coninpfh == INVALID_HANDLE_VALUE) 
  117.   {
  118.     /* unlock the console */
  119.     pthread_auto_mutex_free(my_conio_cs);  
  120.     return(NULL);
  121.   }
  122.   GetConsoleMode((HANDLE)my_coninpfh, &state);
  123.   SetConsoleMode((HANDLE)my_coninpfh, ENABLE_LINE_INPUT | 
  124.                  ENABLE_PROCESSED_INPUT | ENABLE_ECHO_INPUT);
  125.   GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi);
  126.   /* 
  127.     there is no known way to determine allowed buffer size for input
  128.     though it is known it should not be more than 64K               
  129.     so we cut 64K and try first size of screen buffer               
  130.     if it is still to large we cut half of it and try again         
  131.     later we may want to cycle from min(clen, 65535) to allowed size
  132.     with small decrement to determine exact allowed buffer           
  133.   */
  134.   clen= min(clen, 65535);
  135.   do
  136.   {
  137.     clen= min(clen, (unsigned long)csbi.dwSize.X*csbi.dwSize.Y);
  138.     if (!ReadConsole((HANDLE)my_coninpfh, (LPVOID)buffer, clen - 1, plen, NULL))
  139.     {
  140.       result= NULL;
  141.       clen>>= 1;
  142.     }
  143.     else
  144.     {
  145.       result= buffer;
  146.       break;
  147.     }
  148.   }
  149.   while (GetLastError() == ERROR_NOT_ENOUGH_MEMORY);
  150.   if (result != NULL)
  151.   {
  152.     if (buffer[*plen - 2] == 'r')
  153.     {
  154.       *plen= *plen - 2;
  155.     }
  156.     else 
  157.     {
  158.       if (buffer[*plen - 1] == 'r')
  159.       {
  160.         char tmp[3];
  161.         int  tmplen= sizeof(tmp);
  162.         *plen= *plen - 1;
  163.         /* read /n left in the buffer */
  164.         ReadConsole((HANDLE)my_coninpfh, (LPVOID)tmp, tmplen, &tmplen, NULL);
  165.       }
  166.     }
  167.     buffer[*plen]= '';
  168.   }
  169.   SetConsoleMode((HANDLE)my_coninpfh, state);
  170.   /* unlock the console */
  171.   pthread_auto_mutex_free(my_conio_cs);  
  172.   return result;
  173. }
  174. #endif /* __WIN__ */