dyntype.h 2.32 KB
/**
 * dyntype.h: structur to hold values of different type and retrieve them again
 * Copyright (C) 2011  Georg Hopp
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
#ifndef __DYNTYPE_H__

#ifndef __DYNTYPE_HASH_H__
#include "token/dyntype/hash.h"
#endif//__DYNTYPE_HASH_H__

#define __DYNTYPE_H__

#include <sys/types.h>
#include "token/cclass.h"

enum DYNTYPE_TYPES {
    DYNTYPE_TYPE_NULL = 0,
    DYNTYPE_TYPE_BOOLEAN,
    DYNTYPE_TYPE_INT,
    DYNTYPE_TYPE_FLOAT,
    DYNTYPE_TYPE_STRING,
    DYNTYPE_TYPE_ARRAY,
    DYNTYPE_TYPE_HASH
};


CLASS(DYNTYPE) {
    const _CCLASS const class;
    enum DYNTYPE_TYPES type;
    union _data {
        unsigned char _boolean;
        int _int;
        double _double;
        char * _string;
        struct _DYNTYPE ** _array;
        DYNTYPE_HASH _hash;
    } data;
};

#include "token/dyntype/hash.h"

#define dyntype_newBoolean(value)   new(DYNTYPE, DYNTYPE_TYPE_BOOLEAN, value)
#define dyntype_newInt(value)       new(DYNTYPE, DYNTYPE_TYPE_INT, value)
#define dyntype_newDouble(value)    new(DYNTYPE, DYNTYPE_TYPE_DOUBLE, value)
#define dyntype_newString(value)    new(DYNTYPE, DYNTYPE_TYPE_STRING, value)
#define dyntype_newArray(value)     new(DYNTYPE, DYNTYPE_TYPE_ARRAY, value)
#define dyntype_newHash(value)      new(DYNTYPE, DYNTYPE_TYPE_HASH, value)

enum DYNTYPE_TYPES dyntype_getType(DYNTYPE _this);
size_t             dyntype_getSize(DYNTYPE _this);
unsigned char      dyntype_getBoolean(DYNTYPE _this);
int                dyntype_getInt(DYNTYPE _this);
double             dyntype_getDouble(DYNTYPE _this);
char *             dyntype_getString(DYNTYPE _this);
DYNTYPE *          dyntype_getArray(DYNTYPE _this);
DYNTYPE_HASH       dyntype_getHash(DYNTYPE _this);

#endif//__DYNTYPE_H__

// vim: set et ts=4 sw=4: