2005-12-19 18:02:54 -08:00
|
|
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4; coding: utf-8 -*-
|
|
|
|
*
|
2006-02-24 20:03:13 -08:00
|
|
|
* mooscript-value.h
|
2005-12-19 18:02:54 -08:00
|
|
|
*
|
2006-02-23 06:03:17 -08:00
|
|
|
* Copyright (C) 2004-2006 by Yevgen Muntyan <muntyan@math.tamu.edu>
|
2005-12-19 18:02:54 -08:00
|
|
|
*
|
|
|
|
* 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 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* See COPYING file that comes with this distribution.
|
|
|
|
*/
|
|
|
|
|
2006-02-24 20:03:13 -08:00
|
|
|
#ifndef __MOO_SCRIPT_VALUE_H__
|
|
|
|
#define __MOO_SCRIPT_VALUE_H__
|
2005-12-19 18:02:54 -08:00
|
|
|
|
|
|
|
#include <glib-object.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
|
2006-02-24 20:39:12 -08:00
|
|
|
typedef struct _MSValue MSValue;
|
2006-03-07 22:00:49 -08:00
|
|
|
typedef struct _MSFunc MSFunc;
|
|
|
|
typedef struct _MSContext MSContext;
|
|
|
|
|
2005-12-19 18:02:54 -08:00
|
|
|
|
|
|
|
typedef enum {
|
2006-02-24 20:39:12 -08:00
|
|
|
MS_VALUE_NONE,
|
|
|
|
MS_VALUE_INT,
|
|
|
|
MS_VALUE_STRING,
|
|
|
|
MS_VALUE_GVALUE,
|
2006-03-07 19:02:01 -08:00
|
|
|
MS_VALUE_LIST,
|
2006-03-07 22:00:49 -08:00
|
|
|
MS_VALUE_DICT,
|
|
|
|
MS_VALUE_FUNC
|
2006-02-24 20:39:12 -08:00
|
|
|
} MSValueType;
|
2005-12-19 18:02:54 -08:00
|
|
|
|
|
|
|
typedef enum {
|
2006-02-24 20:39:12 -08:00
|
|
|
MS_OP_PLUS,
|
|
|
|
MS_OP_MINUS,
|
|
|
|
MS_OP_MULT,
|
|
|
|
MS_OP_DIV,
|
|
|
|
MS_OP_AND,
|
|
|
|
MS_OP_OR,
|
|
|
|
MS_OP_EQ,
|
|
|
|
MS_OP_NEQ,
|
|
|
|
MS_OP_LT,
|
|
|
|
MS_OP_GT,
|
|
|
|
MS_OP_LE,
|
|
|
|
MS_OP_GE,
|
|
|
|
MS_OP_FORMAT,
|
2006-02-26 22:38:47 -08:00
|
|
|
MS_BINARY_OP_LAST
|
2006-02-24 20:39:12 -08:00
|
|
|
} MSBinaryOp;
|
2005-12-19 18:02:54 -08:00
|
|
|
|
|
|
|
typedef enum {
|
2006-02-24 20:39:12 -08:00
|
|
|
MS_OP_UMINUS,
|
|
|
|
MS_OP_NOT,
|
|
|
|
MS_OP_LEN,
|
2006-02-26 22:38:47 -08:00
|
|
|
MS_UNARY_OP_LAST
|
2006-02-24 20:39:12 -08:00
|
|
|
} MSUnaryOp;
|
2005-12-19 18:02:54 -08:00
|
|
|
|
2006-02-24 20:39:12 -08:00
|
|
|
struct _MSValue {
|
2005-12-19 18:02:54 -08:00
|
|
|
guint ref_count;
|
2006-02-24 20:39:12 -08:00
|
|
|
MSValueType type;
|
2006-03-07 22:00:49 -08:00
|
|
|
|
2005-12-19 18:02:54 -08:00
|
|
|
union {
|
|
|
|
int ival;
|
|
|
|
char *str;
|
|
|
|
GValue *gval;
|
2006-03-07 22:00:49 -08:00
|
|
|
GHashTable *hash;
|
|
|
|
|
2005-12-19 18:02:54 -08:00
|
|
|
struct {
|
2006-02-24 20:39:12 -08:00
|
|
|
MSValue **elms;
|
2005-12-19 18:02:54 -08:00
|
|
|
guint n_elms;
|
|
|
|
} list;
|
2006-03-07 22:00:49 -08:00
|
|
|
|
|
|
|
struct {
|
|
|
|
MSFunc *func;
|
|
|
|
MSValue *obj;
|
|
|
|
guint meth : 1;
|
|
|
|
} func;
|
2005-12-19 18:02:54 -08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-02-24 20:39:12 -08:00
|
|
|
const char *ms_binary_op_name (MSBinaryOp op);
|
|
|
|
gpointer ms_binary_op_cfunc (MSBinaryOp op);
|
|
|
|
const char *ms_unary_op_name (MSUnaryOp op);
|
|
|
|
gpointer ms_unary_op_cfunc (MSUnaryOp op);
|
2005-12-19 18:02:54 -08:00
|
|
|
|
2006-02-24 20:39:12 -08:00
|
|
|
MSValue *ms_value_none (void);
|
|
|
|
MSValue *ms_value_false (void);
|
|
|
|
MSValue *ms_value_true (void);
|
|
|
|
MSValue *ms_value_bool (gboolean val);
|
2005-12-19 18:02:54 -08:00
|
|
|
|
2006-03-03 17:27:56 -08:00
|
|
|
gboolean ms_value_is_none (MSValue *value);
|
|
|
|
|
2006-02-24 20:39:12 -08:00
|
|
|
MSValue *ms_value_int (int val);
|
|
|
|
MSValue *ms_value_string (const char *string);
|
2006-03-07 14:41:03 -08:00
|
|
|
MSValue *ms_value_string_len (const char *string,
|
|
|
|
int len);
|
2006-02-24 20:39:12 -08:00
|
|
|
MSValue *ms_value_take_string (char *string);
|
2006-03-07 22:00:49 -08:00
|
|
|
MSValue *ms_value_gvalue (const GValue *gval);
|
2005-12-19 18:02:54 -08:00
|
|
|
|
2006-02-24 20:39:12 -08:00
|
|
|
MSValue *ms_value_list (guint n_elms);
|
|
|
|
void ms_value_list_set_elm (MSValue *list,
|
2005-12-19 18:02:54 -08:00
|
|
|
guint index,
|
2006-02-24 20:39:12 -08:00
|
|
|
MSValue *elm);
|
2005-12-19 18:02:54 -08:00
|
|
|
|
2006-03-07 19:02:01 -08:00
|
|
|
MSValue *ms_value_dict (void);
|
|
|
|
void ms_value_dict_set_elm (MSValue *dict,
|
|
|
|
const char *key,
|
|
|
|
MSValue *val);
|
|
|
|
MSValue *ms_value_dict_get_elm (MSValue *dict,
|
|
|
|
const char *key);
|
|
|
|
|
2006-02-24 20:39:12 -08:00
|
|
|
MSValue *ms_value_ref (MSValue *val);
|
|
|
|
void ms_value_unref (MSValue *val);
|
2005-12-19 18:02:54 -08:00
|
|
|
|
2006-02-24 20:39:12 -08:00
|
|
|
gboolean ms_value_get_bool (MSValue *val);
|
|
|
|
gboolean ms_value_get_int (MSValue *val,
|
2005-12-19 18:02:54 -08:00
|
|
|
int *ival);
|
2006-02-24 20:39:12 -08:00
|
|
|
char *ms_value_print (MSValue *val);
|
2005-12-19 18:02:54 -08:00
|
|
|
|
2006-02-24 20:39:12 -08:00
|
|
|
gboolean ms_value_equal (MSValue *a,
|
|
|
|
MSValue *b);
|
|
|
|
int ms_value_cmp (MSValue *a,
|
|
|
|
MSValue *b);
|
2005-12-19 18:02:54 -08:00
|
|
|
|
2006-03-07 22:00:49 -08:00
|
|
|
MSValue *ms_value_func (MSFunc *func);
|
|
|
|
MSValue *ms_value_meth (MSFunc *func);
|
|
|
|
MSValue *ms_value_bound_meth (MSFunc *func,
|
|
|
|
MSValue *obj);
|
|
|
|
gboolean ms_value_is_func (MSValue *val);
|
|
|
|
MSValue *ms_value_call (MSValue *func,
|
|
|
|
MSValue **args,
|
|
|
|
guint n_args,
|
|
|
|
MSContext *ctx);
|
|
|
|
|
2005-12-19 18:02:54 -08:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
2006-02-24 20:03:13 -08:00
|
|
|
#endif /* __MOO_SCRIPT_VALUE_H__ */
|