libdap Updated for version 3.21.1
libdap4 is an implementation of OPeNDAP's DAP protocol.
parser.h
Go to the documentation of this file.
1
2// -*- mode: c++; c-basic-offset:4 -*-
3
4// This file is part of libdap, A C++ implementation of the OPeNDAP Data
5// Access Protocol.
6
7// Copyright (c) 2002,2003 OPeNDAP, Inc.
8// Author: James Gallagher <jgallagher@opendap.org>
9//
10// This library is free software; you can redistribute it and/or
11// modify it under the terms of the GNU Lesser General Public
12// License as published by the Free Software Foundation; either
13// version 2.1 of the License, or (at your option) any later version.
14//
15// This library is distributed in the hope that it will be useful,
16// but WITHOUT ANY WARRANTY; without even the implied warranty of
17// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18// Lesser General Public License for more details.
19//
20// You should have received a copy of the GNU Lesser General Public
21// License along with this library; if not, write to the Free Software
22// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23//
24// You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.
25
26// (c) COPYRIGHT URI/MIT 1994-1999
27// Please read the full copyright statement in the file COPYRIGHT_URI.
28//
29// Authors:
30// jhrg,jimg James Gallagher <jgallagher@gso.uri.edu>
31
32// Constants, types and function prototypes for use with the DAP parsers.
33//
34// jhrg 2/3/96
35
36#ifndef _parser_h
37#define _parser_h
38
39#ifndef _error_h
40#include "Error.h"
41#endif
42
43#define YYDEBUG 1
44#undef YYERROR_VERBOSE
45#define YY_NO_UNPUT 1
46
47#define ID_MAX 256
48
49#ifndef TRUE
50#define TRUE 1
51#define FALSE 0
52#endif
53
54namespace libdap {
55
66
67struct parser_arg {
68 void *_object; // nominally a pointer to an object
69 Error *_error; // a pointer to an Error object
70 int _status; // parser status
71
72 parser_arg() : _object(0), _error(0), _status(1) {}
73 parser_arg(void *obj) : _object(obj), _error(0), _status(1) {}
74 virtual ~parser_arg() {
75 if (_error) {
76 delete _error;
77 _error = 0;
78 }
79 }
80
81 void *object() { return _object; }
82 void set_object(void *obj) { _object = obj; }
83 Error *error() { return _error; }
84 void set_error(Error *obj) { _error = obj; }
85 int status() { return _status; }
86 void set_status(int val = 0) { _status = val; }
87};
88
108void parse_error(parser_arg *arg, const char *s, const int line_num = 0, const char *context = 0);
109void parse_error(const string &msg, const int line_num, const char *context = 0);
111
112} // namespace libdap
113
114#include "parser-util.h"
115
116#endif // _parser_h
A class for error processing.
Definition Error.h:92
top level DAP object to house generic methods
Definition AISConnect.cc:30
void parse_error(parser_arg *arg, const char *msg, const int line_num, const char *context)
parser_arg(void *obj)
Definition parser.h:73
void set_error(Error *obj)
Definition parser.h:84
void set_object(void *obj)
Definition parser.h:82
Error * _error
Definition parser.h:69
void * object()
Definition parser.h:81
virtual ~parser_arg()
Definition parser.h:74
Error * error()
Definition parser.h:83
void set_status(int val=0)
Definition parser.h:86