Sha256: e53c8ddf83fdb2d05748ac1c5a238c78490bfa26506159f0f79194d68dc5a532

Contents?: true

Size: 1.24 KB

Versions: 27

Compression:

Stored size: 1.24 KB

Contents

/* err.c
 * Copyright (c) 2011, Peter Ohler
 * All rights reserved.
 */

#include <stdarg.h>

#include "err.h"

void
oj_err_set(Err e, VALUE clas, const char *format, ...) {
    va_list	ap;

    va_start(ap, format);
    e->clas = clas;
    vsnprintf(e->msg, sizeof(e->msg) - 1, format, ap);
    va_end(ap);
}

void
oj_err_raise(Err e) {
    rb_raise(e->clas, "%s", e->msg);
}

void
_oj_err_set_with_location(Err err, VALUE eclas, const char *msg, const char *json, const char *current, const char* file, int line) {
    int	n = 1;
    int	col = 1;

    for (; json < current && '\n' != *current; current--) {
	col++;
    }
    for (; json < current; current--) {
	if ('\n' == *current) {
	    n++;
	}
    }
    oj_err_set(err, eclas, "%s at line %d, column %d [%s:%d]", msg, n, col, file, line);
}

void
_oj_raise_error(const char *msg, const char *json, const char *current, const char* file, int line) {
    struct _err	err;
    int		n = 1;
    int		col = 1;

    for (; json < current && '\n' != *current; current--) {
	col++;
    }
    for (; json < current; current--) {
	if ('\n' == *current) {
	    n++;
	}
    }
    oj_err_set(&err, oj_parse_error_class, "%s at line %d, column %d [%s:%d]", msg, n, col, file, line);
    rb_raise(err.clas, "%s", err.msg);
}

Version data entries

27 entries across 27 versions & 2 rubygems

Version Path
oj-3.10.14 ext/oj/err.c
oj-3.10.13 ext/oj/err.c
oj-3.10.12 ext/oj/err.c
oj-3.10.11 ext/oj/err.c
oj-3.10.10 ext/oj/err.c
oj-3.10.9 ext/oj/err.c
oj-3.10.8 ext/oj/err.c
oj-3.10.7 ext/oj/err.c
oj-3.10.6 ext/oj/err.c
oj-3.10.5 ext/oj/err.c
oj-3.10.3 ext/oj/err.c
oj-3.10.2 ext/oj/err.c
oj-3.10.1 ext/oj/err.c
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/oj-3.10.0/ext/oj/err.c
oj-3.10.0 ext/oj/err.c
oj-3.9.2 ext/oj/err.c
oj-3.9.1 ext/oj/err.c
oj-3.9.0 ext/oj/err.c
oj-3.8.1 ext/oj/err.c
oj-3.8.0 ext/oj/err.c