Sha256: 73d4c83fdb28d48bcfea11dca8ce0f5a5d0cc2e1b2936fe5aac1c33c5bd2f900

Contents?: true

Size: 1.27 KB

Versions: 15

Compression:

Stored size: 1.27 KB

Contents

// Copyright (c) 2011 Peter Ohler. All rights reserved.
// Licensed under the MIT License. See LICENSE file in the project root for license details.

#ifndef OJ_ODD_H
#define OJ_ODD_H

#include <stdbool.h>

#include "ruby.h"

#define MAX_ODD_ARGS 10

typedef VALUE (*AttrGetFunc)(VALUE obj);

typedef struct _odd {
    struct _odd *next;
    const char * classname;
    size_t       clen;
    VALUE        clas;  // Ruby class or module
    VALUE        create_obj;
    ID           create_op;
    int          attr_cnt;
    bool         is_module;
    bool         raw;
    const char * attr_names[MAX_ODD_ARGS];  // NULL terminated attr names
    ID           attrs[MAX_ODD_ARGS];       // 0 terminated attr IDs
    AttrGetFunc  attrFuncs[MAX_ODD_ARGS];
} * Odd;

typedef struct _oddArgs {
    Odd   odd;
    VALUE args[MAX_ODD_ARGS];
} * OddArgs;

extern void    oj_odd_init(void);
extern Odd     oj_get_odd(VALUE clas);
extern Odd     oj_get_oddc(const char *classname, size_t len);
extern OddArgs oj_odd_alloc_args(Odd odd);
extern void    oj_odd_free(OddArgs args);
extern int     oj_odd_set_arg(OddArgs args, const char *key, size_t klen, VALUE value);
extern void    oj_reg_odd(VALUE clas, VALUE create_object, VALUE create_method, int mcnt, VALUE *members, bool raw);

#endif /* OJ_ODD_H */

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
oj-3.14.2 ext/oj/odd.h
oj-3.14.1 ext/oj/odd.h
oj-3.14.0 ext/oj/odd.h
oj-3.13.23 ext/oj/odd.h
oj-3.13.22 ext/oj/odd.h
oj-3.13.21 ext/oj/odd.h
oj-3.13.20 ext/oj/odd.h
oj-3.13.19 ext/oj/odd.h
oj-3.13.18 ext/oj/odd.h
oj-3.13.17 ext/oj/odd.h
oj-3.13.16 ext/oj/odd.h
oj-3.13.15 ext/oj/odd.h
oj-3.13.14 ext/oj/odd.h
oj-3.13.13 ext/oj/odd.h
oj-3.13.12 ext/oj/odd.h