~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/libs/juti/juti.c

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*___INFO__MARK_BEGIN__*/
 
2
/*************************************************************************
 
3
 * 
 
4
 *  The Contents of this file are made available subject to the terms of
 
5
 *  the Sun Industry Standards Source License Version 1.2
 
6
 * 
 
7
 *  Sun Microsystems Inc., March, 2001
 
8
 * 
 
9
 * 
 
10
 *  Sun Industry Standards Source License Version 1.2
 
11
 *  =================================================
 
12
 *  The contents of this file are subject to the Sun Industry Standards
 
13
 *  Source License Version 1.2 (the "License"); You may not use this file
 
14
 *  except in compliance with the License. You may obtain a copy of the
 
15
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
16
 * 
 
17
 *  Software provided under this License is provided on an "AS IS" basis,
 
18
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
19
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
20
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
21
 *  See the License for the specific provisions governing your rights and
 
22
 *  obligations concerning the Software.
 
23
 * 
 
24
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
25
 * 
 
26
 *   Copyright: 2001 by Sun Microsystems, Inc.
 
27
 * 
 
28
 *   All Rights Reserved.
 
29
 * 
 
30
 ************************************************************************/
 
31
/*___INFO__MARK_END__*/
 
32
 
 
33
#ifdef WINDOWS
 
34
 
 
35
#include <windows.h>
 
36
 
 
37
#else
 
38
 
 
39
#include <unistd.h>
 
40
#include <stdio.h>
 
41
#include <stdlib.h>
 
42
#include <errno.h>
 
43
#include <string.h>
 
44
#include <termios.h>
 
45
 
 
46
#endif
 
47
 
 
48
void setEcho(int flag) 
 
49
{
 
50
#ifdef WINDOWS
 
51
   HANDLE hConsole;
 
52
   DWORD  dwMode;
 
53
 
 
54
   hConsole = CreateFile("CONIN$", 
 
55
              GENERIC_READ|GENERIC_WRITE, 
 
56
              FILE_SHARE_READ|FILE_SHARE_WRITE,
 
57
              NULL,
 
58
              OPEN_EXISTING,
 
59
              0,
 
60
              NULL);
 
61
 
 
62
   if(hConsole != INVALID_HANDLE_VALUE) {
 
63
      GetConsoleMode(hConsole, &dwMode);
 
64
      if(flag) {
 
65
         dwMode |= ENABLE_ECHO_INPUT;
 
66
      } else {
 
67
         dwMode &= ~ENABLE_ECHO_INPUT;
 
68
      }
 
69
      SetConsoleMode(hConsole, dwMode);
 
70
      CloseHandle(hConsole);
 
71
   }
 
72
#else /* unix */
 
73
   static struct termios init_set;
 
74
   static int initialized = 0;
 
75
 
 
76
   struct termios new_set;
 
77
   
 
78
   if(initialized == 0) {
 
79
      tcgetattr(fileno(stdin), &init_set);
 
80
      initialized = 1;
 
81
   }
 
82
 
 
83
   new_set = init_set;
 
84
   if(flag) {   
 
85
      tcsetattr(fileno(stdin), TCSAFLUSH, &init_set);
 
86
   } else {
 
87
      new_set.c_lflag &= ~ECHO;
 
88
      tcsetattr(fileno(stdin), TCSAFLUSH, &new_set);
 
89
   }
 
90
 
 
91
#endif
 
92
}
 
93