/* Copyright 2009, UCAR/Unidata and OPeNDAP, Inc. See the COPYRIGHT file for more information. */ #ifndef CONSTRAINTS_H #define CONSTRAINTS_H 1 /*! Specifies an OCslice. */ typedef struct OCslice { size_t first; size_t count; size_t stride; size_t stop; /* == first + count */ size_t declsize; /* from defining dimension, if any.*/ } OCslice; /*! Specifies a form of path where each element can have a set of associated indices */ typedef struct OCpath { OClist* names; OClist* indexsets; /* oclist> */ } OCpath; /*! Specifies a ProjectionClause. */ typedef struct OCprojectionclause { char* target; /* "variable name" as mentioned in the projection */ OClist* indexsets; /* oclist> */ struct OCnode* node; /* node with name matching target, if any. */ int gridconstraint; /* used only for testing purposes */ } OCprojectionclause; /*! Selection is the node type for selection expression trees */ typedef struct OCselectionclause { int op; char* value; struct OCselectionclause* lhs; OClist* rhs; } OCselectionclause; #endif /*CONSTRAINTS_H*/