2013-04-05 22:09:54 +00:00
|
|
|
/*
|
|
|
|
* wterl: an Erlang NIF for WiredTiger
|
|
|
|
*
|
|
|
|
* Copyright (c) 2012-2013 Basho Technologies, Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* This file is provided to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at:
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
|
|
|
*
|
|
|
|
*/
|
2011-12-22 04:46:35 +00:00
|
|
|
#include "erl_nif.h"
|
|
|
|
#include "erl_driver.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2012-02-15 14:59:28 +00:00
|
|
|
#include <string.h>
|
2013-04-11 15:57:41 +00:00
|
|
|
#include <errno.h>
|
2011-12-22 04:46:35 +00:00
|
|
|
|
2013-04-11 15:57:41 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
2013-04-14 12:44:54 +00:00
|
|
|
#define dprint(s, ...) do { \
|
|
|
|
fprintf(stderr, s, ##__VA_ARGS__); \
|
|
|
|
fprintf(stderr, "\r\n"); \
|
|
|
|
fflush(stderr); \
|
|
|
|
} while(0);
|
2013-04-11 15:57:41 +00:00
|
|
|
#else
|
2013-04-14 12:44:54 +00:00
|
|
|
# define dprint(s, ...) {}
|
2013-04-11 15:57:41 +00:00
|
|
|
#endif
|
|
|
|
|
2013-05-28 20:14:19 +00:00
|
|
|
#ifndef UNUSED
|
|
|
|
#define UNUSED(v) ((void)(v))
|
2013-04-22 13:52:21 +00:00
|
|
|
#endif
|
|
|
|
|
2013-04-17 15:17:13 +00:00
|
|
|
#include "wiredtiger.h"
|
|
|
|
#include "async_nif.h"
|
|
|
|
#include "khash.h"
|
|
|
|
|
|
|
|
#ifdef WTERL_STATS
|
|
|
|
#include "stats.h"
|
|
|
|
#endif
|
|
|
|
|
2013-05-28 20:14:19 +00:00
|
|
|
#if (ASYNC_NIF_MAX_WORKERS > 32768)
|
|
|
|
#error "WterlCtx cache won't work properly with > 32,768 workers."
|
|
|
|
#endif
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
static ErlNifResourceType *wterl_conn_RESOURCE;
|
|
|
|
static ErlNifResourceType *wterl_cursor_RESOURCE;
|
|
|
|
|
2013-05-28 20:14:19 +00:00
|
|
|
/* Generators for named, type-specific hash table functions. */
|
|
|
|
KHASH_MAP_INIT_STR(uri, unsigned int); // URI -> number of cursors(URI)
|
|
|
|
|
|
|
|
union {
|
|
|
|
unsigned int hash[];
|
|
|
|
struct {
|
|
|
|
unsigned int:02 nest; // cuckoo's nest choosen on hash collision
|
|
|
|
unsigned int:15 off; // bitpop((bmp & (1 << off) - 1) & bmp)
|
|
|
|
unsigned int:10 depth;
|
|
|
|
} nests;
|
|
|
|
} cuckoo;
|
|
|
|
|
2013-04-06 15:05:41 +00:00
|
|
|
|
2012-04-02 20:59:13 +00:00
|
|
|
typedef struct {
|
2013-04-05 22:09:54 +00:00
|
|
|
WT_SESSION *session;
|
2013-05-28 20:14:19 +00:00
|
|
|
WT_CURSOR *cursor;
|
2013-04-05 22:09:54 +00:00
|
|
|
} WterlCtx;
|
2011-12-22 04:46:35 +00:00
|
|
|
|
2012-04-02 20:59:13 +00:00
|
|
|
typedef struct {
|
2013-04-05 22:09:54 +00:00
|
|
|
WT_CONNECTION *conn;
|
|
|
|
const char *session_config;
|
2013-04-15 04:08:01 +00:00
|
|
|
ErlNifMutex *contexts_mutex;
|
2013-05-28 20:14:19 +00:00
|
|
|
unsigned int num_contexts;
|
|
|
|
WterlCtx **contexts; // TODO: free this
|
2013-04-05 22:09:54 +00:00
|
|
|
} WterlConnHandle;
|
2011-12-22 04:46:35 +00:00
|
|
|
|
2012-04-02 20:59:13 +00:00
|
|
|
typedef struct {
|
2013-04-05 22:09:54 +00:00
|
|
|
WT_CURSOR *cursor;
|
|
|
|
WT_SESSION *session;
|
2012-04-02 20:59:13 +00:00
|
|
|
} WterlCursorHandle;
|
2012-02-16 18:22:03 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/* WiredTiger object names*/
|
|
|
|
typedef char Uri[128];
|
2012-02-08 22:31:16 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/* Atoms (initialized in on_load) */
|
2011-12-22 04:46:35 +00:00
|
|
|
static ERL_NIF_TERM ATOM_ERROR;
|
2012-02-08 22:31:16 +00:00
|
|
|
static ERL_NIF_TERM ATOM_OK;
|
2013-04-05 22:09:54 +00:00
|
|
|
static ERL_NIF_TERM ATOM_NOT_FOUND;
|
2013-04-11 15:57:41 +00:00
|
|
|
static ERL_NIF_TERM ATOM_FIRST;
|
|
|
|
static ERL_NIF_TERM ATOM_LAST;
|
2013-04-22 13:52:21 +00:00
|
|
|
static ERL_NIF_TERM ATOM_MESSAGE;
|
|
|
|
static ERL_NIF_TERM ATOM_PROGRESS;
|
|
|
|
static ERL_NIF_TERM ATOM_WTERL_VSN;
|
|
|
|
static ERL_NIF_TERM ATOM_WIREDTIGER_VSN;
|
|
|
|
static ERL_NIF_TERM ATOM_MSG_PID;
|
|
|
|
|
|
|
|
struct wterl_event_handlers {
|
2013-04-22 21:45:48 +00:00
|
|
|
WT_EVENT_HANDLER handlers;
|
|
|
|
ErlNifEnv *msg_env_error;
|
|
|
|
ErlNifMutex *error_mutex;
|
|
|
|
ErlNifEnv *msg_env_message;
|
|
|
|
ErlNifMutex *message_mutex;
|
|
|
|
ErlNifEnv *msg_env_progress;
|
|
|
|
ErlNifMutex *progress_mutex;
|
|
|
|
ErlNifPid to_pid;
|
2013-04-22 13:52:21 +00:00
|
|
|
};
|
2013-04-05 22:09:54 +00:00
|
|
|
|
2013-04-18 14:32:29 +00:00
|
|
|
/* Generators for 'conns' a named, type-specific hash table functions. */
|
|
|
|
KHASH_MAP_INIT_PTR(conns, WterlConnHandle*);
|
|
|
|
|
|
|
|
struct wterl_priv_data {
|
|
|
|
void *async_nif_priv; // Note: must be first element in struct
|
|
|
|
ErlNifMutex *conns_mutex;
|
|
|
|
khash_t(conns) *conns;
|
2013-04-22 13:52:21 +00:00
|
|
|
struct wterl_event_handlers eh;
|
|
|
|
char wterl_vsn[512];
|
|
|
|
char wiredtiger_vsn[512];
|
2013-04-18 14:32:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Global init for async_nif. */
|
2013-04-12 19:25:56 +00:00
|
|
|
ASYNC_NIF_INIT(wterl);
|
|
|
|
|
2013-04-18 14:32:29 +00:00
|
|
|
|
2013-04-22 13:52:21 +00:00
|
|
|
/**
|
|
|
|
* Callback to handle error messages.
|
|
|
|
*
|
|
|
|
* Deliver error messages into Erlang to be logged via loger:error()
|
|
|
|
* or on failure, write message to stderr.
|
|
|
|
*
|
|
|
|
* error a WiredTiger, C99 or POSIX error code, which can
|
|
|
|
* be converted to a string using wiredtiger_strerror()
|
|
|
|
* message an error string
|
|
|
|
* -> 0 on success, a non-zero return may cause the WiredTiger
|
|
|
|
* function posting the event to fail, and may even cause
|
|
|
|
* operation or library failure.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
__wterl_error_handler(WT_EVENT_HANDLER *handler, int error, const char *message)
|
|
|
|
{
|
|
|
|
struct wterl_event_handlers *eh = (struct wterl_event_handlers *)handler;
|
2013-04-22 21:45:48 +00:00
|
|
|
ErlNifEnv *msg_env;
|
|
|
|
ErlNifPid *to_pid;
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
enif_mutex_lock(eh->error_mutex);
|
|
|
|
msg_env = eh->msg_env_error;
|
|
|
|
to_pid = &eh->to_pid;
|
|
|
|
if (msg_env) {
|
2013-04-22 13:52:21 +00:00
|
|
|
ERL_NIF_TERM msg =
|
|
|
|
enif_make_tuple2(msg_env, ATOM_ERROR,
|
|
|
|
enif_make_tuple2(msg_env,
|
|
|
|
enif_make_atom(msg_env, erl_errno_id(error)),
|
|
|
|
enif_make_string(msg_env, message, ERL_NIF_LATIN1)));
|
|
|
|
enif_clear_env(msg_env);
|
|
|
|
if (!enif_send(NULL, to_pid, msg_env, msg))
|
|
|
|
fprintf(stderr, "[%d] %s\n", error, message);
|
|
|
|
} else {
|
2013-04-22 21:45:48 +00:00
|
|
|
rc = (fprintf(stderr, "[%d] %s\n", error, message) >= 0 ? 0 : EIO);
|
2013-04-22 13:52:21 +00:00
|
|
|
}
|
2013-04-22 21:45:48 +00:00
|
|
|
enif_mutex_unlock(eh->error_mutex);
|
|
|
|
return rc;
|
2013-04-22 13:52:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback to handle informational messages.
|
|
|
|
*
|
|
|
|
* Deliver informational messages into Erlang to be logged via loger:info()
|
|
|
|
* or on failure, write message to stdout.
|
|
|
|
*
|
|
|
|
* message an informational string
|
|
|
|
* -> 0 on success, a non-zero return may cause the WiredTiger
|
|
|
|
* function posting the event to fail, and may even cause
|
|
|
|
* operation or library failure.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
__wterl_message_handler(WT_EVENT_HANDLER *handler, const char *message)
|
|
|
|
{
|
|
|
|
struct wterl_event_handlers *eh = (struct wterl_event_handlers *)handler;
|
2013-04-22 21:45:48 +00:00
|
|
|
ErlNifEnv *msg_env;
|
|
|
|
ErlNifPid *to_pid;
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
enif_mutex_lock(eh->message_mutex);
|
|
|
|
msg_env = eh->msg_env_message;
|
|
|
|
to_pid = &eh->to_pid;
|
|
|
|
if (msg_env) {
|
2013-04-22 13:52:21 +00:00
|
|
|
ERL_NIF_TERM msg =
|
|
|
|
enif_make_tuple2(msg_env, ATOM_MESSAGE,
|
|
|
|
enif_make_string(msg_env, message, ERL_NIF_LATIN1));
|
|
|
|
enif_clear_env(msg_env);
|
|
|
|
if (!enif_send(NULL, to_pid, msg_env, msg))
|
|
|
|
fprintf(stderr, "%s\n", message);
|
|
|
|
} else {
|
2013-04-22 21:45:48 +00:00
|
|
|
rc = (printf("%s\n", message) >= 0 ? 0 : EIO);
|
2013-04-22 13:52:21 +00:00
|
|
|
}
|
2013-04-22 21:45:48 +00:00
|
|
|
enif_mutex_unlock(eh->message_mutex);
|
|
|
|
return rc;
|
2013-04-22 13:52:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback to handle progress messages.
|
|
|
|
*
|
|
|
|
* Deliver progress messages into Erlang to be logged via loger:info()
|
|
|
|
* or on failure, written message to stdout.
|
|
|
|
*
|
|
|
|
* operation a string representation of the operation
|
|
|
|
* counter a progress counter [0..100]
|
|
|
|
* -> 0 on success, a non-zero return may cause the WiredTiger
|
|
|
|
* function posting the event to fail, and may even cause
|
|
|
|
* operation or library failure.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
__wterl_progress_handler(WT_EVENT_HANDLER *handler, const char *operation, uint64_t counter)
|
|
|
|
{
|
|
|
|
struct wterl_event_handlers *eh = (struct wterl_event_handlers *)handler;
|
2013-04-22 21:45:48 +00:00
|
|
|
ErlNifEnv *msg_env;
|
|
|
|
ErlNifPid *to_pid;
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
enif_mutex_lock(eh->progress_mutex);
|
|
|
|
msg_env = eh->msg_env_progress;
|
|
|
|
to_pid = &eh->to_pid;
|
|
|
|
if (msg_env) {
|
2013-04-22 13:52:21 +00:00
|
|
|
ERL_NIF_TERM msg =
|
|
|
|
enif_make_tuple2(msg_env, ATOM_PROGRESS,
|
|
|
|
enif_make_tuple2(msg_env,
|
|
|
|
enif_make_string(msg_env, operation, ERL_NIF_LATIN1),
|
|
|
|
enif_make_int64(msg_env, counter)));
|
|
|
|
enif_clear_env(msg_env);
|
|
|
|
if (!enif_send(NULL, to_pid, msg_env, msg))
|
|
|
|
fprintf(stderr, "[%ld] %s\n", counter, operation);
|
|
|
|
} else {
|
2013-04-22 21:45:48 +00:00
|
|
|
rc = (printf("[%ld] %s\n", counter, operation) >= 0 ? 0 : EIO);
|
2013-04-22 13:52:21 +00:00
|
|
|
}
|
2013-04-22 21:45:48 +00:00
|
|
|
enif_mutex_unlock(eh->progress_mutex);
|
|
|
|
return rc;
|
2013-04-22 13:52:21 +00:00
|
|
|
}
|
|
|
|
|
2013-04-18 16:24:49 +00:00
|
|
|
/**
|
2013-04-20 10:13:41 +00:00
|
|
|
* Open a WT_SESSION for the thread context 'ctx' to use, also init the
|
|
|
|
* shared cursor hash table.
|
2013-04-18 16:24:49 +00:00
|
|
|
*
|
2013-04-20 10:13:41 +00:00
|
|
|
* Note: always call within enif_mutex_lock/unlock(conn_handle->contexts_mutex)
|
2013-04-18 16:24:49 +00:00
|
|
|
*/
|
|
|
|
static int
|
2013-04-18 17:36:24 +00:00
|
|
|
__init_session_and_cursor_cache(WterlConnHandle *conn_handle, WterlCtx *ctx)
|
2013-04-18 16:24:49 +00:00
|
|
|
{
|
|
|
|
/* Create a context for this worker thread to reuse. */
|
|
|
|
WT_CONNECTION *conn = conn_handle->conn;
|
|
|
|
int rc = conn->open_session(conn, NULL, conn_handle->session_config, &ctx->session);
|
|
|
|
if (rc != 0) {
|
2013-04-18 17:36:24 +00:00
|
|
|
ctx->session = NULL;
|
2013-04-18 16:24:49 +00:00
|
|
|
return rc;
|
|
|
|
}
|
2013-04-21 15:14:48 +00:00
|
|
|
|
2013-04-18 16:24:49 +00:00
|
|
|
ctx->cursors = kh_init(cursors);
|
2013-04-21 15:14:48 +00:00
|
|
|
if (!ctx->cursors) {
|
2013-04-22 13:52:21 +00:00
|
|
|
ctx->session->close(ctx->session, NULL);
|
2013-04-21 15:14:48 +00:00
|
|
|
ctx->session = NULL;
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
2013-04-18 16:24:49 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-04-12 19:25:56 +00:00
|
|
|
/**
|
|
|
|
* Close all sessions and all cursors open on any objects.
|
|
|
|
*
|
2013-04-15 04:08:01 +00:00
|
|
|
* Note: always call within enif_mutex_lock/unlock(conn_handle->contexts_mutex)
|
2013-04-12 19:25:56 +00:00
|
|
|
*/
|
2013-04-08 21:21:48 +00:00
|
|
|
void
|
|
|
|
__close_all_sessions(WterlConnHandle *conn_handle)
|
|
|
|
{
|
|
|
|
int i;
|
2013-04-18 17:36:24 +00:00
|
|
|
|
2013-04-12 19:25:56 +00:00
|
|
|
for (i = 0; i < ASYNC_NIF_MAX_WORKERS; i++) {
|
2013-04-08 21:21:48 +00:00
|
|
|
WterlCtx *ctx = &conn_handle->contexts[i];
|
2013-04-18 17:36:24 +00:00
|
|
|
if (ctx->session != NULL) {
|
2013-04-12 19:25:56 +00:00
|
|
|
WT_SESSION *session = ctx->session;
|
|
|
|
khash_t(cursors) *h = ctx->cursors;
|
|
|
|
khiter_t itr;
|
|
|
|
for (itr = kh_begin(h); itr != kh_end(h); ++itr) {
|
|
|
|
if (kh_exist(h, itr)) {
|
2013-04-16 21:15:23 +00:00
|
|
|
WT_CURSOR *cursor = kh_val(h, itr);
|
2013-04-18 15:47:12 +00:00
|
|
|
char *key = (char *)kh_key(h, itr);
|
2013-04-16 21:15:23 +00:00
|
|
|
cursor->close(cursor);
|
|
|
|
kh_del(cursors, h, itr);
|
2013-04-18 15:47:12 +00:00
|
|
|
enif_free(key);
|
2013-04-18 14:32:29 +00:00
|
|
|
kh_value(h, itr) = NULL;
|
2013-04-12 19:25:56 +00:00
|
|
|
}
|
2013-04-11 15:57:41 +00:00
|
|
|
}
|
2013-04-12 19:25:56 +00:00
|
|
|
kh_destroy(cursors, h);
|
|
|
|
session->close(session, NULL);
|
2013-04-15 04:08:01 +00:00
|
|
|
ctx->session = NULL;
|
2013-04-11 15:57:41 +00:00
|
|
|
}
|
2013-04-08 21:21:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-08 02:16:44 +00:00
|
|
|
/**
|
|
|
|
* Close cursors open on 'uri' object.
|
|
|
|
*
|
2013-04-15 04:08:01 +00:00
|
|
|
* Note: always call within enif_mutex_lock/unlock(conn_handle->contexts_mutex)
|
2013-04-08 02:16:44 +00:00
|
|
|
*/
|
|
|
|
void
|
2013-04-15 19:22:12 +00:00
|
|
|
__close_cursors_on(WterlConnHandle *conn_handle, const char *uri)
|
2013-04-08 02:16:44 +00:00
|
|
|
{
|
|
|
|
int i;
|
2013-04-18 17:36:24 +00:00
|
|
|
|
2013-04-12 19:25:56 +00:00
|
|
|
for (i = 0; i < ASYNC_NIF_MAX_WORKERS; i++) {
|
2013-04-08 02:16:44 +00:00
|
|
|
WterlCtx *ctx = &conn_handle->contexts[i];
|
2013-04-18 17:36:24 +00:00
|
|
|
if (ctx->session != NULL) {
|
2013-04-12 19:25:56 +00:00
|
|
|
khash_t(cursors) *h = ctx->cursors;
|
|
|
|
khiter_t itr = kh_get(cursors, h, (char *)uri);
|
|
|
|
if (itr != kh_end(h)) {
|
|
|
|
WT_CURSOR *cursor = kh_value(h, itr);
|
2013-04-18 15:47:12 +00:00
|
|
|
char *key = (char *)kh_key(h, itr);
|
2013-04-12 19:25:56 +00:00
|
|
|
cursor->close(cursor);
|
|
|
|
kh_del(cursors, h, itr);
|
2013-04-18 15:47:12 +00:00
|
|
|
enif_free(key);
|
2013-04-18 14:32:29 +00:00
|
|
|
kh_value(h, itr) = NULL;
|
2013-04-12 19:25:56 +00:00
|
|
|
}
|
2013-04-08 02:16:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-28 20:14:19 +00:00
|
|
|
/**
|
|
|
|
* A string hash function.
|
|
|
|
*
|
|
|
|
* A basic hash function for strings of characters used during the
|
|
|
|
* affinity association.
|
|
|
|
*
|
|
|
|
* s a NULL terminated set of bytes to be hashed
|
|
|
|
* -> an integer hash encoding of the bytes
|
|
|
|
*/
|
|
|
|
static inline unsigned int
|
|
|
|
__str_hash_func(const char *s)
|
|
|
|
{
|
|
|
|
unsigned int h = (unsigned int)*s;
|
|
|
|
if (h) for (++s ; *s; ++s) h = (h << 5) - h + (unsigned int)*s;
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Get a reusable cursor that was opened for a particular worker within its
|
|
|
|
* session.
|
|
|
|
*/
|
|
|
|
static int
|
2013-05-28 20:14:19 +00:00
|
|
|
__retain_ctx(WterlConnHandle *conn_handle, const char *uri, WterlCtx **ctx)
|
2013-04-05 22:09:54 +00:00
|
|
|
{
|
2013-04-08 02:16:44 +00:00
|
|
|
/* Check to see if we have a cursor open for this uri and if so reuse it. */
|
2013-04-06 15:05:41 +00:00
|
|
|
WterlCtx *ctx = &conn_handle->contexts[worker_id];
|
2013-04-18 16:24:49 +00:00
|
|
|
khash_t(cursors) *h = NULL;
|
|
|
|
khiter_t itr;
|
|
|
|
int rc;
|
2013-05-28 20:14:19 +00:00
|
|
|
unsigned int h = __str_hash_func(uri); // TODO: add config at some point
|
2013-04-18 16:24:49 +00:00
|
|
|
|
2013-04-18 17:36:24 +00:00
|
|
|
if (ctx->session == NULL) {
|
|
|
|
enif_mutex_lock(conn_handle->contexts_mutex);
|
2013-04-20 11:38:11 +00:00
|
|
|
rc = __init_session_and_cursor_cache(conn_handle, ctx);
|
2013-04-18 17:36:24 +00:00
|
|
|
enif_mutex_unlock(conn_handle->contexts_mutex);
|
2013-04-20 11:38:11 +00:00
|
|
|
if (rc != 0)
|
|
|
|
return rc;
|
2013-04-18 17:36:24 +00:00
|
|
|
}
|
2013-04-18 16:24:49 +00:00
|
|
|
|
|
|
|
h = ctx->cursors;
|
|
|
|
itr = kh_get(cursors, h, (char *)uri);
|
2013-04-06 15:05:41 +00:00
|
|
|
if (itr != kh_end(h)) {
|
2013-04-19 18:55:32 +00:00
|
|
|
// key exists in hash table, retrieve it
|
|
|
|
*cursor = (WT_CURSOR*)kh_value(h, itr);
|
2013-04-06 15:05:41 +00:00
|
|
|
} else {
|
2013-04-19 18:55:32 +00:00
|
|
|
// key does not exist in hash table, create and insert one
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_lock(conn_handle->contexts_mutex);
|
2013-04-19 18:55:32 +00:00
|
|
|
WT_SESSION *session = conn_handle->contexts[worker_id].session;
|
|
|
|
rc = session->open_cursor(session, uri, NULL, "overwrite,raw", cursor);
|
|
|
|
if (rc != 0) {
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(conn_handle->contexts_mutex);
|
2013-04-19 18:55:32 +00:00
|
|
|
return rc;
|
2013-04-11 15:57:41 +00:00
|
|
|
}
|
|
|
|
|
2013-04-18 15:47:12 +00:00
|
|
|
char *key = enif_alloc(sizeof(Uri));
|
|
|
|
if (!key) {
|
|
|
|
session->close(session, NULL);
|
|
|
|
enif_mutex_unlock(conn_handle->contexts_mutex);
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
|
|
|
memcpy(key, uri, 128);
|
2013-04-06 15:05:41 +00:00
|
|
|
int itr_status;
|
2013-04-18 15:47:12 +00:00
|
|
|
itr = kh_put(cursors, h, key, &itr_status);
|
2013-04-19 18:55:32 +00:00
|
|
|
kh_value(h, itr) = *cursor;
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(conn_handle->contexts_mutex);
|
2013-04-05 22:09:54 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2011-12-22 04:46:35 +00:00
|
|
|
|
2013-04-08 02:16:44 +00:00
|
|
|
static void
|
2013-05-28 20:14:19 +00:00
|
|
|
__release_ctx(WterlConnHandle *conn_handle, const char *uri, WterlCtx *ctx)
|
2013-04-08 02:16:44 +00:00
|
|
|
{
|
2013-05-28 20:14:19 +00:00
|
|
|
UNUSED(conn_handle);
|
|
|
|
UNUSED(worker_id);
|
|
|
|
UNUSED(uri);
|
2013-04-08 02:16:44 +00:00
|
|
|
cursor->reset(cursor);
|
|
|
|
}
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
2013-04-08 21:21:48 +00:00
|
|
|
* Convenience function to generate {error, {errno, Reason}} or 'not_found'
|
2013-04-05 22:09:54 +00:00
|
|
|
* Erlang terms to return to callers.
|
|
|
|
*
|
|
|
|
* env NIF environment
|
|
|
|
* rc code returned by WiredTiger
|
|
|
|
*/
|
|
|
|
static ERL_NIF_TERM
|
|
|
|
__strerror_term(ErlNifEnv* env, int rc)
|
2012-02-16 23:44:28 +00:00
|
|
|
{
|
2013-04-05 22:09:54 +00:00
|
|
|
if (rc == WT_NOTFOUND) {
|
2013-04-19 18:55:32 +00:00
|
|
|
return ATOM_NOT_FOUND;
|
2013-04-05 22:09:54 +00:00
|
|
|
} else {
|
2013-04-15 19:22:12 +00:00
|
|
|
/* We return the errno value as well as the message here because the
|
|
|
|
error message provided by strerror() for differ across platforms
|
|
|
|
and/or may be localized to any given language (i18n). Use the errno
|
|
|
|
atom rather than the message when matching in Erlang. You've been
|
|
|
|
warned. */
|
2013-04-19 18:55:32 +00:00
|
|
|
return enif_make_tuple2(env, ATOM_ERROR,
|
2013-04-08 21:21:48 +00:00
|
|
|
enif_make_tuple2(env,
|
|
|
|
enif_make_atom(env, erl_errno_id(rc)),
|
|
|
|
enif_make_string(env, wiredtiger_strerror(rc), ERL_NIF_LATIN1)));
|
2013-04-05 22:09:54 +00:00
|
|
|
}
|
2012-02-16 23:44:28 +00:00
|
|
|
}
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Opens a WiredTiger WT_CONNECTION object.
|
|
|
|
*
|
|
|
|
* argv[0] path to directory for the database files
|
|
|
|
* argv[1] WiredTiger connection config string as an Erlang binary
|
|
|
|
* argv[2] WiredTiger session config string as an Erlang binary
|
|
|
|
*/
|
2013-03-25 01:00:48 +00:00
|
|
|
ASYNC_NIF_DECL(
|
|
|
|
wterl_conn_open,
|
|
|
|
{ // struct
|
|
|
|
|
|
|
|
ERL_NIF_TERM config;
|
2013-04-05 22:09:54 +00:00
|
|
|
ERL_NIF_TERM session_config;
|
2011-12-22 04:46:35 +00:00
|
|
|
char homedir[4096];
|
2013-04-18 14:32:29 +00:00
|
|
|
struct wterl_priv_data *priv;
|
2013-03-25 01:00:48 +00:00
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
if (!(argc == 3 &&
|
2013-04-19 13:11:41 +00:00
|
|
|
(enif_get_string(env, argv[0], args->homedir, sizeof args->homedir, ERL_NIF_LATIN1) > 0) &&
|
2013-04-07 13:21:47 +00:00
|
|
|
enif_is_binary(env, argv[1]) &&
|
|
|
|
enif_is_binary(env, argv[2]))) {
|
2013-03-25 01:00:48 +00:00
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
2013-04-07 13:21:47 +00:00
|
|
|
args->config = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[1]);
|
|
|
|
args->session_config = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[2]);
|
2013-04-18 14:32:29 +00:00
|
|
|
|
|
|
|
args->priv = (struct wterl_priv_data *)enif_priv_data(env);
|
2013-03-25 01:00:48 +00:00
|
|
|
},
|
|
|
|
{ // work
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
WT_CONNECTION *conn;
|
2013-03-25 01:00:48 +00:00
|
|
|
ErlNifBinary config;
|
2013-04-05 22:09:54 +00:00
|
|
|
ErlNifBinary session_config;
|
2013-04-07 13:21:47 +00:00
|
|
|
|
|
|
|
if (!enif_inspect_binary(env, args->config, &config)) {
|
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
|
|
|
return;
|
2013-03-25 01:00:48 +00:00
|
|
|
}
|
2013-04-07 13:21:47 +00:00
|
|
|
if (!enif_inspect_binary(env, args->session_config, &session_config)) {
|
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
|
|
|
return;
|
2013-04-05 22:09:54 +00:00
|
|
|
}
|
2013-04-22 13:52:21 +00:00
|
|
|
|
|
|
|
int rc = wiredtiger_open(args->homedir,
|
|
|
|
(WT_EVENT_HANDLER*)&args->priv->eh.handlers,
|
|
|
|
config.data[0] != 0 ? (const char*)config.data : NULL,
|
|
|
|
&conn);
|
2013-04-05 22:09:54 +00:00
|
|
|
if (rc == 0) {
|
|
|
|
WterlConnHandle *conn_handle = enif_alloc_resource(wterl_conn_RESOURCE, sizeof(WterlConnHandle));
|
2013-04-16 21:15:23 +00:00
|
|
|
if (!conn_handle) {
|
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, ENOMEM));
|
|
|
|
return;
|
|
|
|
}
|
2013-04-11 15:57:41 +00:00
|
|
|
if (session_config.size > 1) {
|
|
|
|
char *sc = enif_alloc(session_config.size);
|
|
|
|
if (!sc) {
|
|
|
|
enif_release_resource(conn_handle);
|
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, ENOMEM));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
memcpy(sc, session_config.data, session_config.size);
|
|
|
|
|
|
|
|
conn_handle->session_config = (const char *)sc;
|
|
|
|
} else {
|
2013-04-06 21:19:59 +00:00
|
|
|
conn_handle->session_config = NULL;
|
2013-04-11 15:57:41 +00:00
|
|
|
}
|
2013-04-18 14:32:29 +00:00
|
|
|
conn_handle->contexts_mutex = enif_mutex_create(NULL);
|
|
|
|
enif_mutex_lock(conn_handle->contexts_mutex);
|
2013-04-11 15:57:41 +00:00
|
|
|
conn_handle->conn = conn;
|
2013-04-14 21:23:57 +00:00
|
|
|
memset(conn_handle->contexts, 0, sizeof(WterlCtx) * ASYNC_NIF_MAX_WORKERS);
|
2013-04-02 13:42:07 +00:00
|
|
|
ERL_NIF_TERM result = enif_make_resource(env, conn_handle);
|
2013-04-18 14:32:29 +00:00
|
|
|
|
2013-04-20 11:38:11 +00:00
|
|
|
/* Keep track of open connections so as to free when unload/reload/etc.
|
|
|
|
are called. */
|
2013-04-18 14:32:29 +00:00
|
|
|
khash_t(conns) *h;
|
|
|
|
enif_mutex_lock(args->priv->conns_mutex);
|
|
|
|
h = args->priv->conns;
|
|
|
|
int itr_status = 0;
|
|
|
|
khiter_t itr = kh_put(conns, h, conn, &itr_status);
|
|
|
|
if (itr_status != 0) // 0 indicates the key exists already
|
|
|
|
kh_value(h, itr) = conn_handle;
|
|
|
|
enif_mutex_unlock(args->priv->conns_mutex);
|
|
|
|
|
2013-04-12 20:09:00 +00:00
|
|
|
enif_release_resource(conn_handle);
|
2013-04-18 14:32:29 +00:00
|
|
|
enif_mutex_unlock(conn_handle->contexts_mutex);
|
2013-04-20 11:38:11 +00:00
|
|
|
ASYNC_NIF_REPLY(enif_make_tuple2(env, ATOM_OK, result));
|
2013-04-02 13:42:07 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-04-05 22:09:54 +00:00
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
2013-04-02 13:42:07 +00:00
|
|
|
}
|
2013-03-25 01:00:48 +00:00
|
|
|
},
|
|
|
|
{ // post
|
2011-12-22 04:46:35 +00:00
|
|
|
|
2013-03-25 01:00:48 +00:00
|
|
|
});
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Closes a WiredTiger WT_CONNECTION object.
|
|
|
|
*
|
|
|
|
* argv[0] WterlConnHandle resource
|
|
|
|
*/
|
2013-03-25 01:00:48 +00:00
|
|
|
ASYNC_NIF_DECL(
|
|
|
|
wterl_conn_close,
|
|
|
|
{ // struct
|
|
|
|
|
|
|
|
WterlConnHandle* conn_handle;
|
2013-04-18 14:32:29 +00:00
|
|
|
struct wterl_priv_data *priv;
|
2013-03-25 01:00:48 +00:00
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
|
|
|
if (!(argc == 1 &&
|
|
|
|
enif_get_resource(env, argv[0], wterl_conn_RESOURCE, (void**)&args->conn_handle))) {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
|
|
|
enif_keep_resource((void*)args->conn_handle);
|
2013-04-18 14:32:29 +00:00
|
|
|
|
|
|
|
args->priv = (struct wterl_priv_data *)enif_priv_data(env);
|
2013-03-25 01:00:48 +00:00
|
|
|
},
|
|
|
|
{ // work
|
|
|
|
|
2013-04-12 20:09:00 +00:00
|
|
|
/* Free up the shared sessions and cursors. */
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_lock(args->conn_handle->contexts_mutex);
|
2013-04-12 20:09:00 +00:00
|
|
|
__close_all_sessions(args->conn_handle);
|
|
|
|
if (args->conn_handle->session_config) {
|
|
|
|
enif_free((char *)args->conn_handle->session_config);
|
|
|
|
args->conn_handle->session_config = NULL;
|
|
|
|
}
|
2013-03-25 01:00:48 +00:00
|
|
|
WT_CONNECTION* conn = args->conn_handle->conn;
|
|
|
|
int rc = conn->close(conn, NULL);
|
2013-04-18 14:32:29 +00:00
|
|
|
|
2013-04-20 11:38:11 +00:00
|
|
|
/* Connection is closed, remove it so we don't free on unload/reload/etc. */
|
2013-04-18 14:32:29 +00:00
|
|
|
khash_t(conns) *h;
|
|
|
|
enif_mutex_lock(args->priv->conns_mutex);
|
|
|
|
h = args->priv->conns;
|
|
|
|
khiter_t itr;
|
|
|
|
itr = kh_get(conns, h, conn);
|
2013-04-18 15:47:12 +00:00
|
|
|
if (itr != kh_end(h)) {
|
2013-04-18 14:32:29 +00:00
|
|
|
/* key exists in table (as expected) delete it */
|
|
|
|
kh_del(conns, h, itr);
|
|
|
|
kh_value(h, itr) = NULL;
|
|
|
|
}
|
|
|
|
enif_mutex_unlock(args->priv->conns_mutex);
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-04-20 11:38:11 +00:00
|
|
|
enif_mutex_destroy(args->conn_handle->contexts_mutex);
|
|
|
|
memset(args->conn_handle, 0, sizeof(WterlConnHandle));
|
2013-04-18 17:36:24 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
ASYNC_NIF_REPLY(rc == 0 ? ATOM_OK : __strerror_term(env, rc));
|
2013-03-25 01:00:48 +00:00
|
|
|
},
|
|
|
|
{ // post
|
|
|
|
|
|
|
|
enif_release_resource((void*)args->conn_handle);
|
|
|
|
});
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Create a WiredTiger table, column group, index or file.
|
|
|
|
*
|
|
|
|
* We create, use and discard a WT_SESSION here because table creation is not
|
|
|
|
* too performance sensitive.
|
|
|
|
*
|
|
|
|
* argv[0] WterlConnHandle resource
|
|
|
|
* argv[1] object name URI string
|
|
|
|
* argv[2] config string as an Erlang binary
|
|
|
|
*/
|
2013-03-25 01:00:48 +00:00
|
|
|
ASYNC_NIF_DECL(
|
2013-04-05 22:09:54 +00:00
|
|
|
wterl_create,
|
2013-03-25 01:00:48 +00:00
|
|
|
{ // struct
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
WterlConnHandle *conn_handle;
|
|
|
|
Uri uri;
|
2013-03-25 01:00:48 +00:00
|
|
|
ERL_NIF_TERM config;
|
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
if (!(argc == 3 &&
|
2013-04-06 15:05:41 +00:00
|
|
|
enif_get_resource(env, argv[0], wterl_conn_RESOURCE, (void**)&args->conn_handle) &&
|
2013-04-19 13:11:41 +00:00
|
|
|
(enif_get_string(env, argv[1], args->uri, sizeof args->uri, ERL_NIF_LATIN1) > 0) &&
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_is_binary(env, argv[2]))) {
|
2013-03-25 01:00:48 +00:00
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
2013-04-02 13:42:07 +00:00
|
|
|
}
|
2013-04-05 22:09:54 +00:00
|
|
|
args->config = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[2]);
|
2013-03-25 01:00:48 +00:00
|
|
|
enif_keep_resource((void*)args->conn_handle);
|
|
|
|
},
|
|
|
|
{ // work
|
|
|
|
|
|
|
|
ErlNifBinary config;
|
|
|
|
if (!enif_inspect_binary(env, args->config, &config)) {
|
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
|
|
|
return;
|
|
|
|
}
|
2012-02-16 23:44:28 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/* We create, use and discard a WT_SESSION here because a) we don't need a
|
|
|
|
cursor and b) we don't anticipate doing this operation frequently enough
|
|
|
|
to impact performance. */
|
|
|
|
WT_CONNECTION *conn = args->conn_handle->conn;
|
|
|
|
WT_SESSION *session = NULL;
|
|
|
|
int rc = conn->open_session(conn, NULL, args->conn_handle->session_config, &session);
|
|
|
|
if (rc != 0) {
|
2013-04-19 18:55:32 +00:00
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
|
|
|
return;
|
2012-02-08 22:31:16 +00:00
|
|
|
}
|
2011-12-22 04:46:35 +00:00
|
|
|
|
2013-04-06 15:05:41 +00:00
|
|
|
rc = session->create(session, args->uri, (const char*)config.data);
|
|
|
|
(void)session->close(session, NULL);
|
2013-04-08 21:21:48 +00:00
|
|
|
ASYNC_NIF_REPLY(rc == 0 ? ATOM_OK : __strerror_term(env, rc));
|
2013-03-25 01:00:48 +00:00
|
|
|
},
|
|
|
|
{ // post
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_release_resource((void*)args->conn_handle);
|
2013-03-25 01:00:48 +00:00
|
|
|
});
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Drop (remove) a WiredTiger table, column group, index or file.
|
|
|
|
*
|
|
|
|
* argv[0] WterlConnHandle resource
|
|
|
|
* argv[1] object name URI string
|
|
|
|
* argv[2] config string as an Erlang binary
|
|
|
|
*/
|
2013-03-25 01:00:48 +00:00
|
|
|
ASYNC_NIF_DECL(
|
2013-04-05 22:09:54 +00:00
|
|
|
wterl_drop,
|
2013-03-25 01:00:48 +00:00
|
|
|
{ // struct
|
|
|
|
|
|
|
|
Uri uri;
|
|
|
|
ERL_NIF_TERM config;
|
2013-04-05 22:09:54 +00:00
|
|
|
WterlConnHandle *conn_handle;
|
2013-03-25 01:00:48 +00:00
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
|
|
|
if (!(argc == 3 &&
|
2013-04-06 15:05:41 +00:00
|
|
|
enif_get_resource(env, argv[0], wterl_conn_RESOURCE, (void**)&args->conn_handle) &&
|
2013-04-19 13:11:41 +00:00
|
|
|
(enif_get_string(env, argv[1], args->uri, sizeof args->uri, ERL_NIF_LATIN1) > 0) &&
|
2013-03-25 01:00:48 +00:00
|
|
|
enif_is_binary(env, argv[2]))) {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
|
|
|
args->config = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[2]);
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_keep_resource((void*)args->conn_handle);
|
2013-03-25 01:00:48 +00:00
|
|
|
},
|
|
|
|
{ // work
|
|
|
|
|
2013-04-08 02:16:44 +00:00
|
|
|
/* This call requires that there be no open cursors referencing the object. */
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_lock(args->conn_handle->contexts_mutex);
|
2013-04-08 02:16:44 +00:00
|
|
|
__close_cursors_on(args->conn_handle, args->uri);
|
|
|
|
|
2013-03-08 01:31:42 +00:00
|
|
|
ErlNifBinary config;
|
2013-03-25 01:00:48 +00:00
|
|
|
if (!enif_inspect_binary(env, args->config, &config)) {
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-04-20 11:38:11 +00:00
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
2013-03-25 01:00:48 +00:00
|
|
|
return;
|
2013-04-02 13:42:07 +00:00
|
|
|
}
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/* We create, use and discard a WT_SESSION here because a) we don't need a
|
|
|
|
cursor and b) we don't anticipate doing this operation frequently enough
|
|
|
|
to impact performance. */
|
|
|
|
WT_CONNECTION *conn = args->conn_handle->conn;
|
|
|
|
WT_SESSION *session = NULL;
|
|
|
|
int rc = conn->open_session(conn, NULL, args->conn_handle->session_config, &session);
|
|
|
|
if (rc != 0) {
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-04-20 11:38:11 +00:00
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
2013-04-19 18:55:32 +00:00
|
|
|
return;
|
2013-04-02 13:42:07 +00:00
|
|
|
}
|
2013-04-15 19:22:12 +00:00
|
|
|
/* Note: we locked the context mutex and called __close_cursors_on()
|
|
|
|
earlier so that we are sure that before we call into WiredTiger we have
|
|
|
|
first closed all open cursors referencing this object. Failure to do
|
|
|
|
this will result in EBUSY(16) "Device or resource busy". */
|
2013-04-06 15:05:41 +00:00
|
|
|
rc = session->drop(session, args->uri, (const char*)config.data);
|
|
|
|
(void)session->close(session, NULL);
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-04-08 21:21:48 +00:00
|
|
|
ASYNC_NIF_REPLY(rc == 0 ? ATOM_OK : __strerror_term(env, rc));
|
2013-03-25 01:00:48 +00:00
|
|
|
},
|
|
|
|
{ // post
|
2012-02-16 23:44:28 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_release_resource((void*)args->conn_handle);
|
2013-04-02 13:42:07 +00:00
|
|
|
});
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Rename a WiredTiger table, column group, index or file.
|
|
|
|
*
|
|
|
|
* argv[0] WterlConnHandle resource
|
|
|
|
* argv[1] old object name URI string
|
|
|
|
* argv[2] new object name URI string
|
|
|
|
* argv[3] config string as an Erlang binary
|
|
|
|
*/
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_DECL(
|
2013-04-05 22:09:54 +00:00
|
|
|
wterl_rename,
|
2013-04-02 13:42:07 +00:00
|
|
|
{ // struct
|
|
|
|
|
2013-03-25 01:00:48 +00:00
|
|
|
Uri oldname;
|
|
|
|
Uri newname;
|
2013-04-05 22:09:54 +00:00
|
|
|
ERL_NIF_TERM config;
|
|
|
|
WterlConnHandle *conn_handle;
|
2013-03-25 01:00:48 +00:00
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
|
|
|
if (!(argc == 4 &&
|
2013-04-06 15:05:41 +00:00
|
|
|
enif_get_resource(env, argv[0], wterl_conn_RESOURCE, (void**)&args->conn_handle) &&
|
2013-04-19 13:11:41 +00:00
|
|
|
(enif_get_string(env, argv[1], args->oldname, sizeof args->oldname, ERL_NIF_LATIN1) > 0) &&
|
|
|
|
(enif_get_string(env, argv[2], args->newname, sizeof args->newname, ERL_NIF_LATIN1) > 0) &&
|
2013-03-25 01:00:48 +00:00
|
|
|
enif_is_binary(env, argv[3]))) {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
2012-02-08 22:31:16 +00:00
|
|
|
}
|
2013-03-25 01:00:48 +00:00
|
|
|
args->config = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[3]);
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_keep_resource((void*)args->conn_handle);
|
2013-03-25 01:00:48 +00:00
|
|
|
},
|
|
|
|
{ // work
|
2011-12-22 04:46:35 +00:00
|
|
|
|
2013-04-08 02:16:44 +00:00
|
|
|
/* This call requires that there be no open cursors referencing the object. */
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_lock(args->conn_handle->contexts_mutex);
|
2013-04-08 02:16:44 +00:00
|
|
|
__close_cursors_on(args->conn_handle, args->oldname);
|
|
|
|
|
2013-04-02 13:42:07 +00:00
|
|
|
ErlNifBinary config;
|
2013-03-25 01:00:48 +00:00
|
|
|
if (!enif_inspect_binary(env, args->config, &config)) {
|
2013-04-20 11:38:11 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-03-25 01:00:48 +00:00
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
|
|
|
return;
|
2013-04-02 13:42:07 +00:00
|
|
|
}
|
2013-04-05 22:09:54 +00:00
|
|
|
|
|
|
|
/* We create, use and discard a WT_SESSION here because a) we don't need a
|
|
|
|
cursor and b) we don't anticipate doing this operation frequently enough
|
|
|
|
to impact performance. */
|
|
|
|
WT_CONNECTION *conn = args->conn_handle->conn;
|
|
|
|
WT_SESSION *session = NULL;
|
|
|
|
int rc = conn->open_session(conn, NULL, args->conn_handle->session_config, &session);
|
|
|
|
if (rc != 0) {
|
2013-04-20 11:38:11 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
|
|
|
return;
|
2013-04-05 22:09:54 +00:00
|
|
|
}
|
|
|
|
|
2013-04-15 19:22:12 +00:00
|
|
|
/* Note: we locked the context mutex and called __close_cursors_on()
|
|
|
|
earlier so that we are sure that before we call into WiredTiger we have
|
|
|
|
first closed all open cursors referencing this object. Failure to do
|
|
|
|
this will result in EBUSY(16) "Device or resource busy". */
|
2013-04-06 15:05:41 +00:00
|
|
|
rc = session->rename(session, args->oldname, args->newname, (const char*)config.data);
|
2013-04-05 22:09:54 +00:00
|
|
|
(void)session->close(session, NULL);
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-04-08 21:21:48 +00:00
|
|
|
ASYNC_NIF_REPLY(rc == 0 ? ATOM_OK : __strerror_term(env, rc));
|
2013-03-25 01:00:48 +00:00
|
|
|
},
|
|
|
|
{ // post
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_release_resource((void*)args->conn_handle);
|
2013-03-25 01:00:48 +00:00
|
|
|
});
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Salvage rebuilds the file, or files of which a table is comprised,
|
|
|
|
* discarding any corrupted file blocks. Use this as a fallback if
|
|
|
|
* an attempt to open a WiredTiger database object fails.
|
|
|
|
*
|
|
|
|
* argv[0] WterlConnHandle resource
|
|
|
|
* argv[1] object name URI string
|
|
|
|
* argv[2] config string as an Erlang binary
|
|
|
|
*/
|
2013-03-25 01:00:48 +00:00
|
|
|
ASYNC_NIF_DECL(
|
2013-04-05 22:09:54 +00:00
|
|
|
wterl_salvage,
|
2013-03-25 01:00:48 +00:00
|
|
|
{ // struct
|
2012-02-16 23:44:28 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
WterlConnHandle *conn_handle;
|
2013-03-25 01:00:48 +00:00
|
|
|
Uri uri;
|
|
|
|
ERL_NIF_TERM config;
|
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
|
|
|
if (!(argc == 3 &&
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_get_resource(env, argv[0], wterl_conn_RESOURCE, (void**)&args->conn_handle) &&
|
2013-04-19 13:11:41 +00:00
|
|
|
(enif_get_string(env, argv[1], args->uri, sizeof args->uri, ERL_NIF_LATIN1) > 0) &&
|
2013-03-25 01:00:48 +00:00
|
|
|
enif_is_binary(env, argv[2]))) {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
|
|
|
args->config = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[2]);
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_keep_resource((void*)args->conn_handle);
|
2013-03-25 01:00:48 +00:00
|
|
|
},
|
|
|
|
{ // work
|
|
|
|
|
2013-04-08 02:16:44 +00:00
|
|
|
/* This call requires that there be no open cursors referencing the object. */
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_lock(args->conn_handle->contexts_mutex);
|
2013-04-08 02:16:44 +00:00
|
|
|
__close_cursors_on(args->conn_handle, args->uri);
|
|
|
|
|
2012-09-17 14:58:48 +00:00
|
|
|
ErlNifBinary config;
|
2013-03-25 01:00:48 +00:00
|
|
|
if (!enif_inspect_binary(env, args->config, &config)) {
|
2013-04-20 11:38:11 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-03-25 01:00:48 +00:00
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
|
|
|
return;
|
2013-04-02 13:42:07 +00:00
|
|
|
}
|
2013-04-05 22:09:54 +00:00
|
|
|
|
|
|
|
/* We create, use and discard a WT_SESSION here because a) we don't need a
|
|
|
|
cursor and b) we don't anticipate doing this operation frequently enough
|
|
|
|
to impact performance. */
|
|
|
|
WT_CONNECTION *conn = args->conn_handle->conn;
|
|
|
|
WT_SESSION *session = NULL;
|
|
|
|
int rc = conn->open_session(conn, NULL, args->conn_handle->session_config, &session);
|
|
|
|
if (rc != 0) {
|
2013-04-20 11:38:11 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
|
|
|
return;
|
2013-04-05 22:09:54 +00:00
|
|
|
}
|
|
|
|
|
2013-04-06 15:05:41 +00:00
|
|
|
rc = session->salvage(session, args->uri, (const char*)config.data);
|
2013-04-05 22:09:54 +00:00
|
|
|
(void)session->close(session, NULL);
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-04-08 21:21:48 +00:00
|
|
|
ASYNC_NIF_REPLY(rc == 0 ? ATOM_OK : __strerror_term(env, rc));
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // post
|
2012-02-16 23:44:28 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_release_resource((void*)args->conn_handle);
|
2013-04-02 13:42:07 +00:00
|
|
|
});
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Checkpoint writes a transactionally consistent snapshot of a database or set
|
|
|
|
* of objects specified.
|
|
|
|
*
|
|
|
|
* argv[0] WterlConnHandle resource
|
2013-05-28 20:14:19 +00:00
|
|
|
* argv[1] config string as an Erlang binary
|
2013-04-05 22:09:54 +00:00
|
|
|
*/
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_DECL(
|
2013-04-05 22:09:54 +00:00
|
|
|
wterl_checkpoint,
|
2013-04-02 13:42:07 +00:00
|
|
|
{ // struct
|
2012-02-16 23:44:28 +00:00
|
|
|
|
2013-04-06 15:05:41 +00:00
|
|
|
WterlConnHandle *conn_handle;
|
2013-04-02 13:42:07 +00:00
|
|
|
ERL_NIF_TERM config;
|
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
|
|
|
if (!(argc == 2 &&
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_get_resource(env, argv[0], wterl_conn_RESOURCE, (void**)&args->conn_handle) &&
|
2013-04-02 13:42:07 +00:00
|
|
|
enif_is_binary(env, argv[1]))) {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
2013-03-25 01:00:48 +00:00
|
|
|
}
|
2013-04-02 13:42:07 +00:00
|
|
|
args->config = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[1]);
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_keep_resource((void*)args->conn_handle);
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // work
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-02 13:42:07 +00:00
|
|
|
ErlNifBinary config;
|
|
|
|
if (!enif_inspect_binary(env, args->config, &config)) {
|
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
|
|
|
return;
|
|
|
|
}
|
2013-05-28 20:14:19 +00:00
|
|
|
WT_CONNECTION *conn = args->conn_handle->conn;
|
2013-04-05 22:09:54 +00:00
|
|
|
WT_SESSION *session = NULL;
|
2013-05-28 20:14:19 +00:00
|
|
|
int rc = conn->open_session(conn, NULL, args->conn_handle->session_config, &session);
|
2013-04-05 22:09:54 +00:00
|
|
|
if (rc != 0) {
|
2013-04-19 18:55:32 +00:00
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
|
|
|
return;
|
2013-04-05 22:09:54 +00:00
|
|
|
}
|
2013-04-06 15:05:41 +00:00
|
|
|
rc = session->checkpoint(session, (const char*)config.data);
|
2013-05-28 20:14:19 +00:00
|
|
|
(void)session->close(session, NULL);
|
2013-04-05 22:09:54 +00:00
|
|
|
ASYNC_NIF_REPLY(rc == 0 ? ATOM_OK : __strerror_term(env, rc));
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // post
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_release_resource((void*)args->conn_handle);
|
2013-04-02 13:42:07 +00:00
|
|
|
});
|
2012-02-16 23:44:28 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Truncate a file, table or cursor range.
|
|
|
|
*
|
|
|
|
* argv[0] WterlConnHandle resource
|
|
|
|
* argv[1] object name URI string
|
|
|
|
* argv[2] start key as an Erlang binary
|
|
|
|
* argv[3] stop key as an Erlang binary
|
|
|
|
* argv[4] config string as an Erlang binary
|
|
|
|
*/
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_DECL(
|
2013-04-05 22:09:54 +00:00
|
|
|
wterl_truncate,
|
2013-04-02 13:42:07 +00:00
|
|
|
{ // struct
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
WterlConnHandle *conn_handle;
|
2013-04-02 13:42:07 +00:00
|
|
|
Uri uri;
|
2013-04-12 19:25:56 +00:00
|
|
|
int from_first;
|
|
|
|
int to_last;
|
2013-04-05 22:09:54 +00:00
|
|
|
ERL_NIF_TERM start;
|
|
|
|
ERL_NIF_TERM stop;
|
2013-04-02 13:42:07 +00:00
|
|
|
ERL_NIF_TERM config;
|
|
|
|
},
|
|
|
|
{ // pre
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
if (!(argc == 5 &&
|
|
|
|
enif_get_resource(env, argv[0], wterl_conn_RESOURCE, (void**)&args->conn_handle) &&
|
2013-04-19 13:11:41 +00:00
|
|
|
(enif_get_string(env, argv[1], args->uri, sizeof args->uri, ERL_NIF_LATIN1) > 0) &&
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_is_binary(env, argv[4]))) {
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
2013-03-25 01:00:48 +00:00
|
|
|
}
|
2013-04-11 15:57:41 +00:00
|
|
|
if (enif_is_binary(env, argv[2])) {
|
2013-04-12 19:25:56 +00:00
|
|
|
args->from_first = 0;
|
2013-04-19 18:55:32 +00:00
|
|
|
args->start = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[2]);
|
2013-04-12 19:25:56 +00:00
|
|
|
} else if (enif_is_atom(env, argv[2])) { // TODO && argv[2] == ATOM_FIRST) {
|
|
|
|
args->from_first = 1;
|
|
|
|
args->start = 0;
|
2013-04-11 15:57:41 +00:00
|
|
|
} else {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
|
|
|
if (enif_is_binary(env, argv[3])) {
|
2013-04-12 19:25:56 +00:00
|
|
|
args->to_last = 0;
|
2013-04-19 18:55:32 +00:00
|
|
|
args->stop = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[3]);
|
2013-04-12 19:25:56 +00:00
|
|
|
} else if (enif_is_atom(env, argv[3])) { // TODO && argv[3] == ATOM_LAST) {
|
|
|
|
args->to_last = 1;
|
|
|
|
args->stop = 0;
|
2013-04-11 15:57:41 +00:00
|
|
|
} else {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
2013-04-05 22:09:54 +00:00
|
|
|
args->config = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[4]);
|
|
|
|
enif_keep_resource((void*)args->conn_handle);
|
2013-04-15 22:46:06 +00:00
|
|
|
affinity = args->uri;
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // work
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-08 02:16:44 +00:00
|
|
|
/* This call requires that there be no open cursors referencing the object. */
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_lock(args->conn_handle->contexts_mutex);
|
2013-04-08 02:16:44 +00:00
|
|
|
__close_cursors_on(args->conn_handle, args->uri);
|
|
|
|
|
2013-04-02 13:42:07 +00:00
|
|
|
ErlNifBinary config;
|
|
|
|
if (!enif_inspect_binary(env, args->config, &config)) {
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-04-20 11:38:11 +00:00
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
2013-04-02 13:42:07 +00:00
|
|
|
return;
|
2013-03-25 01:00:48 +00:00
|
|
|
}
|
2013-04-05 22:09:54 +00:00
|
|
|
|
2013-04-15 19:22:12 +00:00
|
|
|
/* Note: we locked the context mutex and called __close_cursors_on()
|
|
|
|
earlier so that we are sure that before we call into WiredTiger we have
|
|
|
|
first closed all open cursors referencing this object. Failure to do
|
|
|
|
this will result in EBUSY(16) "Device or resource busy". */
|
2013-04-05 22:09:54 +00:00
|
|
|
WT_CONNECTION *conn = args->conn_handle->conn;
|
|
|
|
WT_SESSION *session = NULL;
|
|
|
|
int rc = conn->open_session(conn, NULL, args->conn_handle->session_config, &session);
|
|
|
|
if (rc != 0) {
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-04-20 11:38:11 +00:00
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
2013-04-19 18:55:32 +00:00
|
|
|
return;
|
2013-04-05 22:09:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ErlNifBinary start_key;
|
2013-04-12 19:25:56 +00:00
|
|
|
ErlNifBinary stop_key;
|
2013-04-05 22:09:54 +00:00
|
|
|
WT_CURSOR *start = NULL;
|
2013-04-12 19:25:56 +00:00
|
|
|
WT_CURSOR *stop = NULL;
|
|
|
|
|
|
|
|
/* The truncate method should be passed either a URI or start/stop cursors,
|
|
|
|
but not both. So we simply open cursors no matter what to avoid the
|
|
|
|
mess. */
|
|
|
|
if (!args->from_first) {
|
2013-04-08 21:21:48 +00:00
|
|
|
if (!enif_inspect_binary(env, args->start, &start_key)) {
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-04-20 11:38:11 +00:00
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
2013-04-08 21:21:48 +00:00
|
|
|
return;
|
|
|
|
}
|
2013-04-12 19:25:56 +00:00
|
|
|
}
|
|
|
|
rc = session->open_cursor(session, args->uri, NULL, "raw", &start);
|
|
|
|
if (rc != 0) {
|
|
|
|
session->close(session, NULL);
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-04-20 11:38:11 +00:00
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
2013-04-12 19:25:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* Position the start cursor at the first record or the specified record. */
|
|
|
|
if (args->from_first) {
|
|
|
|
rc = start->next(start);
|
|
|
|
if (rc != 0) {
|
|
|
|
start->close(start);
|
|
|
|
session->close(session, NULL);
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-04-20 11:38:11 +00:00
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
2013-04-12 19:25:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
2013-04-19 18:55:32 +00:00
|
|
|
WT_ITEM item_start;
|
|
|
|
item_start.data = start_key.data;
|
|
|
|
item_start.size = start_key.size;
|
|
|
|
start->set_key(start, item_start);
|
2013-04-05 22:09:54 +00:00
|
|
|
}
|
|
|
|
|
2013-04-12 19:25:56 +00:00
|
|
|
if (!args->to_last) {
|
2013-04-08 21:21:48 +00:00
|
|
|
if (!enif_inspect_binary(env, args->stop, &stop_key)) {
|
2013-04-20 11:38:11 +00:00
|
|
|
start->close(start);
|
|
|
|
session->close(session, NULL);
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-04-20 11:38:11 +00:00
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
2013-04-08 21:21:48 +00:00
|
|
|
return;
|
|
|
|
}
|
2013-04-12 19:25:56 +00:00
|
|
|
}
|
|
|
|
rc = session->open_cursor(session, args->uri, NULL, "raw", &stop);
|
|
|
|
if (rc != 0) {
|
|
|
|
start->close(start);
|
|
|
|
session->close(session, NULL);
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-04-20 11:38:11 +00:00
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
2013-04-12 19:25:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* Position the stop cursor at the last record or the specified record. */
|
|
|
|
if (args->to_last) {
|
|
|
|
rc = stop->prev(stop);
|
|
|
|
if (rc != 0) {
|
|
|
|
start->close(start);
|
|
|
|
stop->close(stop);
|
|
|
|
session->close(session, NULL);
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-04-20 11:38:11 +00:00
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
2013-04-12 19:25:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
2013-04-19 18:55:32 +00:00
|
|
|
WT_ITEM item_stop;
|
|
|
|
item_stop.data = stop_key.data;
|
|
|
|
item_stop.size = stop_key.size;
|
|
|
|
stop->set_key(stop, item_stop);
|
2013-04-05 22:09:54 +00:00
|
|
|
}
|
|
|
|
|
2013-04-12 19:25:56 +00:00
|
|
|
/* Always pass NULL for URI here because we always specify the range with the
|
|
|
|
start and stop cursors which were opened referencing that URI. */
|
|
|
|
rc = session->truncate(session, NULL, start, stop, (const char*)config.data);
|
|
|
|
|
2013-04-20 11:38:11 +00:00
|
|
|
start->close(start);
|
|
|
|
stop->close(stop);
|
|
|
|
session->close(session, NULL);
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-04-08 21:21:48 +00:00
|
|
|
ASYNC_NIF_REPLY(rc == 0 ? ATOM_OK : __strerror_term(env, rc));
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // post
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_release_resource((void*)args->conn_handle);
|
2013-04-02 13:42:07 +00:00
|
|
|
});
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Upgrade upgrades a file or table, if upgrade is required.
|
|
|
|
*
|
|
|
|
* argv[0] WterlConnHandle resource
|
|
|
|
* argv[1] object name URI string
|
|
|
|
* argv[2] config string as an Erlang binary
|
|
|
|
*/
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_DECL(
|
2013-04-06 15:05:41 +00:00
|
|
|
wterl_upgrade,
|
2013-04-02 13:42:07 +00:00
|
|
|
{ // struct
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
WterlConnHandle *conn_handle;
|
2013-04-02 13:42:07 +00:00
|
|
|
Uri uri;
|
|
|
|
ERL_NIF_TERM config;
|
|
|
|
},
|
|
|
|
{ // pre
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-02 13:42:07 +00:00
|
|
|
if (!(argc == 3 &&
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_get_resource(env, argv[0], wterl_conn_RESOURCE, (void**)&args->conn_handle) &&
|
2013-04-19 13:11:41 +00:00
|
|
|
(enif_get_string(env, argv[1], args->uri, sizeof args->uri, ERL_NIF_LATIN1) > 0) &&
|
2013-04-02 13:42:07 +00:00
|
|
|
enif_is_binary(env, argv[2]))) {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
2012-02-20 01:20:38 +00:00
|
|
|
}
|
2013-04-02 13:42:07 +00:00
|
|
|
args->config = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[2]);
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_keep_resource((void*)args->conn_handle);
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // work
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-08 02:16:44 +00:00
|
|
|
/* This call requires that there be no open cursors referencing the object. */
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_lock(args->conn_handle->contexts_mutex);
|
2013-04-08 02:16:44 +00:00
|
|
|
__close_cursors_on(args->conn_handle, args->uri);
|
|
|
|
|
2013-04-02 13:42:07 +00:00
|
|
|
ErlNifBinary config;
|
|
|
|
if (!enif_inspect_binary(env, args->config, &config)) {
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-04-20 11:38:11 +00:00
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
2013-04-02 13:42:07 +00:00
|
|
|
return;
|
2013-03-25 01:00:48 +00:00
|
|
|
}
|
2013-04-05 22:09:54 +00:00
|
|
|
|
|
|
|
/* We create, use and discard a WT_SESSION here because a) we don't need a
|
|
|
|
cursor and b) we don't anticipate doing this operation frequently enough
|
|
|
|
to impact performance. */
|
|
|
|
WT_CONNECTION *conn = args->conn_handle->conn;
|
|
|
|
WT_SESSION *session = NULL;
|
|
|
|
int rc = conn->open_session(conn, NULL, args->conn_handle->session_config, &session);
|
|
|
|
if (rc != 0) {
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-04-20 11:38:11 +00:00
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
2013-04-19 18:55:32 +00:00
|
|
|
return;
|
2013-04-05 22:09:54 +00:00
|
|
|
}
|
|
|
|
|
2013-04-06 15:05:41 +00:00
|
|
|
rc = session->upgrade(session, args->uri, (const char*)config.data);
|
2013-04-05 22:09:54 +00:00
|
|
|
(void)session->close(session, NULL);
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-04-08 21:21:48 +00:00
|
|
|
ASYNC_NIF_REPLY(rc == 0 ? ATOM_OK : __strerror_term(env, rc));
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // post
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_release_resource((void*)args->conn_handle);
|
2013-04-02 13:42:07 +00:00
|
|
|
});
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Verify reports if a file, or the files of which a table is comprised, have
|
|
|
|
* been corrupted.
|
|
|
|
*
|
|
|
|
* argv[0] WterlConnHandle resource
|
|
|
|
* argv[1] object name URI string
|
|
|
|
* argv[2] config string as an Erlang binary
|
|
|
|
*/
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_DECL(
|
2013-04-05 22:09:54 +00:00
|
|
|
wterl_verify,
|
2013-04-02 13:42:07 +00:00
|
|
|
{ // struct
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
WterlConnHandle *conn_handle;
|
2013-04-02 13:42:07 +00:00
|
|
|
Uri uri;
|
|
|
|
ERL_NIF_TERM config;
|
|
|
|
},
|
|
|
|
{ // pre
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-02 13:42:07 +00:00
|
|
|
if (!(argc == 3 &&
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_get_resource(env, argv[0], wterl_conn_RESOURCE, (void**)&args->conn_handle) &&
|
2013-04-19 13:11:41 +00:00
|
|
|
(enif_get_string(env, argv[1], args->uri, sizeof args->uri, ERL_NIF_LATIN1) > 0) &&
|
2013-04-02 13:42:07 +00:00
|
|
|
enif_is_binary(env, argv[2]))) {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
|
|
|
args->config = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[2]);
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_keep_resource((void*)args->conn_handle);
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // work
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-08 02:16:44 +00:00
|
|
|
/* This call requires that there be no open cursors referencing the object. */
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_lock(args->conn_handle->contexts_mutex);
|
2013-04-08 21:21:48 +00:00
|
|
|
__close_all_sessions(args->conn_handle);
|
2013-04-08 02:16:44 +00:00
|
|
|
|
2013-04-02 13:42:07 +00:00
|
|
|
ErlNifBinary config;
|
|
|
|
if (!enif_inspect_binary(env, args->config, &config)) {
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-04-20 11:38:11 +00:00
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
2013-04-02 13:42:07 +00:00
|
|
|
return;
|
|
|
|
}
|
2013-04-05 22:09:54 +00:00
|
|
|
|
|
|
|
/* We create, use and discard a WT_SESSION here because a) we don't need a
|
|
|
|
cursor and b) we don't anticipate doing this operation frequently enough
|
|
|
|
to impact performance. */
|
|
|
|
WT_CONNECTION *conn = args->conn_handle->conn;
|
|
|
|
WT_SESSION *session = NULL;
|
|
|
|
int rc = conn->open_session(conn, NULL, args->conn_handle->session_config, &session);
|
|
|
|
if (rc != 0) {
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-04-20 11:38:11 +00:00
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
2013-04-19 18:55:32 +00:00
|
|
|
return;
|
2013-04-05 22:09:54 +00:00
|
|
|
}
|
|
|
|
|
2013-04-06 15:05:41 +00:00
|
|
|
rc = session->verify(session, args->uri, (const char*)config.data);
|
|
|
|
(void)session->close(session, NULL);
|
2013-04-15 04:08:01 +00:00
|
|
|
enif_mutex_unlock(args->conn_handle->contexts_mutex);
|
2013-04-08 21:21:48 +00:00
|
|
|
ASYNC_NIF_REPLY(rc == 0 ? ATOM_OK : __strerror_term(env, rc));
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // post
|
2012-02-20 01:20:38 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_release_resource((void*)args->conn_handle);
|
2013-04-02 13:42:07 +00:00
|
|
|
});
|
2012-02-20 01:20:38 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Delete a key's value from the specified table or index.
|
|
|
|
*
|
|
|
|
* argv[0] WterlConnHandle resource
|
|
|
|
* argv[1] object name URI string
|
|
|
|
* argv[2] key as an Erlang binary
|
|
|
|
*/
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_DECL(
|
2013-04-06 15:05:41 +00:00
|
|
|
wterl_delete,
|
2013-04-02 13:42:07 +00:00
|
|
|
{ // struct
|
2012-02-16 23:44:28 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
WterlConnHandle *conn_handle;
|
2013-04-02 13:42:07 +00:00
|
|
|
Uri uri;
|
|
|
|
ERL_NIF_TERM key;
|
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
|
|
|
if (!(argc == 3 &&
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_get_resource(env, argv[0], wterl_conn_RESOURCE, (void**)&args->conn_handle) &&
|
2013-04-19 13:11:41 +00:00
|
|
|
(enif_get_string(env, argv[1], args->uri, sizeof args->uri, ERL_NIF_LATIN1) > 0) &&
|
2013-04-02 13:42:07 +00:00
|
|
|
enif_is_binary(env, argv[2]))) {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
|
|
|
args->key = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[2]);
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_keep_resource((void*)args->conn_handle);
|
2013-04-15 22:46:06 +00:00
|
|
|
affinity = args->uri;
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // work
|
|
|
|
|
2013-03-25 01:00:48 +00:00
|
|
|
ErlNifBinary key;
|
2013-04-02 13:42:07 +00:00
|
|
|
if (!enif_inspect_binary(env, args->key, &key)) {
|
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
|
|
|
return;
|
|
|
|
}
|
2013-04-05 22:09:54 +00:00
|
|
|
|
2013-05-28 20:14:19 +00:00
|
|
|
WterlCtx *ctx = NULL;
|
2013-04-05 22:09:54 +00:00
|
|
|
WT_CURSOR *cursor = NULL;
|
2013-05-28 20:14:19 +00:00
|
|
|
int rc = __retain_ctx(args->conn_handle, args->uri, &ctx);
|
2013-04-05 22:09:54 +00:00
|
|
|
if (rc != 0) {
|
2013-04-19 18:55:32 +00:00
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
|
|
|
return;
|
2013-04-02 13:42:07 +00:00
|
|
|
}
|
2013-05-28 20:14:19 +00:00
|
|
|
cursor = ctx->cursor;
|
2013-04-05 22:09:54 +00:00
|
|
|
|
|
|
|
WT_ITEM item_key;
|
|
|
|
item_key.data = key.data;
|
|
|
|
item_key.size = key.size;
|
|
|
|
cursor->set_key(cursor, &item_key);
|
2013-04-02 13:42:07 +00:00
|
|
|
rc = cursor->remove(cursor);
|
2013-04-05 22:09:54 +00:00
|
|
|
ASYNC_NIF_REPLY(rc == 0 ? ATOM_OK : __strerror_term(env, rc));
|
2013-05-28 20:14:19 +00:00
|
|
|
__release_ctx(args->conn_handle, args->uri, cursor);
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // post
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_release_resource((void*)args->conn_handle);
|
2013-04-02 13:42:07 +00:00
|
|
|
});
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Get the value for the key's value from the specified table or index.
|
|
|
|
*
|
|
|
|
* argv[0] WterlConnHandle resource
|
|
|
|
* argv[1] object name URI string
|
|
|
|
* argv[2] key as an Erlang binary
|
|
|
|
*/
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_DECL(
|
2013-04-05 22:09:54 +00:00
|
|
|
wterl_get,
|
2013-04-02 13:42:07 +00:00
|
|
|
{ // struct
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
WterlConnHandle *conn_handle;
|
2013-04-02 13:42:07 +00:00
|
|
|
Uri uri;
|
|
|
|
ERL_NIF_TERM key;
|
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
|
|
|
if (!(argc == 3 &&
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_get_resource(env, argv[0], wterl_conn_RESOURCE, (void**)&args->conn_handle) &&
|
2013-04-19 13:11:41 +00:00
|
|
|
(enif_get_string(env, argv[1], args->uri, sizeof args->uri, ERL_NIF_LATIN1) > 0) &&
|
2013-04-02 13:42:07 +00:00
|
|
|
enif_is_binary(env, argv[2]))) {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
|
|
|
args->key = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[2]);
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_keep_resource((void*)args->conn_handle);
|
2013-04-15 22:46:06 +00:00
|
|
|
affinity = args->uri;
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // work
|
|
|
|
|
|
|
|
ErlNifBinary key;
|
|
|
|
if (!enif_inspect_binary(env, args->key, &key)) {
|
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
|
|
|
return;
|
|
|
|
}
|
2013-04-05 22:09:54 +00:00
|
|
|
|
2013-05-28 20:14:19 +00:00
|
|
|
WterlCtx *ctx = NULL
|
2013-04-05 22:09:54 +00:00
|
|
|
WT_CURSOR *cursor = NULL;
|
2013-05-28 20:14:19 +00:00
|
|
|
int rc = __retain_ctx(args->conn_handle, args->uri, &ctx);
|
2013-04-05 22:09:54 +00:00
|
|
|
if (rc != 0) {
|
2013-04-19 18:55:32 +00:00
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
|
|
|
return;
|
2013-03-25 01:00:48 +00:00
|
|
|
}
|
2013-05-28 20:14:19 +00:00
|
|
|
cursor = ctx->cursor;
|
2013-04-05 22:09:54 +00:00
|
|
|
|
|
|
|
WT_ITEM item_key;
|
|
|
|
WT_ITEM item_value;
|
|
|
|
item_key.data = key.data;
|
|
|
|
item_key.size = key.size;
|
|
|
|
cursor->set_key(cursor, &item_key);
|
2013-04-02 13:42:07 +00:00
|
|
|
rc = cursor->search(cursor);
|
2013-04-05 22:09:54 +00:00
|
|
|
if (rc != 0) {
|
2013-04-19 18:55:32 +00:00
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
|
|
|
return;
|
2013-04-05 22:09:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
rc = cursor->get_value(cursor, &item_value);
|
|
|
|
if (rc != 0) {
|
2013-04-19 18:55:32 +00:00
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
|
|
|
return;
|
2013-04-05 22:09:54 +00:00
|
|
|
}
|
|
|
|
ERL_NIF_TERM value;
|
|
|
|
unsigned char *bin = enif_make_new_binary(env, item_value.size, &value);
|
|
|
|
memcpy(bin, item_value.data, item_value.size);
|
|
|
|
ASYNC_NIF_REPLY(enif_make_tuple2(env, ATOM_OK, value));
|
2013-05-28 20:14:19 +00:00
|
|
|
__release_ctx(args->conn_handle, args->uri, ctx);
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // post
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_release_resource((void*)args->conn_handle);
|
2013-04-02 13:42:07 +00:00
|
|
|
});
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Store a value for the key's value from the specified table or index.
|
|
|
|
*
|
|
|
|
* argv[0] WterlConnHandle resource
|
|
|
|
* argv[1] object name URI string
|
|
|
|
* argv[2] key as an Erlang binary
|
|
|
|
* argv[3] value as an Erlang binary
|
|
|
|
*/
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_DECL(
|
2013-04-05 22:09:54 +00:00
|
|
|
wterl_put,
|
2013-04-02 13:42:07 +00:00
|
|
|
{ // struct
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
WterlConnHandle *conn_handle;
|
2013-04-02 13:42:07 +00:00
|
|
|
Uri uri;
|
|
|
|
ERL_NIF_TERM key;
|
|
|
|
ERL_NIF_TERM value;
|
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
|
|
|
if (!(argc == 4 &&
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_get_resource(env, argv[0], wterl_conn_RESOURCE, (void**)&args->conn_handle) &&
|
2013-04-19 13:11:41 +00:00
|
|
|
(enif_get_string(env, argv[1], args->uri, sizeof args->uri, ERL_NIF_LATIN1) > 0) &&
|
2013-04-02 13:42:07 +00:00
|
|
|
enif_is_binary(env, argv[2]) &&
|
|
|
|
enif_is_binary(env, argv[3]))) {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
|
|
|
args->key = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[2]);
|
|
|
|
args->value = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[3]);
|
2013-04-06 15:05:41 +00:00
|
|
|
enif_keep_resource((void*)args->conn_handle);
|
2013-04-15 22:46:06 +00:00
|
|
|
affinity = args->uri;
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // work
|
|
|
|
|
|
|
|
ErlNifBinary key;
|
|
|
|
ErlNifBinary value;
|
|
|
|
if (!enif_inspect_binary(env, args->key, &key)) {
|
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!enif_inspect_binary(env, args->value, &value)) {
|
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
|
|
|
return;
|
|
|
|
}
|
2013-04-05 22:09:54 +00:00
|
|
|
|
2013-05-28 20:14:19 +00:00
|
|
|
WterlCtx *ctx = NULL;
|
2013-04-05 22:09:54 +00:00
|
|
|
WT_CURSOR *cursor = NULL;
|
2013-05-28 20:14:19 +00:00
|
|
|
int rc = __retain_ctx(args->conn_handle, args->uri, &ctx);
|
2013-04-05 22:09:54 +00:00
|
|
|
if (rc != 0) {
|
2013-04-19 18:55:32 +00:00
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
|
|
|
return;
|
2013-04-02 13:42:07 +00:00
|
|
|
}
|
2013-05-28 20:14:19 +00:00
|
|
|
cursor = ctx->cursors;
|
2013-04-05 22:09:54 +00:00
|
|
|
|
|
|
|
WT_ITEM item_key;
|
|
|
|
WT_ITEM item_value;
|
|
|
|
item_key.data = key.data;
|
|
|
|
item_key.size = key.size;
|
|
|
|
cursor->set_key(cursor, &item_key);
|
|
|
|
item_value.data = value.data;
|
|
|
|
item_value.size = value.size;
|
|
|
|
cursor->set_value(cursor, &item_value);
|
2013-04-02 13:42:07 +00:00
|
|
|
rc = cursor->insert(cursor);
|
2013-05-28 20:14:19 +00:00
|
|
|
__release_ctx(args->conn_handle, args->uri, ctx);
|
2013-04-20 11:38:11 +00:00
|
|
|
ASYNC_NIF_REPLY(rc == 0 ? ATOM_OK : __strerror_term(env, rc));
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // post
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_release_resource((void*)args->conn_handle);
|
2013-04-02 13:42:07 +00:00
|
|
|
});
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Open a cursor on a table or index.
|
|
|
|
*
|
|
|
|
* argv[0] WterlConnHandle resource
|
|
|
|
* argv[1] object name URI string
|
|
|
|
* argv[2] config string as an Erlang binary
|
|
|
|
*/
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_DECL(
|
|
|
|
wterl_cursor_open,
|
|
|
|
{ // struct
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
WterlConnHandle *conn_handle;
|
2013-04-02 13:42:07 +00:00
|
|
|
Uri uri;
|
2013-04-05 22:09:54 +00:00
|
|
|
ERL_NIF_TERM config;
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
if (!(argc == 3 &&
|
|
|
|
enif_get_resource(env, argv[0], wterl_conn_RESOURCE, (void**)&args->conn_handle) &&
|
2013-04-19 13:11:41 +00:00
|
|
|
(enif_get_string(env, argv[1], args->uri, sizeof args->uri, ERL_NIF_LATIN1) > 0) &&
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_is_binary(env, argv[2]))) {
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
2013-04-07 13:21:47 +00:00
|
|
|
args->config = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[2]);
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_keep_resource((void*)args->conn_handle);
|
2013-04-15 22:46:06 +00:00
|
|
|
affinity = args->uri;
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // work
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
ErlNifBinary config;
|
2013-04-07 13:21:47 +00:00
|
|
|
if (!enif_inspect_binary(env, args->config, &config)) {
|
2013-04-19 18:55:32 +00:00
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
|
|
|
return;
|
2013-04-02 13:42:07 +00:00
|
|
|
}
|
2013-04-05 22:09:54 +00:00
|
|
|
|
|
|
|
/* We create a separate session here to ensure that operations are thread safe. */
|
|
|
|
WT_CONNECTION *conn = args->conn_handle->conn;
|
|
|
|
WT_SESSION *session = NULL;
|
|
|
|
int rc = conn->open_session(conn, NULL, args->conn_handle->session_config, &session);
|
|
|
|
if (rc != 0) {
|
2013-04-19 18:55:32 +00:00
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
|
|
|
return;
|
2013-04-05 22:09:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
WT_CURSOR* cursor;
|
2013-04-07 13:21:47 +00:00
|
|
|
rc = session->open_cursor(session, args->uri, NULL, (config.data[0] != 0) ? (char *)config.data : "overwrite,raw", &cursor);
|
2013-04-05 22:09:54 +00:00
|
|
|
if (rc != 0) {
|
2013-04-19 18:55:32 +00:00
|
|
|
session->close(session, NULL);
|
2013-04-05 22:09:54 +00:00
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
|
|
|
return;
|
2013-04-02 13:42:07 +00:00
|
|
|
}
|
2013-04-05 22:09:54 +00:00
|
|
|
|
2013-04-08 21:21:48 +00:00
|
|
|
WterlCursorHandle* cursor_handle = enif_alloc_resource(wterl_cursor_RESOURCE, sizeof(WterlCursorHandle));
|
2013-04-19 18:55:32 +00:00
|
|
|
if (!cursor_handle) {
|
|
|
|
cursor->close(cursor);
|
|
|
|
session->close(session, NULL);
|
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, ENOMEM));
|
|
|
|
return;
|
|
|
|
}
|
2013-04-05 22:09:54 +00:00
|
|
|
cursor_handle->session = session;
|
|
|
|
cursor_handle->cursor = cursor;
|
|
|
|
ERL_NIF_TERM result = enif_make_resource(env, cursor_handle);
|
2013-04-12 20:09:00 +00:00
|
|
|
enif_release_resource(cursor_handle);
|
2013-04-05 22:09:54 +00:00
|
|
|
ASYNC_NIF_REPLY(enif_make_tuple2(env, ATOM_OK, result));
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // post
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
enif_release_resource((void*)args->conn_handle);
|
2013-04-02 13:42:07 +00:00
|
|
|
});
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Close a cursor releasing resources it held.
|
|
|
|
*
|
|
|
|
* argv[0] WterlCursorHandle resource
|
|
|
|
*/
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_DECL(
|
|
|
|
wterl_cursor_close,
|
|
|
|
{ // struct
|
|
|
|
|
|
|
|
WterlCursorHandle *cursor_handle;
|
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
|
|
|
if (!(argc == 1 &&
|
|
|
|
enif_get_resource(env, argv[0], wterl_cursor_RESOURCE, (void**)&args->cursor_handle))) {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
|
|
|
enif_keep_resource((void*)args->cursor_handle);
|
|
|
|
},
|
|
|
|
{ // work
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/* Note: session->close() will cause all open cursors in the session to be
|
2013-04-19 18:55:32 +00:00
|
|
|
closed first, so we don't have explicitly to do that here.
|
2013-04-19 19:00:57 +00:00
|
|
|
|
|
|
|
WT_CURSOR *cursor = args->cursor_handle->cursor;
|
2013-04-19 18:55:32 +00:00
|
|
|
rc = cursor->close(cursor);
|
2013-04-19 19:00:57 +00:00
|
|
|
*/
|
|
|
|
WT_SESSION *session = args->cursor_handle->session;
|
2013-04-19 18:55:32 +00:00
|
|
|
int rc = session->close(session, NULL);
|
2013-04-05 22:09:54 +00:00
|
|
|
ASYNC_NIF_REPLY(rc == 0 ? ATOM_OK : __strerror_term(env, rc));
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // post
|
|
|
|
|
|
|
|
enif_release_resource((void*)args->cursor_handle);
|
|
|
|
});
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
static ERL_NIF_TERM
|
|
|
|
__cursor_key_ret(ErlNifEnv *env, WT_CURSOR *cursor, int rc)
|
2012-02-17 00:06:56 +00:00
|
|
|
{
|
2013-04-05 22:09:54 +00:00
|
|
|
if (rc == 0) {
|
2013-04-19 18:55:32 +00:00
|
|
|
WT_ITEM item_key;
|
|
|
|
rc = cursor->get_key(cursor, &item_key);
|
|
|
|
if (rc == 0) {
|
|
|
|
ERL_NIF_TERM key;
|
|
|
|
memcpy(enif_make_new_binary(env, item_key.size, &key), item_key.data, item_key.size);
|
|
|
|
return enif_make_tuple2(env, ATOM_OK, key);
|
|
|
|
}
|
2013-04-02 13:42:07 +00:00
|
|
|
}
|
2013-04-05 22:09:54 +00:00
|
|
|
return __strerror_term(env, rc);
|
2012-02-17 00:06:56 +00:00
|
|
|
}
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
static ERL_NIF_TERM
|
|
|
|
__cursor_kv_ret(ErlNifEnv *env, WT_CURSOR *cursor, int rc)
|
2012-02-17 00:06:56 +00:00
|
|
|
{
|
2013-04-05 22:09:54 +00:00
|
|
|
if (rc == 0) {
|
|
|
|
WT_ITEM item_key, item_value;
|
|
|
|
rc = cursor->get_key(cursor, &item_key);
|
|
|
|
if (rc == 0) {
|
|
|
|
rc = cursor->get_value(cursor, &item_value);
|
|
|
|
if (rc == 0) {
|
2013-04-02 13:42:07 +00:00
|
|
|
ERL_NIF_TERM key, value;
|
2013-04-05 22:09:54 +00:00
|
|
|
memcpy(enif_make_new_binary(env, item_key.size, &key), item_key.data, item_key.size);
|
|
|
|
memcpy(enif_make_new_binary(env, item_value.size, &value), item_value.data, item_value.size);
|
2013-04-02 13:42:07 +00:00
|
|
|
return enif_make_tuple3(env, ATOM_OK, key, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-04-05 22:09:54 +00:00
|
|
|
return __strerror_term(env, rc);
|
2012-02-17 00:06:56 +00:00
|
|
|
}
|
2013-03-25 01:00:48 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
static ERL_NIF_TERM
|
|
|
|
__cursor_value_ret(ErlNifEnv* env, WT_CURSOR *cursor, int rc)
|
2012-02-17 00:06:56 +00:00
|
|
|
{
|
2013-04-05 22:09:54 +00:00
|
|
|
if (rc == 0) {
|
|
|
|
WT_ITEM item_value;
|
|
|
|
rc = cursor->get_value(cursor, &item_value);
|
|
|
|
if (rc == 0) {
|
2013-04-02 13:42:07 +00:00
|
|
|
ERL_NIF_TERM value;
|
2013-04-05 22:09:54 +00:00
|
|
|
memcpy(enif_make_new_binary(env, item_value.size, &value), item_value.data, item_value.size);
|
2013-04-02 13:42:07 +00:00
|
|
|
return enif_make_tuple2(env, ATOM_OK, value);
|
|
|
|
}
|
|
|
|
}
|
2013-04-05 22:09:54 +00:00
|
|
|
return __strerror_term(env, rc);
|
2012-02-17 00:06:56 +00:00
|
|
|
}
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Use a cursor to fetch the next key/value pair from the table or index.
|
|
|
|
*
|
|
|
|
* argv[0] WterlCursorHandle resource
|
|
|
|
*/
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_DECL(
|
|
|
|
wterl_cursor_next,
|
|
|
|
{ // struct
|
|
|
|
|
|
|
|
WterlCursorHandle *cursor_handle;
|
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
|
|
|
if (!(argc == 1 &&
|
|
|
|
enif_get_resource(env, argv[0], wterl_cursor_RESOURCE, (void**)&args->cursor_handle))) {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
|
|
|
enif_keep_resource((void*)args->cursor_handle);
|
|
|
|
},
|
|
|
|
{ // work
|
|
|
|
|
|
|
|
WT_CURSOR* cursor = args->cursor_handle->cursor;
|
2013-04-05 22:09:54 +00:00
|
|
|
ASYNC_NIF_REPLY(__cursor_kv_ret(env, cursor, cursor->next(cursor)));
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // post
|
|
|
|
|
|
|
|
enif_release_resource((void*)args->cursor_handle);
|
|
|
|
});
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Use a cursor to fetch the next key from the table or index.
|
|
|
|
*
|
|
|
|
* argv[0] WterlCursorHandle resource
|
|
|
|
*/
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_DECL(
|
|
|
|
wterl_cursor_next_key,
|
|
|
|
{ // struct
|
|
|
|
|
|
|
|
WterlCursorHandle *cursor_handle;
|
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
|
|
|
if (!(enif_get_resource(env, argv[0], wterl_cursor_RESOURCE, (void**)&args->cursor_handle))) {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
|
|
|
enif_keep_resource((void*)args->cursor_handle);
|
|
|
|
},
|
|
|
|
{ // work
|
|
|
|
|
|
|
|
WT_CURSOR* cursor = args->cursor_handle->cursor;
|
2013-04-05 22:09:54 +00:00
|
|
|
ASYNC_NIF_REPLY(__cursor_key_ret(env, cursor, cursor->next(cursor)));
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // post
|
|
|
|
|
|
|
|
enif_release_resource((void*)args->cursor_handle);
|
|
|
|
});
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Use a cursor to fetch the next value from the table or index.
|
|
|
|
*
|
|
|
|
* argv[0] WterlCursorHandle resource
|
|
|
|
*/
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_DECL(
|
|
|
|
wterl_cursor_next_value,
|
|
|
|
{ // struct
|
|
|
|
|
|
|
|
WterlCursorHandle *cursor_handle;
|
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
|
|
|
if (!(argc == 1 &&
|
|
|
|
enif_get_resource(env, argv[0], wterl_cursor_RESOURCE, (void**)&args->cursor_handle))) {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
|
|
|
enif_keep_resource((void*)args->cursor_handle);
|
|
|
|
},
|
|
|
|
{ // work
|
|
|
|
|
|
|
|
WT_CURSOR* cursor = args->cursor_handle->cursor;
|
2013-04-05 22:09:54 +00:00
|
|
|
ASYNC_NIF_REPLY(__cursor_value_ret(env, cursor, cursor->next(cursor)));
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // post
|
|
|
|
|
|
|
|
enif_release_resource((void*)args->cursor_handle);
|
|
|
|
});
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Use a cursor to fetch the previous key/value pair from the table or index.
|
|
|
|
*
|
|
|
|
* argv[0] WterlCursorHandle resource
|
|
|
|
*/
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_DECL(
|
|
|
|
wterl_cursor_prev,
|
|
|
|
{ // struct
|
|
|
|
|
|
|
|
WterlCursorHandle *cursor_handle;
|
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
|
|
|
if (!(argc == 1 &&
|
|
|
|
enif_get_resource(env, argv[0], wterl_cursor_RESOURCE, (void**)&args->cursor_handle))) {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
|
|
|
enif_keep_resource((void*)args->cursor_handle);
|
|
|
|
},
|
|
|
|
{ // work
|
|
|
|
|
|
|
|
WT_CURSOR* cursor = args->cursor_handle->cursor;
|
2013-04-05 22:09:54 +00:00
|
|
|
ASYNC_NIF_REPLY(__cursor_kv_ret(env, cursor, cursor->prev(cursor)));
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // post
|
|
|
|
|
|
|
|
enif_release_resource((void*)args->cursor_handle);
|
|
|
|
});
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Use a cursor to fetch the previous key from the table or index.
|
|
|
|
*
|
|
|
|
* argv[0] WterlCursorHandle resource
|
|
|
|
*/
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_DECL(
|
|
|
|
wterl_cursor_prev_key,
|
|
|
|
{ // struct
|
|
|
|
|
|
|
|
WterlCursorHandle *cursor_handle;
|
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
|
|
|
if (!(argc == 1 &&
|
|
|
|
enif_get_resource(env, argv[0], wterl_cursor_RESOURCE, (void**)&args->cursor_handle))) {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
|
|
|
enif_keep_resource((void*)args->cursor_handle);
|
|
|
|
},
|
|
|
|
{ // work
|
|
|
|
|
|
|
|
WT_CURSOR* cursor = args->cursor_handle->cursor;
|
2013-04-05 22:09:54 +00:00
|
|
|
ASYNC_NIF_REPLY(__cursor_key_ret(env, cursor, cursor->prev(cursor)));
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // post
|
|
|
|
|
|
|
|
enif_release_resource((void*)args->cursor_handle);
|
|
|
|
});
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Use a cursor to fetch the previous value from the table or index.
|
|
|
|
*
|
|
|
|
* argv[0] WterlCursorHandle resource
|
|
|
|
*/
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_DECL(
|
|
|
|
wterl_cursor_prev_value,
|
|
|
|
{ // struct
|
|
|
|
|
|
|
|
WterlCursorHandle *cursor_handle;
|
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
|
|
|
if (!(argc == 1 &&
|
|
|
|
enif_get_resource(env, argv[0], wterl_cursor_RESOURCE, (void**)&args->cursor_handle))) {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
|
|
|
enif_keep_resource((void*)args->cursor_handle);
|
|
|
|
},
|
|
|
|
{ // work
|
|
|
|
|
|
|
|
WT_CURSOR* cursor = args->cursor_handle->cursor;
|
2013-04-05 22:09:54 +00:00
|
|
|
ASYNC_NIF_REPLY(__cursor_value_ret(env, cursor, cursor->prev(cursor)));
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // post
|
|
|
|
|
|
|
|
enif_release_resource((void*)args->cursor_handle);
|
|
|
|
});
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Position the cursor at the record matching the key.
|
|
|
|
*
|
|
|
|
* argv[0] WterlCursorHandle resource
|
2013-04-15 19:22:12 +00:00
|
|
|
* argv[1] key as an Erlang binary
|
|
|
|
* argv[2] boolean, when false the cursor will be reset
|
2013-04-05 22:09:54 +00:00
|
|
|
*/
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_DECL(
|
|
|
|
wterl_cursor_search,
|
|
|
|
{ // struct
|
|
|
|
|
|
|
|
WterlCursorHandle *cursor_handle;
|
|
|
|
ERL_NIF_TERM key;
|
2013-04-15 19:22:12 +00:00
|
|
|
int scanning;
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
2013-04-15 19:22:12 +00:00
|
|
|
static ERL_NIF_TERM ATOM_TRUE = 0;
|
|
|
|
if (ATOM_TRUE == 0)
|
|
|
|
enif_make_atom(env, "true");
|
|
|
|
|
|
|
|
if (!(argc == 3 &&
|
2013-04-02 13:42:07 +00:00
|
|
|
enif_get_resource(env, argv[0], wterl_cursor_RESOURCE, (void**)&args->cursor_handle) &&
|
2013-04-15 19:22:12 +00:00
|
|
|
enif_is_binary(env, argv[1]) &&
|
|
|
|
enif_is_atom(env, argv[2]))) {
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
|
|
|
args->key = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[1]);
|
2013-04-15 19:22:12 +00:00
|
|
|
args->scanning = (enif_is_identical(argv[2], ATOM_TRUE)) ? 1 : 0;
|
2013-04-02 13:42:07 +00:00
|
|
|
enif_keep_resource((void*)args->cursor_handle);
|
|
|
|
},
|
|
|
|
{ // work
|
|
|
|
|
|
|
|
WT_CURSOR* cursor = args->cursor_handle->cursor;
|
|
|
|
ErlNifBinary key;
|
|
|
|
if (!enif_inspect_binary(env, args->key, &key)) {
|
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-04-20 11:38:11 +00:00
|
|
|
WT_ITEM item_key;
|
2013-04-05 22:09:54 +00:00
|
|
|
item_key.data = key.data;
|
|
|
|
item_key.size = key.size;
|
|
|
|
cursor->set_key(cursor, &item_key);
|
2013-04-02 13:42:07 +00:00
|
|
|
|
2013-04-20 11:38:11 +00:00
|
|
|
ERL_NIF_TERM reply = __cursor_value_ret(env, cursor, cursor->search(cursor));
|
2013-04-15 19:22:12 +00:00
|
|
|
if (!args->scanning)
|
2013-04-20 11:38:11 +00:00
|
|
|
(void)cursor->reset(cursor);
|
|
|
|
ASYNC_NIF_REPLY(reply);
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // post
|
|
|
|
|
|
|
|
enif_release_resource((void*)args->cursor_handle);
|
|
|
|
});
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Position the cursor at the record matching the key if it exists, or a record
|
|
|
|
* that would be adjacent.
|
|
|
|
*
|
|
|
|
* argv[0] WterlCursorHandle resource
|
2013-04-15 19:22:12 +00:00
|
|
|
* argv[1] key as an Erlang binary
|
|
|
|
* argv[2] boolean, when false the cursor will be reset
|
2013-04-05 22:09:54 +00:00
|
|
|
*/
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_DECL(
|
|
|
|
wterl_cursor_search_near,
|
|
|
|
{ // struct
|
|
|
|
|
|
|
|
WterlCursorHandle *cursor_handle;
|
|
|
|
ERL_NIF_TERM key;
|
2013-04-15 19:22:12 +00:00
|
|
|
int scanning;
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
2013-04-15 19:22:12 +00:00
|
|
|
static ERL_NIF_TERM ATOM_TRUE = 0;
|
|
|
|
if (ATOM_TRUE == 0)
|
|
|
|
enif_make_atom(env, "true");
|
|
|
|
|
|
|
|
if (!(argc == 3 &&
|
2013-04-02 13:42:07 +00:00
|
|
|
enif_get_resource(env, argv[0], wterl_cursor_RESOURCE, (void**)&args->cursor_handle) &&
|
2013-04-15 19:22:12 +00:00
|
|
|
enif_is_binary(env, argv[1]) &&
|
|
|
|
enif_is_atom(env, argv[2]))) {
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
|
|
|
args->key = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[1]);
|
2013-04-15 19:22:12 +00:00
|
|
|
args->scanning = (enif_is_identical(argv[2], ATOM_TRUE)) ? 1 : 0;
|
2013-04-02 13:42:07 +00:00
|
|
|
enif_keep_resource((void*)args->cursor_handle);
|
|
|
|
},
|
|
|
|
{ // work
|
|
|
|
|
|
|
|
WT_CURSOR* cursor = args->cursor_handle->cursor;
|
|
|
|
ErlNifBinary key;
|
|
|
|
if (!enif_inspect_binary(env, args->key, &key)) {
|
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
|
|
|
return;
|
|
|
|
}
|
2013-04-05 22:09:54 +00:00
|
|
|
WT_ITEM item_key;
|
2013-04-15 21:37:14 +00:00
|
|
|
int exact = 0;
|
2013-04-02 13:42:07 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
item_key.data = key.data;
|
|
|
|
item_key.size = key.size;
|
|
|
|
cursor->set_key(cursor, &item_key);
|
2013-04-02 13:42:07 +00:00
|
|
|
|
2013-04-15 19:22:12 +00:00
|
|
|
int rc = cursor->search_near(cursor, &exact);
|
2013-04-20 11:38:11 +00:00
|
|
|
if (rc != 0) {
|
|
|
|
(void)cursor->reset(cursor);
|
|
|
|
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
|
|
|
return;
|
2013-04-15 19:22:12 +00:00
|
|
|
}
|
2013-04-20 11:38:11 +00:00
|
|
|
|
2013-04-15 19:22:12 +00:00
|
|
|
if (!args->scanning)
|
|
|
|
(void)cursor->reset(cursor);
|
2013-04-20 11:38:11 +00:00
|
|
|
|
|
|
|
if (exact == 0) {
|
|
|
|
/* an exact match */
|
|
|
|
ASYNC_NIF_REPLY(enif_make_tuple2(env, ATOM_OK, enif_make_atom(env, "match")));
|
|
|
|
} else if (exact < 0) {
|
|
|
|
/* cursor now positioned at the next smaller key */
|
|
|
|
ASYNC_NIF_REPLY(enif_make_tuple2(env, ATOM_OK, enif_make_atom(env, "lt")));
|
|
|
|
} else if (exact > 0) {
|
|
|
|
/* cursor now positioned at the next larger key */
|
|
|
|
ASYNC_NIF_REPLY(enif_make_tuple2(env, ATOM_OK, enif_make_atom(env, "gt")));
|
|
|
|
}
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // post
|
|
|
|
|
|
|
|
enif_release_resource((void*)args->cursor_handle);
|
|
|
|
});
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Reset the position of the cursor.
|
|
|
|
*
|
|
|
|
* Any resources held by the cursor are released, and the cursor's key and
|
|
|
|
* position are no longer valid. A subsequent iteration with wterl_cursor_next
|
|
|
|
* will move to the first record, or with wterl_cursor_prev will move to the
|
|
|
|
* last record.
|
|
|
|
*
|
|
|
|
* argv[0] WterlCursorHandle resource
|
|
|
|
*/
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_DECL(
|
|
|
|
wterl_cursor_reset,
|
|
|
|
{ // struct
|
|
|
|
|
|
|
|
WterlCursorHandle *cursor_handle;
|
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
|
|
|
if (!(argc == 1 &&
|
|
|
|
enif_get_resource(env, argv[0], wterl_cursor_RESOURCE, (void**)&args->cursor_handle))) {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
|
|
|
enif_keep_resource((void*)args->cursor_handle);
|
|
|
|
},
|
|
|
|
{ // work
|
|
|
|
|
|
|
|
WT_CURSOR* cursor = args->cursor_handle->cursor;
|
|
|
|
int rc = cursor->reset(cursor);
|
2013-04-05 22:09:54 +00:00
|
|
|
ASYNC_NIF_REPLY(rc == 0 ? ATOM_OK : __strerror_term(env, rc));
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // post
|
|
|
|
|
|
|
|
enif_release_resource((void*)args->cursor_handle);
|
|
|
|
});
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Insert, or overwrite, a record using a cursor.
|
|
|
|
*
|
|
|
|
* argv[0] WterlCursorHandle resource
|
|
|
|
* argv[1] key as an Erlang binary
|
|
|
|
* argv[2] value as an Erlang binary
|
|
|
|
*/
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_DECL(
|
|
|
|
wterl_cursor_insert,
|
|
|
|
{ // struct
|
|
|
|
|
|
|
|
WterlCursorHandle *cursor_handle;
|
|
|
|
ERL_NIF_TERM key;
|
|
|
|
ERL_NIF_TERM value;
|
|
|
|
int rc;
|
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
|
|
|
if (!(argc == 3 &&
|
|
|
|
enif_get_resource(env, argv[0], wterl_cursor_RESOURCE, (void**)&args->cursor_handle) &&
|
|
|
|
enif_is_binary(env, argv[1]) &&
|
|
|
|
enif_is_binary(env, argv[2]))) {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
|
|
|
args->key = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[1]);
|
|
|
|
args->value = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[2]);
|
|
|
|
enif_keep_resource((void*)args->cursor_handle);
|
|
|
|
},
|
|
|
|
{ // work
|
|
|
|
|
|
|
|
WT_CURSOR* cursor = args->cursor_handle->cursor;
|
|
|
|
ErlNifBinary key;
|
|
|
|
ErlNifBinary value;
|
|
|
|
if (!enif_inspect_binary(env, args->key, &key)) {
|
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!enif_inspect_binary(env, args->value, &value)) {
|
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
|
|
|
return;
|
|
|
|
}
|
2013-04-05 22:09:54 +00:00
|
|
|
WT_ITEM item_key;
|
|
|
|
WT_ITEM item_value;
|
|
|
|
|
|
|
|
item_key.data = key.data;
|
|
|
|
item_key.size = key.size;
|
|
|
|
cursor->set_key(cursor, &item_key);
|
|
|
|
item_value.data = value.data;
|
|
|
|
item_value.size = value.size;
|
|
|
|
cursor->set_value(cursor, &item_value);
|
2013-04-02 13:42:07 +00:00
|
|
|
int rc = cursor->insert(cursor);
|
2013-04-15 19:22:12 +00:00
|
|
|
if (rc == 0)
|
|
|
|
rc = cursor->reset(cursor);
|
2013-04-05 22:09:54 +00:00
|
|
|
ASYNC_NIF_REPLY(rc == 0 ? ATOM_OK : __strerror_term(env, rc));
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // post
|
|
|
|
|
|
|
|
enif_release_resource((void*)args->cursor_handle);
|
|
|
|
});
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Update an existing record using a cursor.
|
|
|
|
*
|
|
|
|
* argv[0] WterlCursorHandle resource
|
|
|
|
* argv[1] key as an Erlang binary
|
|
|
|
* argv[2] value as an Erlang binary
|
|
|
|
*/
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_DECL(
|
|
|
|
wterl_cursor_update,
|
|
|
|
{ // struct
|
|
|
|
|
|
|
|
WterlCursorHandle *cursor_handle;
|
|
|
|
ERL_NIF_TERM key;
|
|
|
|
ERL_NIF_TERM value;
|
|
|
|
int rc;
|
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
|
|
|
if (!(argc == 3 &&
|
|
|
|
enif_get_resource(env, argv[0], wterl_cursor_RESOURCE, (void**)&args->cursor_handle) &&
|
|
|
|
enif_is_binary(env, argv[1]) &&
|
|
|
|
enif_is_binary(env, argv[2]))) {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
|
|
|
args->key = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[1]);
|
|
|
|
args->value = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[2]);
|
|
|
|
enif_keep_resource((void*)args->cursor_handle);
|
|
|
|
},
|
|
|
|
{ // work
|
|
|
|
|
|
|
|
WT_CURSOR* cursor = args->cursor_handle->cursor;
|
|
|
|
ErlNifBinary key;
|
|
|
|
ErlNifBinary value;
|
|
|
|
if (!enif_inspect_binary(env, args->key, &key)) {
|
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!enif_inspect_binary(env, args->value, &value)) {
|
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
|
|
|
return;
|
|
|
|
}
|
2013-04-05 22:09:54 +00:00
|
|
|
WT_ITEM item_key;
|
|
|
|
WT_ITEM item_value;
|
|
|
|
|
|
|
|
item_key.data = key.data;
|
|
|
|
item_key.size = key.size;
|
|
|
|
cursor->set_key(cursor, &item_key);
|
|
|
|
item_value.data = value.data;
|
|
|
|
item_value.size = value.size;
|
|
|
|
cursor->set_value(cursor, &item_value);
|
2013-04-02 13:42:07 +00:00
|
|
|
int rc = cursor->update(cursor);
|
2013-04-15 19:22:12 +00:00
|
|
|
if (rc == 0)
|
|
|
|
rc = cursor->reset(cursor);
|
2013-04-05 22:09:54 +00:00
|
|
|
ASYNC_NIF_REPLY(rc == 0 ? ATOM_OK : __strerror_term(env, rc));
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // post
|
|
|
|
|
|
|
|
enif_release_resource((void*)args->cursor_handle);
|
|
|
|
});
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Remove a record using a cursor.
|
|
|
|
*
|
|
|
|
* argv[0] WterlCursorHandle resource
|
|
|
|
* argv[1] key as an Erlang binary
|
|
|
|
*/
|
2013-04-02 13:42:07 +00:00
|
|
|
ASYNC_NIF_DECL(
|
|
|
|
wterl_cursor_remove,
|
|
|
|
{ // struct
|
|
|
|
|
|
|
|
WterlCursorHandle *cursor_handle;
|
|
|
|
ERL_NIF_TERM key;
|
|
|
|
int rc;
|
|
|
|
},
|
|
|
|
{ // pre
|
|
|
|
|
|
|
|
if (!(argc == 2 &&
|
|
|
|
enif_get_resource(env, argv[0], wterl_cursor_RESOURCE, (void**)&args->cursor_handle) &&
|
|
|
|
enif_is_binary(env, argv[1]))) {
|
|
|
|
ASYNC_NIF_RETURN_BADARG();
|
|
|
|
}
|
|
|
|
args->key = enif_make_copy(ASYNC_NIF_WORK_ENV, argv[1]);
|
|
|
|
enif_keep_resource((void*)args->cursor_handle);
|
|
|
|
},
|
|
|
|
{ // work
|
|
|
|
|
|
|
|
WT_CURSOR* cursor = args->cursor_handle->cursor;
|
|
|
|
ErlNifBinary key;
|
|
|
|
if (!enif_inspect_binary(env, args->key, &key)) {
|
|
|
|
ASYNC_NIF_REPLY(enif_make_badarg(env));
|
|
|
|
return;
|
|
|
|
}
|
2013-04-05 22:09:54 +00:00
|
|
|
WT_ITEM item_key;
|
2013-04-02 13:42:07 +00:00
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
item_key.data = key.data;
|
|
|
|
item_key.size = key.size;
|
|
|
|
cursor->set_key(cursor, &item_key);
|
2013-04-02 13:42:07 +00:00
|
|
|
int rc = cursor->remove(cursor);
|
2013-04-15 19:22:12 +00:00
|
|
|
if (rc == 0)
|
|
|
|
rc = cursor->reset(cursor);
|
2013-04-05 22:09:54 +00:00
|
|
|
ASYNC_NIF_REPLY(rc == 0 ? ATOM_OK : __strerror_term(env, rc));
|
2013-04-02 13:42:07 +00:00
|
|
|
},
|
|
|
|
{ // post
|
|
|
|
|
|
|
|
enif_release_resource((void*)args->cursor_handle);
|
|
|
|
});
|
|
|
|
|
2013-04-22 21:45:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Called by wterl_event_handler to set the pid for message delivery.
|
|
|
|
*/
|
|
|
|
static ERL_NIF_TERM
|
|
|
|
wterl_set_event_handler_pid(ErlNifEnv* env, int argc, const ERL_NIF_TERM argv[])
|
|
|
|
{
|
|
|
|
struct wterl_priv_data *priv = enif_priv_data(env);
|
|
|
|
struct wterl_event_handlers *eh = &priv->eh;
|
|
|
|
|
|
|
|
if (!(argc == 1 && enif_is_pid(env, argv[0]))) {
|
|
|
|
return enif_make_badarg(env);
|
|
|
|
}
|
|
|
|
if (enif_get_local_pid(env, argv[0], &eh->to_pid)) {
|
|
|
|
if (!eh->msg_env_message)
|
|
|
|
eh->msg_env_message = enif_alloc_env(); // TOOD: if (!eh->msg_env) { return ENOMEM; }
|
|
|
|
if (!eh->msg_env_error)
|
|
|
|
eh->msg_env_error = enif_alloc_env();
|
|
|
|
if (!eh->msg_env_progress)
|
|
|
|
eh->msg_env_progress = enif_alloc_env();
|
|
|
|
|
|
|
|
eh->handlers.handle_error = __wterl_error_handler;
|
|
|
|
eh->handlers.handle_message = __wterl_message_handler;
|
|
|
|
eh->handlers.handle_progress = __wterl_progress_handler;
|
|
|
|
} else {
|
|
|
|
memset(&eh->to_pid, 0, sizeof(ErlNifPid));
|
|
|
|
}
|
|
|
|
return ATOM_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
/**
|
|
|
|
* Called as this driver is loaded by the Erlang BEAM runtime triggered by the
|
|
|
|
* module's on_load directive.
|
|
|
|
*
|
|
|
|
* env the NIF environment
|
|
|
|
* priv_data used to hold the state for this NIF rather than global variables
|
|
|
|
* load_info an Erlang term, in this case a list with two two-tuples of the
|
|
|
|
* form: [{wterl, ""}, {wiredtiger, ""}] where the strings contain
|
|
|
|
* the git hash of the last commit for this code. This is used
|
|
|
|
* to determin if a rolling upgrade is possible or not.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
on_load(ErlNifEnv *env, void **priv_data, ERL_NIF_TERM load_info)
|
2011-12-22 04:46:35 +00:00
|
|
|
{
|
2013-04-22 13:52:21 +00:00
|
|
|
int arity;
|
|
|
|
ERL_NIF_TERM head, tail;
|
|
|
|
const ERL_NIF_TERM* option;
|
2011-12-22 04:46:35 +00:00
|
|
|
ErlNifResourceFlags flags = ERL_NIF_RT_CREATE | ERL_NIF_RT_TAKEOVER;
|
2013-04-05 22:09:54 +00:00
|
|
|
wterl_conn_RESOURCE = enif_open_resource_type(env, NULL, "wterl_conn_resource",
|
2013-04-19 18:55:32 +00:00
|
|
|
NULL, flags, NULL);
|
2013-04-05 22:09:54 +00:00
|
|
|
wterl_cursor_RESOURCE = enif_open_resource_type(env, NULL, "wterl_cursor_resource",
|
2013-04-19 18:55:32 +00:00
|
|
|
NULL, flags, NULL);
|
2013-04-05 22:09:54 +00:00
|
|
|
|
2011-12-22 04:46:35 +00:00
|
|
|
ATOM_ERROR = enif_make_atom(env, "error");
|
2012-02-08 22:31:16 +00:00
|
|
|
ATOM_OK = enif_make_atom(env, "ok");
|
2013-04-05 22:09:54 +00:00
|
|
|
ATOM_NOT_FOUND = enif_make_atom(env, "not_found");
|
2013-04-11 15:57:41 +00:00
|
|
|
ATOM_FIRST = enif_make_atom(env, "first");
|
|
|
|
ATOM_LAST = enif_make_atom(env, "last");
|
2013-04-22 13:52:21 +00:00
|
|
|
ATOM_MESSAGE = enif_make_atom(env, "message");
|
|
|
|
ATOM_PROGRESS = enif_make_atom(env, "progress");
|
|
|
|
ATOM_WTERL_VSN = enif_make_atom(env, "wterl_vsn");
|
|
|
|
ATOM_WIREDTIGER_VSN = enif_make_atom(env, "wiredtiger_vsn");
|
|
|
|
ATOM_MSG_PID = enif_make_atom(env, "message_pid");
|
2013-04-02 13:42:07 +00:00
|
|
|
|
2013-04-18 14:32:29 +00:00
|
|
|
struct wterl_priv_data *priv = enif_alloc(sizeof(struct wterl_priv_data));
|
|
|
|
if (!priv)
|
|
|
|
return ENOMEM;
|
|
|
|
memset(priv, 0, sizeof(struct wterl_priv_data));
|
2013-04-02 13:42:07 +00:00
|
|
|
|
2013-04-22 13:52:21 +00:00
|
|
|
priv->conns_mutex = enif_mutex_create(NULL);
|
|
|
|
priv->conns = kh_init(conns);
|
|
|
|
if (!priv->conns) {
|
|
|
|
enif_mutex_destroy(priv->conns_mutex);
|
|
|
|
enif_free(priv);
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct wterl_event_handlers *eh = &priv->eh;
|
2013-04-22 21:45:48 +00:00
|
|
|
eh->error_mutex = enif_mutex_create(NULL);
|
|
|
|
eh->message_mutex = enif_mutex_create(NULL);
|
|
|
|
eh->progress_mutex = enif_mutex_create(NULL);
|
2013-04-22 13:52:21 +00:00
|
|
|
|
|
|
|
/* Process the load_info array of tuples, we expect:
|
|
|
|
[{wterl_vsn, "a version string"},
|
2013-04-22 21:45:48 +00:00
|
|
|
{wiredtiger_vsn, "a version string"}]. */
|
2013-04-22 13:52:21 +00:00
|
|
|
while (enif_get_list_cell(env, load_info, &head, &tail)) {
|
|
|
|
if (enif_get_tuple(env, head, &arity, &option)) {
|
|
|
|
if (arity == 2) {
|
|
|
|
if (enif_is_identical(option[0], ATOM_WTERL_VSN)) {
|
|
|
|
enif_get_string(env, option[1], priv->wterl_vsn, sizeof(priv->wterl_vsn), ERL_NIF_LATIN1);
|
|
|
|
} else if (enif_is_identical(option[0], ATOM_WIREDTIGER_VSN)) {
|
|
|
|
enif_get_string(env, option[1], priv->wiredtiger_vsn, sizeof(priv->wiredtiger_vsn), ERL_NIF_LATIN1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
load_info = tail;
|
|
|
|
}
|
|
|
|
|
2013-04-18 14:32:29 +00:00
|
|
|
/* Note: !!! the first element of our priv_data struct *must* be the
|
|
|
|
pointer to the async_nif's private data which we set here. */
|
|
|
|
ASYNC_NIF_LOAD(wterl, priv->async_nif_priv);
|
2013-04-22 13:52:21 +00:00
|
|
|
if (!priv->async_nif_priv) {
|
|
|
|
kh_destroy(conns, priv->conns);
|
|
|
|
enif_mutex_destroy(priv->conns_mutex);
|
|
|
|
enif_free(priv);
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
2013-04-18 14:32:29 +00:00
|
|
|
*priv_data = priv;
|
2013-04-22 13:52:21 +00:00
|
|
|
|
|
|
|
char msg[1024];
|
|
|
|
snprintf(msg, 1024, "NIF on_load complete (wterl version: %s, wiredtiger version: %s)", priv->wterl_vsn, priv->wiredtiger_vsn);
|
|
|
|
__wterl_message_handler((WT_EVENT_HANDLER *)&priv->eh, msg);
|
|
|
|
return 0;
|
2013-04-05 22:09:54 +00:00
|
|
|
}
|
|
|
|
|
2013-04-06 15:05:41 +00:00
|
|
|
static int
|
|
|
|
on_reload(ErlNifEnv *env, void **priv_data, ERL_NIF_TERM load_info)
|
2013-04-05 22:09:54 +00:00
|
|
|
{
|
2013-05-28 20:14:19 +00:00
|
|
|
UNUSED(env);
|
|
|
|
UNUSED(priv_data);
|
|
|
|
UNUSED(load_info);
|
2013-04-18 14:32:29 +00:00
|
|
|
return 0; // TODO: implement
|
2011-12-22 04:46:35 +00:00
|
|
|
}
|
|
|
|
|
2013-04-06 15:05:41 +00:00
|
|
|
static void
|
|
|
|
on_unload(ErlNifEnv *env, void *priv_data)
|
2013-04-02 13:42:07 +00:00
|
|
|
{
|
2013-04-18 14:32:29 +00:00
|
|
|
unsigned int i;
|
|
|
|
struct wterl_priv_data *priv = (struct wterl_priv_data *)priv_data;
|
|
|
|
khash_t(conns) *h;
|
2013-04-20 11:38:11 +00:00
|
|
|
khiter_t itr_conns;
|
|
|
|
WterlConnHandle *conn_handle;
|
2013-04-18 14:32:29 +00:00
|
|
|
|
|
|
|
enif_mutex_lock(priv->conns_mutex);
|
|
|
|
h = priv->conns;
|
|
|
|
|
2013-04-20 11:38:11 +00:00
|
|
|
for (itr_conns = kh_begin(h); itr_conns != kh_end(h); ++itr_conns) {
|
|
|
|
if (kh_exist(h, itr_conns)) {
|
|
|
|
conn_handle = kh_val(h, itr_conns);
|
|
|
|
if (conn_handle) {
|
|
|
|
enif_mutex_lock(conn_handle->contexts_mutex);
|
|
|
|
enif_free((void*)conn_handle->session_config);
|
|
|
|
for (i = 0; i < ASYNC_NIF_MAX_WORKERS; i++) {
|
|
|
|
WterlCtx *ctx = &conn_handle->contexts[i];
|
|
|
|
if (ctx->session != NULL) {
|
|
|
|
WT_SESSION *session = ctx->session;
|
|
|
|
khash_t(cursors) *h = ctx->cursors;
|
|
|
|
khiter_t itr_cursors;
|
|
|
|
for (itr_cursors = kh_begin(h); itr_cursors != kh_end(h); ++itr_cursors) {
|
|
|
|
if (kh_exist(h, itr_cursors)) {
|
|
|
|
WT_CURSOR *cursor = kh_val(h, itr_cursors);
|
|
|
|
char *key = (char *)kh_key(h, itr_cursors);
|
|
|
|
cursor->close(cursor);
|
|
|
|
kh_del(cursors, h, itr_cursors);
|
|
|
|
enif_free(key);
|
|
|
|
kh_value(h, itr_cursors) = NULL;
|
2013-04-18 14:32:29 +00:00
|
|
|
}
|
2013-04-20 11:38:11 +00:00
|
|
|
}
|
|
|
|
kh_destroy(cursors, h);
|
|
|
|
session->close(session, NULL);
|
2013-04-18 14:32:29 +00:00
|
|
|
}
|
2013-04-20 11:38:11 +00:00
|
|
|
}
|
2013-04-18 14:32:29 +00:00
|
|
|
}
|
2013-04-20 11:38:11 +00:00
|
|
|
|
|
|
|
/* This would have closed all cursors and sessions for us
|
|
|
|
but we do that explicitly above. */
|
|
|
|
conn_handle->conn->close(conn_handle->conn, NULL);
|
|
|
|
}
|
2013-04-18 14:32:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Continue to hold the context mutex while unloading the async_nif
|
|
|
|
to prevent new work from coming in while shutting down. */
|
|
|
|
ASYNC_NIF_UNLOAD(wterl, env, priv->async_nif_priv);
|
|
|
|
|
2013-04-20 11:38:11 +00:00
|
|
|
for (itr_conns = kh_begin(h); itr_conns != kh_end(h); ++itr_conns) {
|
|
|
|
if (kh_exist(h, itr_conns)) {
|
|
|
|
conn_handle = kh_val(h, itr_conns);
|
|
|
|
if (conn_handle) {
|
|
|
|
enif_mutex_unlock(conn_handle->contexts_mutex);
|
|
|
|
enif_mutex_destroy(conn_handle->contexts_mutex);
|
2013-04-18 14:32:29 +00:00
|
|
|
}
|
2013-04-20 11:38:11 +00:00
|
|
|
}
|
2013-04-18 14:32:29 +00:00
|
|
|
}
|
|
|
|
|
2013-04-22 13:52:21 +00:00
|
|
|
/* At this point all WiredTiger state and threads are free'd/stopped so there
|
|
|
|
is no chance that the event handler functions will be called so we can
|
|
|
|
be sure that there won't be a race on eh.msg_env in the callback functions. */
|
2013-04-22 21:45:48 +00:00
|
|
|
struct wterl_event_handlers *eh = &priv->eh;
|
|
|
|
enif_mutex_destroy(eh->error_mutex);
|
|
|
|
enif_mutex_destroy(eh->message_mutex);
|
|
|
|
enif_mutex_destroy(eh->progress_mutex);
|
|
|
|
if (eh->msg_env_message)
|
|
|
|
enif_free_env(eh->msg_env_message);
|
|
|
|
if (eh->msg_env_error)
|
|
|
|
enif_free_env(eh->msg_env_error);
|
|
|
|
if (eh->msg_env_progress)
|
|
|
|
enif_free_env(eh->msg_env_progress);
|
|
|
|
|
2013-04-18 14:32:29 +00:00
|
|
|
kh_destroy(conns, h);
|
|
|
|
enif_mutex_unlock(priv->conns_mutex);
|
|
|
|
enif_mutex_destroy(priv->conns_mutex);
|
|
|
|
enif_free(priv);
|
2013-04-02 13:42:07 +00:00
|
|
|
}
|
|
|
|
|
2013-04-06 15:05:41 +00:00
|
|
|
static int
|
|
|
|
on_upgrade(ErlNifEnv *env, void **priv_data, void **old_priv_data, ERL_NIF_TERM load_info)
|
2013-04-02 13:42:07 +00:00
|
|
|
{
|
2013-05-28 20:14:19 +00:00
|
|
|
UNUSED(priv_data);
|
|
|
|
UNUSED(old_priv_data);
|
|
|
|
UNUSED(load_info);
|
2013-04-18 14:32:29 +00:00
|
|
|
ASYNC_NIF_UPGRADE(wterl, env); // TODO: implement
|
2013-04-12 19:25:56 +00:00
|
|
|
return 0;
|
2013-04-02 13:42:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static ErlNifFunc nif_funcs[] =
|
|
|
|
{
|
2013-04-15 04:08:01 +00:00
|
|
|
{"checkpoint_nif", 3, wterl_checkpoint},
|
|
|
|
{"conn_close_nif", 2, wterl_conn_close},
|
|
|
|
{"conn_open_nif", 4, wterl_conn_open},
|
|
|
|
{"create_nif", 4, wterl_create},
|
|
|
|
{"delete_nif", 4, wterl_delete},
|
|
|
|
{"drop_nif", 4, wterl_drop},
|
|
|
|
{"get_nif", 4, wterl_get},
|
|
|
|
{"put_nif", 5, wterl_put},
|
|
|
|
{"rename_nif", 5, wterl_rename},
|
|
|
|
{"salvage_nif", 4, wterl_salvage},
|
|
|
|
// TODO: {"txn_begin", 3, wterl_txn_begin},
|
|
|
|
// TODO: {"txn_commit", 3, wterl_txn_commit},
|
|
|
|
// TODO: {"txn_abort", 3, wterl_txn_abort},
|
|
|
|
{"truncate_nif", 6, wterl_truncate},
|
|
|
|
{"upgrade_nif", 4, wterl_upgrade},
|
|
|
|
{"verify_nif", 4, wterl_verify},
|
2013-05-02 01:59:12 +00:00
|
|
|
// TODO: {"cursor_get_key_nif", 2, wterl_cursor_get_key},
|
|
|
|
// TODO: {"cursor_get_value_nif", 2, wterl_cursor_get_value},
|
|
|
|
// TODO: {"cursor_get_nif", 2, wterl_cursor_get},
|
|
|
|
// TODO: {"cursor_set_key_nif", 2, wterl_cursor_set_key},
|
|
|
|
// TODO: {"cursor_set_value_nif", 2, wterl_cursor_set_value},
|
|
|
|
// TODO: {"cursor_set_nif", 2, wterl_cursor_set},
|
2013-04-15 04:08:01 +00:00
|
|
|
{"cursor_close_nif", 2, wterl_cursor_close},
|
|
|
|
{"cursor_insert_nif", 4, wterl_cursor_insert},
|
|
|
|
{"cursor_next_key_nif", 2, wterl_cursor_next_key},
|
|
|
|
{"cursor_next_nif", 2, wterl_cursor_next},
|
|
|
|
{"cursor_next_value_nif", 2, wterl_cursor_next_value},
|
|
|
|
{"cursor_open_nif", 4, wterl_cursor_open},
|
|
|
|
{"cursor_prev_key_nif", 2, wterl_cursor_prev_key},
|
|
|
|
{"cursor_prev_nif", 2, wterl_cursor_prev},
|
|
|
|
{"cursor_prev_value_nif", 2, wterl_cursor_prev_value},
|
|
|
|
{"cursor_remove_nif", 3, wterl_cursor_remove},
|
|
|
|
{"cursor_reset_nif", 2, wterl_cursor_reset},
|
2013-04-15 19:22:12 +00:00
|
|
|
{"cursor_search_near_nif", 4, wterl_cursor_search_near},
|
|
|
|
{"cursor_search_nif", 4, wterl_cursor_search},
|
2013-04-15 04:08:01 +00:00
|
|
|
{"cursor_update_nif", 4, wterl_cursor_update},
|
2013-04-22 21:45:48 +00:00
|
|
|
{"set_event_handler_pid", 1, wterl_set_event_handler_pid},
|
2013-04-02 13:42:07 +00:00
|
|
|
};
|
|
|
|
|
2013-04-05 22:09:54 +00:00
|
|
|
ERL_NIF_INIT(wterl, nif_funcs, &on_load, &on_reload, &on_upgrade, &on_unload);
|