hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
 
/************************************************************/
/*                                                            */
/*        Predefined char stream: Input from (c++) stream.    */
/*                                                            */
/* By Hubert Holin (Hubert.Holin@Bigfoot.com), 1998.        */
/*                                                            */
/* This is completely free stuff, do whatever you want with    */
/* it (but then, I will take no responsibility for whatever    */
/* may happen if you do either... caveat emptor!).            */
/*                                                            */
/************************************************************/
 
#ifndef _DLG_STREAM_INPUT_H
#define _DLG_STREAM_INPUT_H
 
#include "pccts_istream.h"
 
PCCTS_NAMESPACE_STD
 
#ifndef DLGX_H
#include "DLexerBase.h"
#endif
 
 
// NOTES:    The semantics of the copy constructor
//            and the affectation operator may be unwarranted...
//            and the stream may not be reset.
//
//            It would have been so much nicer for nextChar()
//            to throw (of for the DLGInputStream to change status)
//            upon hitting EOF than to return an "int"...
 
template    <
               class E,
               class T = ::std::char_traits<E>
           >
class DLG_stream_input : public DLGInputStream
{
public:
   
                       DLG_stream_input(::std::basic_istream<E,T> * p_input_stream)
   :    input(p_input_stream)
   {
       // nothing to do!
   };
   
                       DLG_stream_input(const DLG_stream_input & a_recopier)
   :    input(a_recopier.input)
   {
       // nothing to do!
   };
   
   virtual                ~DLG_stream_input()
   {
       this->purge();    // bloody templarized lookup...
   };
   
   DLG_stream_input    operator = (const DLG_stream_input & a_affecter)
   {
       if (this != &a_affecter)
       {
           input = a_affecter.input;
       }
 
       return(*this);
   };
   
   virtual int            nextChar()
   {
       E    extracted_stuff;
       
       input->get(extracted_stuff);
       
       if    (*input)
       {
           return(int(extracted_stuff));
       }
       else
       {
           return(EOF);
       }
   };
   
protected:
   
   ::std::basic_istream<E,T> *    input;
   
private:
   
   void    purge()
   {
       // nothing to do!
   };
};
 
#endif /* _DLG_STREAM_INPUT_H */