~ubuntu-branches/ubuntu/maverick/aspectc++/maverick

« back to all changes in this revision

Viewing changes to Puma/gen-release/step1/inc/Puma/SB_Sequential.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2008-04-10 17:40:52 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080410174052-xdnsm7oi8hauyyf1
Tags: 1.0pre4~svn.20080409+dfsg-3
Fix another missing include, this time in Ag++/StdSystem.cc

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// This file is part of PUMA.
2
 
// Copyright (C) 1999-2003  The PUMA developer team.
3
 
//                                                                
4
 
// This program is free software;  you can redistribute it and/or 
5
 
// modify it under the terms of the GNU General Public License as 
6
 
// published by the Free Software Foundation; either version 2 of 
7
 
// the License, or (at your option) any later version.            
8
 
//                                                                
9
 
// This program is distributed in the hope that it will be useful,
10
 
// but WITHOUT ANY WARRANTY; without even the implied warranty of 
11
 
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the  
12
 
// GNU General Public License for more details.                   
13
 
//                                                                
14
 
// You should have received a copy of the GNU General Public      
15
 
// License along with this program; if not, write to the Free     
16
 
// Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
17
 
// MA  02111-1307  USA                                            
18
 
 
19
 
#ifndef __sb_sequential_h__
20
 
#define __sb_sequential_h__
21
 
 
22
 
#include "Puma/ScanBuffer.h"
23
 
#include "Puma/Source.h"
24
 
#include <string.h>
25
 
 
26
 
namespace Puma {
27
 
 
28
 
 
29
 
class SB_Sequential : public ScanBuffer {
30
 
  char TokenBuffer[1024]; // Maximum token size!
31
 
  int  BuffPos;
32
 
  int  BuffSize;
33
 
  Source *source;
34
 
  State _state;
35
 
 
36
 
  void fetch ();
37
 
 
38
 
public:
39
 
  void init (Source &src) { source = &src; }
40
 
  char next () {
41
 
    char character = TokenBuffer[BuffPos++];
42
 
    if (BuffPos == BuffSize)
43
 
      fetch ();
44
 
    return character;
45
 
  }
46
 
 
47
 
  char *token () { return TokenBuffer; }
48
 
  int len () const { return BuffPos; }
49
 
  void reset () { BuffPos = 0; BuffSize = 0; fetch (); }
50
 
  void retry () { BuffPos = 0; }
51
 
  void accept (int len) {
52
 
    BuffSize -= len; BuffPos = 0;
53
 
    memcpy (TokenBuffer, TokenBuffer + len, BuffSize);
54
 
  }
55
 
  void more (int len) { BuffPos = len; }
56
 
  State state () const { return (BuffPos < BuffSize) ? STATE_OK : _state; }
57
 
};
58
 
 
59
 
 
60
 
} // namespace Puma
61
 
 
62
 
#endif /* __sb_sequential_h__ */