Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

Encapsulating the DOS IOCTL Interface


November 1994/Encapsulating the DOS IOCTL Interface/Listing 3

Listing 3 iohandle.h — base class for handle-based IOCTL for character devices and files

#ifndef __IOHANDLE_H
#define __IOHANDLE_H
#include "iobase.h"

class IoctlHandle : public IoctlBase {
protected:
   unsigned handle_info( int );      //get info
   virtual void IoctlError(int);
   IoctlHandle( int handle );      //constructor 1
   IoctlHandle( const char *path );  //constructor 2
   int _handle;        //validated handle
   int _pathused;   //!0 if Init( char *) called
   unsigned _info;     //handle info word
public:
   static IoctlHandle *Init( int handle );
   static IoctlHandle *Init(const char *);
   ~IoctlHandle();     //destructor

   //Format of handle information word ....
   enum file_info   {
   drive_number = 0x003f, //bits 0-5 =drive#

                      //(0-based, A=0)
                  //= drive containing the file.
   cleared = 0x0040,  //bit 6=1 if file cleared
                   // (i.e. not written to)
   file_bit = 0x0080,    //bit 7=0 if a file
   fixed = 0x0800,   //bit 11=1, media not removable
   noInherit = 0x1000,  //bit 12=1, no inherit (?)
   noCommit = 0x4000,  //bit 14=1, Date/time not set
                    //on handle close operation
   remote = 0x8000     //bit 15=1 if file remote
   };
   enum device_info {
   std_in = 0x0001,    //bit 0=1 if std input
   std_out = 0x0002,   //bit 1=1 if std output
   std_nul = 0x0004,   //bit 2=1 if NUL device
   std_clk = 0x0008,   //bit 3=1 if CLOCK device
   use_int29h = 0x0010,  //use int 29h for single
                     //char text output.....
   binary = 0x0020,      //bit 5=0 if ASCII,
                     // =1 if binary
   eof = 0x0040,       //bit 6=0 if at EOF on input
   device_bit = 0x0080,   //bit 7=1 if a device
   network = 0x1000,  //bit 12=1 if network device
   ioctl = 0x4000  //bit 14=1 if driver can
                //process IOCTL strings via
                //subfunctions 02h & 03h
   };
   int readHandle(void) { return _handle; }
   int isFile( void )
      {  return !(file_bit & info); }
   int isDevice( void )
      {  return device_bit & _info; }
   unsigned handleInfo(void) //get & refresh _info
      {   _info = handle_info( _handle );
          return _info;       }
   int inputStatus( void );  //!0=ready, 0=not
   int outputStatus( void ); //!0=ready, 0=not
   int isRemote(void);  //File/device handle remote?
};  //.... end class IoctlHandle
#endif //_IOHANDLE_H

// End of File

Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.