Sha256: b65b5a720dc582eda268427955922847ac230d6aa86a29e3c83c250c6cf5ece3

Contents?: true

Size: 1.78 KB

Versions: 37

Compression:

Stored size: 1.78 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.

#include "err.h"

#include <stdarg.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

37 entries across 37 versions & 2 rubygems

Version Path
devcycle-ruby-server-sdk-2.0.0 vendor/bundle/ruby/3.0.0/gems/oj-3.13.2/ext/oj/err.c
oj-3.14.2 ext/oj/err.c
oj-3.14.1 ext/oj/err.c
oj-3.14.0 ext/oj/err.c
oj-3.13.23 ext/oj/err.c
oj-3.13.22 ext/oj/err.c
oj-3.13.21 ext/oj/err.c
oj-3.13.20 ext/oj/err.c
oj-3.13.19 ext/oj/err.c
oj-3.13.18 ext/oj/err.c
oj-3.13.17 ext/oj/err.c
oj-3.13.16 ext/oj/err.c
oj-3.13.15 ext/oj/err.c
oj-3.13.14 ext/oj/err.c
oj-3.13.13 ext/oj/err.c
oj-3.13.12 ext/oj/err.c
oj-3.13.11 ext/oj/err.c
oj-3.13.10 ext/oj/err.c
oj-3.13.9 ext/oj/err.c
oj-3.13.8 ext/oj/err.c