Sha256: 01bac5573f2fe14713c6e965d5d1e9de33167c2662206c2bc0148950dcf4beb3

Contents?: true

Size: 1.07 KB

Versions: 13

Compression:

Stored size: 1.07 KB

Contents

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

#ifndef OJ_CODE_H
#define OJ_CODE_H

#include <ruby.h>

#include "oj.h"

typedef void (*EncodeFunc)(VALUE obj, int depth, Out out);
typedef VALUE (*DecodeFunc)(VALUE clas, VALUE args);

typedef struct _code {
    const char *name;
    VALUE       clas;
    EncodeFunc  encode;
    DecodeFunc  decode;
    bool        active;  // For compat mode.
} *Code;

// Used by encode functions.
typedef struct _attr {
    const char *name;
    int         len;
    VALUE       value;
    long        num;
    VALUE       time;
} *Attr;

extern bool  oj_code_dump(Code codes, VALUE obj, int depth, Out out);
extern VALUE oj_code_load(Code codes, VALUE clas, VALUE args);
extern void  oj_code_set_active(Code codes, VALUE clas, bool active);
extern bool  oj_code_has(Code codes, VALUE clas, bool encode);

extern void oj_code_attrs(VALUE obj, Attr attrs, int depth, Out out, bool with_class);

extern struct _code oj_compat_codes[];

#endif /* OJ_CODE_H */

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
oj-3.16.9 ext/oj/code.h
oj-3.16.8 ext/oj/code.h
oj-3.16.7 ext/oj/code.h
oj-3.16.6 ext/oj/code.h
oj-3.16.5 ext/oj/code.h
oj-3.16.4 ext/oj/code.h
oj-3.16.3 ext/oj/code.h
oj-3.16.2 ext/oj/code.h
oj-3.16.1 ext/oj/code.h
oj-3.16.0 ext/oj/code.h
oj-3.15.1 ext/oj/code.h
oj-3.15.0 ext/oj/code.h
oj-3.14.3 ext/oj/code.h