2013-06-06 14:01:32 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2013, Timothy Stack
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
* * Neither the name of Timothy Stack nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND ANY
|
|
|
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
|
|
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
|
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* @file sqlite-extension-func.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _sqlite_extension_func_h
|
|
|
|
#define _sqlite_extension_func_h
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <sqlite3.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct FuncDef {
|
|
|
|
const char *zName;
|
|
|
|
signed char nArg;
|
|
|
|
uint8_t argType; /* 0: none. 1: db 2: (-1) */
|
|
|
|
uint8_t eTextRep; /* 1: UTF-16. 0: UTF-8 */
|
|
|
|
uint8_t needCollSeq;
|
|
|
|
void (*xFunc)(sqlite3_context*,int,sqlite3_value **);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct FuncDefAgg {
|
|
|
|
const char *zName;
|
|
|
|
signed char nArg;
|
|
|
|
uint8_t argType;
|
|
|
|
uint8_t needCollSeq;
|
|
|
|
void (*xStep)(sqlite3_context*,int,sqlite3_value**);
|
|
|
|
void (*xFinalize)(sqlite3_context*);
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef int (*sqlite_registration_func_t)(const struct FuncDef **basic_funcs,
|
|
|
|
const struct FuncDefAgg **agg_funcs);
|
|
|
|
|
|
|
|
int common_extension_functions(const struct FuncDef **basic_funcs,
|
|
|
|
const struct FuncDefAgg **agg_funcs);
|
|
|
|
|
2013-06-22 17:01:13 +00:00
|
|
|
int state_extension_functions(const struct FuncDef **basic_funcs,
|
|
|
|
const struct FuncDefAgg **agg_funcs);
|
2013-06-22 14:55:49 +00:00
|
|
|
|
2013-06-08 13:10:18 +00:00
|
|
|
int string_extension_functions(const struct FuncDef **basic_funcs,
|
|
|
|
const struct FuncDefAgg **agg_funcs);
|
|
|
|
|
2013-06-06 14:01:32 +00:00
|
|
|
int network_extension_functions(const struct FuncDef **basic_funcs,
|
|
|
|
const struct FuncDefAgg **agg_funcs);
|
|
|
|
|
|
|
|
int fs_extension_functions(const struct FuncDef **basic_funcs,
|
|
|
|
const struct FuncDefAgg **agg_funcs);
|
|
|
|
|
2014-05-05 13:44:58 +00:00
|
|
|
int json_extension_functions(const struct FuncDef **basic_funcs,
|
|
|
|
const struct FuncDefAgg **agg_funcs);
|
|
|
|
|
2013-06-06 14:01:32 +00:00
|
|
|
extern sqlite_registration_func_t sqlite_registration_funcs[];
|
|
|
|
|
|
|
|
int register_sqlite_funcs(sqlite3 *db, sqlite_registration_func_t *reg_funcs);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|