mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
3db4f013bf
Specific changes: 1. Add dap4 code: libdap4 and dap4_test. Note that until the d4ts server problem is solved, dap4 is turned off. 2. Modify various files to support dap4 flags: configure.ac, Makefile.am, CMakeLists.txt, etc. 3. Add nc_test/test_common.sh. This centralizes the handling of the locations of various things in the build tree: e.g. where is ncgen.exe located. See nc_test/test_common.sh for details. 4. Modify .sh files to use test_common.sh 5. Obsolete separate oc2 by moving it to be part of netcdf-c. This means replacing code with netcdf-c equivalents. 5. Add --with-testserver to configure.ac to allow override of the servers to be used for --enable-dap-remote-tests. 6. There were multiple versions of nctypealignment code. Try to centralize in libdispatch/doffset.c and include/ncoffsets.h 7. Add a unit test for the ncuri code because of its complexity. 8. Move the findserver code out of libdispatch and into a separate, self contained program in ncdap_test and dap4_test. 9. Move the dispatch header files (nc{3,4}dispatch.h) to .../include because they are now shared by modules. 10. Revamp the handling of TOPSRCDIR and TOPBUILDDIR for shell scripts. 11. Make use of MREMAP if available 12. Misc. minor changes e.g. - #include <config.h> -> #include "config.h" - Add some no-install headers to /include - extern -> EXTERNL and vice versa as needed - misc header cleanup - clean up checking for misc. unix vs microsoft functions 13. Change copyright decls in some files to point to LICENSE file. 14. Add notes to RELEASENOTES.md
91 lines
3.1 KiB
C
91 lines
3.1 KiB
C
/* Copyright 2009, UCAR/Unidata and OPeNDAP, Inc.
|
|
See the COPYRIGHT file for more information. */
|
|
|
|
#ifndef DAPPARSELEX_H
|
|
#define DAPPARSELEX_H 1
|
|
|
|
#include "ocinternal.h"
|
|
#include "ocdebug.h"
|
|
|
|
/* For consistency with Java parser */
|
|
#define null NULL
|
|
|
|
typedef void* Object;
|
|
|
|
#define YYSTYPE Object
|
|
|
|
#define MAX_TOKEN_LENGTH 1024
|
|
|
|
/*! Specifies the Lexstate. */
|
|
typedef struct DAPlexstate {
|
|
char* input;
|
|
char* next; /* next char in uri.query*/
|
|
NCbytes* yytext;
|
|
int lineno;
|
|
/*! Specifies the Lasttoken. */
|
|
int lasttoken;
|
|
char lasttokentext[MAX_TOKEN_LENGTH+1];
|
|
char* wordchars1;
|
|
char* wordcharsn;
|
|
char* worddelims;
|
|
NClist* reclaim; /* reclaim WORD_WORD instances */
|
|
} DAPlexstate;
|
|
|
|
/*! Specifies the DAPparsestate. */
|
|
typedef struct DAPparsestate {
|
|
struct OCnode* root;
|
|
DAPlexstate* lexstate;
|
|
NClist* ocnodes;
|
|
struct OCstate* conn;
|
|
/* Provide a flag for semantic failures during parse */
|
|
OCerror error; /* OC_EDAPSVC=> we had a server failure; else we had a semantic error */
|
|
char* code;
|
|
char* message;
|
|
char* progtype;
|
|
char* progname;
|
|
/* State for constraint expressions */
|
|
struct CEstate* cestate;
|
|
} DAPparsestate;
|
|
|
|
extern int dapdebug; /* global state */
|
|
|
|
extern int daperror(DAPparsestate*, const char*);
|
|
extern int dapsemanticerror(DAPparsestate* state, OCerror, const char* msg);
|
|
extern void dap_parse_error(DAPparsestate*,const char *fmt, ...);
|
|
/* bison parse entry point */
|
|
extern int dapparse(DAPparsestate*);
|
|
|
|
extern Object dap_datasetbody(DAPparsestate*,Object decls, Object name);
|
|
extern Object dap_declarations(DAPparsestate*,Object decls, Object decl);
|
|
extern Object dap_arraydecls(DAPparsestate*,Object arraydecls, Object arraydecl);
|
|
extern Object dap_arraydecl(DAPparsestate*,Object name, Object size);
|
|
|
|
extern void dap_dassetup(DAPparsestate*);
|
|
extern Object dap_attributebody(DAPparsestate*,Object attrlist);
|
|
extern Object dap_attrlist(DAPparsestate*,Object attrlist, Object attrtuple);
|
|
extern Object dap_attribute(DAPparsestate*,Object name, Object value, Object etype);
|
|
extern Object dap_attrset(DAPparsestate*,Object name, Object attributes);
|
|
extern Object dap_attrvalue(DAPparsestate*,Object valuelist, Object value, Object etype);
|
|
|
|
extern Object dap_makebase(DAPparsestate*,Object name, Object etype, Object dimensions);
|
|
extern Object dap_makestructure(DAPparsestate*,Object name, Object dimensions, Object fields);
|
|
extern Object dap_makesequence(DAPparsestate*,Object name, Object members);
|
|
extern Object dap_makegrid(DAPparsestate*,Object name, Object arraydecl, Object mapdecls);
|
|
|
|
extern void dap_errorbody(DAPparsestate*, Object, Object, Object, Object);
|
|
extern void dap_unrecognizedresponse(DAPparsestate*);
|
|
|
|
extern void dap_tagparse(DAPparsestate*,int);
|
|
|
|
/* Lexer entry points */
|
|
extern int daplex(YYSTYPE*, DAPparsestate*);
|
|
extern void daplexinit(char* input, DAPlexstate** lexstatep);
|
|
extern void daplexcleanup(DAPlexstate** lexstatep);
|
|
extern void dapsetwordchars(DAPlexstate* lexstate, int kind);
|
|
extern char* dapdecode(DAPlexstate*,char*);
|
|
|
|
extern OCerror DAPparse(OCstate*, struct OCtree*, char*);
|
|
extern char* dimnameanon(char* basename, unsigned int index);
|
|
|
|
#endif /*DAPPARSELEX_H*/
|