Blame Byte.h

Packit a4aae4
Packit a4aae4
// -*- mode: c++; c-basic-offset:4 -*-
Packit a4aae4
Packit a4aae4
// This file is part of libdap, A C++ implementation of the OPeNDAP Data
Packit a4aae4
// Access Protocol.
Packit a4aae4
Packit a4aae4
// Copyright (c) 2002,2003 OPeNDAP, Inc.
Packit a4aae4
// Author: James Gallagher <jgallagher@opendap.org>
Packit a4aae4
//
Packit a4aae4
// This library is free software; you can redistribute it and/or
Packit a4aae4
// modify it under the terms of the GNU Lesser General Public
Packit a4aae4
// License as published by the Free Software Foundation; either
Packit a4aae4
// version 2.1 of the License, or (at your option) any later version.
Packit a4aae4
//
Packit a4aae4
// This library is distributed in the hope that it will be useful,
Packit a4aae4
// but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit a4aae4
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit a4aae4
// Lesser General Public License for more details.
Packit a4aae4
//
Packit a4aae4
// You should have received a copy of the GNU Lesser General Public
Packit a4aae4
// License along with this library; if not, write to the Free Software
Packit a4aae4
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
Packit a4aae4
//
Packit a4aae4
// You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.
Packit a4aae4
Packit a4aae4
// (c) COPYRIGHT URI/MIT 1994-1999
Packit a4aae4
// Please read the full copyright statement in the file COPYRIGHT_URI.
Packit a4aae4
//
Packit a4aae4
// Authors:
Packit a4aae4
//      jhrg,jimg       James Gallagher <jgallagher@gso.uri.edu>
Packit a4aae4
Packit a4aae4
// Interface for Byte type.
Packit a4aae4
//
Packit a4aae4
// jhrg 9/7/94
Packit a4aae4
Packit a4aae4
#ifndef _byte_h
Packit a4aae4
#define _byte_h 1
Packit a4aae4
Packit a4aae4
#ifndef _dods_datatypes_h
Packit a4aae4
#include "dods-datatypes.h"
Packit a4aae4
#endif
Packit a4aae4
Packit a4aae4
#ifndef _basetype_h
Packit a4aae4
#include "BaseType.h"
Packit a4aae4
#endif
Packit a4aae4
Packit a4aae4
#ifndef constraint_evaluator_h
Packit a4aae4
#include "ConstraintEvaluator.h"
Packit a4aae4
#endif
Packit a4aae4
Packit a4aae4
namespace libdap
Packit a4aae4
{
Packit a4aae4
Packit a4aae4
/** This class is used to hold eight bits of information.  No sign
Packit a4aae4
    information is implied in its value.
Packit a4aae4
Packit a4aae4
    @brief Holds a single byte.
Packit a4aae4
    @see BaseType
Packit a4aae4
    */
Packit a4aae4
class Byte: public BaseType
Packit a4aae4
{
Packit a4aae4
protected:
Packit a4aae4
    dods_byte d_buf;
Packit a4aae4
Packit a4aae4
public:
Packit a4aae4
    Byte(const string &n);
Packit a4aae4
    Byte(const string &n, const string &d);
Packit a4aae4
Packit a4aae4
    virtual ~Byte()
Packit a4aae4
    {}
Packit a4aae4
Packit a4aae4
    Byte(const Byte &copy_from);
Packit a4aae4
Packit a4aae4
    Byte &operator=(const Byte &rhs;;
Packit a4aae4
Packit a4aae4
    virtual unsigned int width(bool constrained = false) const;
Packit a4aae4
Packit a4aae4
    virtual BaseType *ptr_duplicate();
Packit a4aae4
Packit a4aae4
    // DAP2
Packit a4aae4
    virtual bool serialize(ConstraintEvaluator &eval, DDS &dds, Marshaller &m, bool ce_eval);
Packit a4aae4
    virtual bool deserialize(UnMarshaller &um, DDS *, bool);
Packit a4aae4
Packit a4aae4
    // DAP4
Packit a4aae4
    virtual void compute_checksum(Crc32 &checksum);
Packit a4aae4
    virtual void serialize(D4StreamMarshaller &m, DMR &dmr, bool filter = false);
Packit a4aae4
    virtual void deserialize(D4StreamUnMarshaller &um, DMR &dmr);
Packit a4aae4
Packit a4aae4
    virtual unsigned int val2buf(void *val, bool reuse = false);
Packit a4aae4
    virtual unsigned int buf2val(void **val);
Packit a4aae4
Packit a4aae4
    virtual bool set_value(const dods_byte value);
Packit a4aae4
    virtual dods_byte value() const;
Packit a4aae4
Packit a4aae4
    virtual void print_val(FILE *out, string space = "", bool print_decl_p = true);
Packit a4aae4
    virtual void print_val(ostream &out, string space = "", bool print_decl_p = true);
Packit a4aae4
Packit a4aae4
    virtual bool ops(BaseType *b, int op);
Packit a4aae4
    virtual bool d4_ops(BaseType *b, int op);
Packit a4aae4
    virtual std::vector<BaseType *> *transform_to_dap2(AttrTable *parent_attr_table);
Packit a4aae4
Packit a4aae4
    virtual void dump(ostream &strm) const ;
Packit a4aae4
};
Packit a4aae4
Packit a4aae4
} // namespace libdap
Packit a4aae4
Packit a4aae4
#endif // _byte_h
Packit a4aae4