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
// FILE:        BufFileInput.h
// AUTHOR:      Alexey Demakov (AVD) demakov@kazbek.ispras.ru
// CREATION:    26-JAN-1998
// DESCRIPTION: File Input Stream with lookahead for Scanner
// Tested under Win32 with ANTLR 1.33 MR10 and MSVC 5.0
 
// Change History:
//
//   28-May-1998    Add virtual destructor to release buffer
//                  Manfred Kogler (km@cast.uni-linz.ac.at)
//                  (1.33MR14)
 
#ifndef BufFileInput_h
#define BufFileInput_h
 
#include "pcctscfg.h"
 
#include "pccts_stdio.h"
 
PCCTS_NAMESPACE_STD
 
#include "DLexerBase.h"
 
class DllExportPCCTS BufFileInput : public DLGInputStream
{
public:
    // constructor
    // f - input stream
    // buf_size - size of buffer (maximal length for string in is_in)
 
    BufFileInput(FILE *f, int buf_size = 8 );
 
    virtual ~BufFileInput();
 
    // gets next char from stream
 
    virtual int nextChar( void );
 
    // looks in stream and compares next l characters with s
    // returns the result of comparision
 
    int lookahead( char* s );
 
private:
    FILE *input; // input stream;
    int* buf;    // buffer
    int  size;   // size of buffer
    int  start;  // position of the first symbol in buffer
    int  len;    // count of characters in buffers
};
 
#endif
// end of file BufFileInput.h