home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 mARCH / PCWK3A99.iso / Linux / DDD331 / DDD-3_1_.000 / DDD-3_1_ / ddd-3.1.1 / ddd / TTYAgent.h < prev    next >
C/C++ Source or Header  |  1998-08-21  |  4KB  |  115 lines

  1. // $Id: TTYAgent.h,v 1.21 1998/08/21 10:21:52 zeller Exp $ -*- C++ -*-
  2. // An agent interface using ptys (pseudo ttys)
  3.  
  4. // Copyright (C) 1995 Technische Universitaet Braunschweig, Germany.
  5. // Written by Andreas Zeller <zeller@ips.cs.tu-bs.de>.
  6. // 
  7. // This file is part of DDD.
  8. // 
  9. // DDD is free software; you can redistribute it and/or
  10. // modify it under the terms of the GNU General Public
  11. // License as published by the Free Software Foundation; either
  12. // version 2 of the License, or (at your option) any later version.
  13. // 
  14. // DDD is distributed in the hope that it will be useful,
  15. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  17. // See the GNU General Public License for more details.
  18. // 
  19. // You should have received a copy of the GNU General Public
  20. // License along with DDD -- see the file COPYING.
  21. // If not, write to the Free Software Foundation, Inc.,
  22. // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  23. // 
  24. // DDD is the data display debugger.
  25. // For details, see the DDD World-Wide-Web page, 
  26. // `http://www.cs.tu-bs.de/softech/ddd/',
  27. // or send a mail to the DDD developers <ddd@ips.cs.tu-bs.de>.
  28.  
  29. #ifndef _DDD_TTYAgent_h
  30. #define _DDD_TTYAgent_h
  31.  
  32. #ifdef __GNUG__
  33. #pragma interface
  34. #endif
  35.  
  36. #include "LiterateA.h"
  37. #include <unistd.h>
  38. #include <stdlib.h>
  39. #include <fcntl.h>        // O_RDWR
  40.  
  41. const unsigned TTYAgent_NTypes = LiterateAgent_NTypes;
  42.  
  43. class TTYAgent: public LiterateAgent {
  44. public:
  45.     DECLARE_TYPE_INFO
  46.  
  47. private:
  48.     string _master_tty;   // master side of terminal
  49.     string _slave_tty;    // slave side of terminal
  50.     int master;          // master file descriptor
  51.     int slave;          // slave file descriptor
  52.     bool push;            // true if extra devices must be pushed
  53.  
  54.     void open_master();   // find and open master tty
  55.     void open_slave();      // open slave tty 
  56.  
  57. protected:
  58.     // Hooks for alternative communication schemes
  59.     virtual int setupCommunication();
  60.     virtual int setupChildCommunication();
  61.     virtual int setupParentCommunication();
  62.  
  63.     // Open a tty.
  64.     // Like open(TTY, FLAGS), but care for EAGAIN and EWOULDBLOCK conditions
  65.     virtual int open_tty(const char *tty, int flags = O_RDWR);
  66.  
  67.     // Check whether a TTY is usable
  68.     virtual bool tty_ok(const char *tty);
  69.  
  70. public:
  71.     // Constructors
  72.     TTYAgent(XtAppContext app_context, const string& pth,
  73.          unsigned nTypes = TTYAgent_NTypes):
  74.         LiterateAgent(app_context, pth, nTypes),
  75.     _master_tty(), _slave_tty(),
  76.     master(-1), slave(-1),
  77.     push(false)
  78.     {}
  79.  
  80.     TTYAgent(XtAppContext app_context, FILE *in = stdin,
  81.          FILE *out = stdout, FILE *err = 0, 
  82.          unsigned nTypes = TTYAgent_NTypes):
  83.         LiterateAgent(app_context, in, out, err, nTypes),
  84.     _master_tty(), _slave_tty(),
  85.     master(-1), slave(-1),
  86.     push(false)
  87.     {}
  88.  
  89.     TTYAgent(XtAppContext app_context, bool dummy,
  90.          unsigned nTypes = TTYAgent_NTypes):
  91.         LiterateAgent(app_context, dummy, nTypes),
  92.     _master_tty(), _slave_tty(),
  93.     master(-1), slave(-1),
  94.     push(false)
  95.     {}
  96.  
  97.     // Duplicator
  98.     TTYAgent (const TTYAgent& tty)
  99.     : LiterateAgent(tty),
  100.       _master_tty(tty.master_tty()),
  101.       _slave_tty(tty.slave_tty()),
  102.       master(tty.master),
  103.       slave(tty.slave),
  104.       push(tty.push)
  105.     {};
  106.     virtual Agent *dup() const { return new TTYAgent(*this); }
  107.  
  108.     // Return the name of the used tty
  109.     const string& master_tty() const { return _master_tty; }
  110.     const string& slave_tty() const  { return _slave_tty; }
  111. };
  112.  
  113. #endif // _DDD_TTYAgent_h
  114. // DON'T ADD ANYTHING BEHIND THIS #endif
  115.