mirror of https://github.com/GOSTSec/sgminer
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
2.5 KiB
94 lines
2.5 KiB
14 years ago
|
/*
|
||
11 years ago
|
* Copyright (c) 2009-2013 Petri Lehtinen <petri@digip.org>
|
||
14 years ago
|
*
|
||
|
* Jansson is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the MIT license. See LICENSE for details.
|
||
|
*/
|
||
|
|
||
|
#ifndef JANSSON_PRIVATE_H
|
||
|
#define JANSSON_PRIVATE_H
|
||
|
|
||
14 years ago
|
#include <stddef.h>
|
||
14 years ago
|
#include "jansson.h"
|
||
|
#include "hashtable.h"
|
||
11 years ago
|
#include "strbuffer.h"
|
||
14 years ago
|
|
||
|
#define container_of(ptr_, type_, member_) \
|
||
14 years ago
|
((type_ *)((char *)ptr_ - offsetof(type_, member_)))
|
||
|
|
||
|
/* On some platforms, max() may already be defined */
|
||
|
#ifndef max
|
||
|
#define max(a, b) ((a) > (b) ? (a) : (b))
|
||
|
#endif
|
||
|
|
||
|
/* va_copy is a C99 feature. In C89 implementations, it's sometimes
|
||
|
available as __va_copy. If not, memcpy() should do the trick. */
|
||
|
#ifndef va_copy
|
||
|
#ifdef __va_copy
|
||
|
#define va_copy __va_copy
|
||
|
#else
|
||
|
#define va_copy(a, b) memcpy(&(a), &(b), sizeof(va_list))
|
||
|
#endif
|
||
|
#endif
|
||
14 years ago
|
|
||
|
typedef struct {
|
||
|
json_t json;
|
||
|
hashtable_t hashtable;
|
||
14 years ago
|
size_t serial;
|
||
14 years ago
|
int visited;
|
||
|
} json_object_t;
|
||
|
|
||
|
typedef struct {
|
||
|
json_t json;
|
||
14 years ago
|
size_t size;
|
||
|
size_t entries;
|
||
14 years ago
|
json_t **table;
|
||
|
int visited;
|
||
|
} json_array_t;
|
||
|
|
||
|
typedef struct {
|
||
|
json_t json;
|
||
|
char *value;
|
||
|
} json_string_t;
|
||
|
|
||
|
typedef struct {
|
||
|
json_t json;
|
||
|
double value;
|
||
|
} json_real_t;
|
||
|
|
||
|
typedef struct {
|
||
|
json_t json;
|
||
14 years ago
|
json_int_t value;
|
||
14 years ago
|
} json_integer_t;
|
||
|
|
||
|
#define json_to_object(json_) container_of(json_, json_object_t, json)
|
||
|
#define json_to_array(json_) container_of(json_, json_array_t, json)
|
||
|
#define json_to_string(json_) container_of(json_, json_string_t, json)
|
||
|
#define json_to_real(json_) container_of(json_, json_real_t, json)
|
||
|
#define json_to_integer(json_) container_of(json_, json_integer_t, json)
|
||
|
|
||
14 years ago
|
void jsonp_error_init(json_error_t *error, const char *source);
|
||
|
void jsonp_error_set_source(json_error_t *error, const char *source);
|
||
|
void jsonp_error_set(json_error_t *error, int line, int column,
|
||
|
size_t position, const char *msg, ...);
|
||
|
void jsonp_error_vset(json_error_t *error, int line, int column,
|
||
|
size_t position, const char *msg, va_list ap);
|
||
|
|
||
11 years ago
|
/* Locale independent string<->double conversions */
|
||
|
int jsonp_strtod(strbuffer_t *strbuffer, double *out);
|
||
|
int jsonp_dtostr(char *buffer, size_t size, double value);
|
||
|
|
||
14 years ago
|
/* Wrappers for custom memory functions */
|
||
|
void* jsonp_malloc(size_t size);
|
||
|
void jsonp_free(void *ptr);
|
||
11 years ago
|
char *jsonp_strndup(const char *str, size_t length);
|
||
14 years ago
|
char *jsonp_strdup(const char *str);
|
||
|
|
||
11 years ago
|
/* Windows compatibility */
|
||
|
#ifdef _WIN32
|
||
|
#define snprintf _snprintf
|
||
|
#define vsnprintf _vsnprintf
|
||
|
#endif
|
||
|
|
||
14 years ago
|
#endif
|