Removed duplicated code
This commit is contained in:
@@ -98,9 +98,9 @@ make_error_tuple(ErlNifEnv *env, const char *reason)
|
|||||||
static ERL_NIF_TERM
|
static ERL_NIF_TERM
|
||||||
make_sqlite3_error_tuple(ErlNifEnv *env, const char *msg)
|
make_sqlite3_error_tuple(ErlNifEnv *env, const char *msg)
|
||||||
{
|
{
|
||||||
return enif_make_tuple2(env, make_atom(env, "error"),
|
return enif_make_tuple2(env, make_atom(env, "error"),
|
||||||
enif_make_tuple2(env, make_atom(env, "sqlite3_error"),
|
enif_make_tuple2(env, make_atom(env, "sqlite3_error"),
|
||||||
enif_make_string(env, msg, ERL_NIF_LATIN1)));
|
enif_make_string(env, msg, ERL_NIF_LATIN1)));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
@@ -450,6 +450,14 @@ evaluate_command(esqlite_command *cmd, esqlite_connection *conn)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static ERL_NIF_TERM
|
||||||
|
push_command(ErlNifEnv *env, esqlite_connection *conn, esqlite_command *cmd) {
|
||||||
|
if(!queue_push(conn->commands, cmd))
|
||||||
|
return make_error_tuple(env, "command_push_failed");
|
||||||
|
|
||||||
|
return make_atom(env, "ok");
|
||||||
|
}
|
||||||
|
|
||||||
static ERL_NIF_TERM
|
static ERL_NIF_TERM
|
||||||
make_answer(esqlite_command *cmd, ERL_NIF_TERM answer)
|
make_answer(esqlite_command *cmd, ERL_NIF_TERM answer)
|
||||||
{
|
{
|
||||||
@@ -527,14 +535,11 @@ esqlite_open(ErlNifEnv *env, int argc, const ERL_NIF_TERM argv[])
|
|||||||
ErlNifPid pid;
|
ErlNifPid pid;
|
||||||
|
|
||||||
if(argc != 4)
|
if(argc != 4)
|
||||||
return enif_make_badarg(env);
|
return enif_make_badarg(env);
|
||||||
|
|
||||||
if(!enif_get_resource(env, argv[0], esqlite_connection_type, (void **) &db))
|
if(!enif_get_resource(env, argv[0], esqlite_connection_type, (void **) &db))
|
||||||
return enif_make_badarg(env);
|
return enif_make_badarg(env);
|
||||||
|
|
||||||
if(!enif_is_ref(env, argv[1]))
|
if(!enif_is_ref(env, argv[1]))
|
||||||
return make_error_tuple(env, "invalid_ref");
|
return make_error_tuple(env, "invalid_ref");
|
||||||
|
|
||||||
if(!enif_get_local_pid(env, argv[2], &pid))
|
if(!enif_get_local_pid(env, argv[2], &pid))
|
||||||
return make_error_tuple(env, "invalid_pid");
|
return make_error_tuple(env, "invalid_pid");
|
||||||
|
|
||||||
@@ -543,16 +548,12 @@ esqlite_open(ErlNifEnv *env, int argc, const ERL_NIF_TERM argv[])
|
|||||||
if(!cmd)
|
if(!cmd)
|
||||||
return make_error_tuple(env, "command_create_failed");
|
return make_error_tuple(env, "command_create_failed");
|
||||||
|
|
||||||
/* command */
|
|
||||||
cmd->type = cmd_open;
|
cmd->type = cmd_open;
|
||||||
cmd->ref = enif_make_copy(cmd->env, argv[1]);
|
cmd->ref = enif_make_copy(cmd->env, argv[1]);
|
||||||
cmd->pid = pid;
|
cmd->pid = pid;
|
||||||
cmd->arg = enif_make_copy(cmd->env, argv[3]);
|
cmd->arg = enif_make_copy(cmd->env, argv[3]);
|
||||||
|
|
||||||
if(!queue_push(db->commands, cmd))
|
return push_command(env, db, cmd);
|
||||||
return make_error_tuple(env, "command_push_failed");
|
|
||||||
|
|
||||||
return make_atom(env, "ok");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -584,10 +585,7 @@ esqlite_exec(ErlNifEnv *env, int argc, const ERL_NIF_TERM argv[])
|
|||||||
cmd->pid = pid;
|
cmd->pid = pid;
|
||||||
cmd->arg = enif_make_copy(cmd->env, argv[3]);
|
cmd->arg = enif_make_copy(cmd->env, argv[3]);
|
||||||
|
|
||||||
if(!queue_push(db->commands, cmd))
|
return push_command(env, db, cmd);
|
||||||
return make_error_tuple(env, "command_push_failed");
|
|
||||||
|
|
||||||
return make_atom(env, "ok");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -619,10 +617,7 @@ esqlite_prepare(ErlNifEnv *env, int argc, const ERL_NIF_TERM argv[])
|
|||||||
cmd->pid = pid;
|
cmd->pid = pid;
|
||||||
cmd->arg = enif_make_copy(cmd->env, argv[3]);
|
cmd->arg = enif_make_copy(cmd->env, argv[3]);
|
||||||
|
|
||||||
if(!queue_push(conn->commands, cmd))
|
return push_command(env, conn, cmd);
|
||||||
return make_error_tuple(env, "command_push_failed");
|
|
||||||
|
|
||||||
return make_atom(env, "ok");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -658,9 +653,8 @@ esqlite_bind(ErlNifEnv *env, int argc, const ERL_NIF_TERM argv[])
|
|||||||
return make_error_tuple(env, "no_connection");
|
return make_error_tuple(env, "no_connection");
|
||||||
if(!stmt->connection->commands)
|
if(!stmt->connection->commands)
|
||||||
return make_error_tuple(env, "no_command_queue");
|
return make_error_tuple(env, "no_command_queue");
|
||||||
if(!queue_push(stmt->connection->commands, cmd))
|
|
||||||
return make_error_tuple(env, "command_push_failed");
|
return push_command(env, stmt->connection, cmd);
|
||||||
return make_atom(env, "ok");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -697,9 +691,8 @@ esqlite_step(ErlNifEnv *env, int argc, const ERL_NIF_TERM argv[])
|
|||||||
return make_error_tuple(env, "no_connection");
|
return make_error_tuple(env, "no_connection");
|
||||||
if(!stmt->connection->commands)
|
if(!stmt->connection->commands)
|
||||||
return make_error_tuple(env, "no_command_queue");
|
return make_error_tuple(env, "no_command_queue");
|
||||||
if(!queue_push(stmt->connection->commands, cmd))
|
|
||||||
return make_error_tuple(env, "command_push_failed");
|
return push_command(env, stmt->connection, cmd);
|
||||||
return make_atom(env, "ok");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -720,7 +713,6 @@ esqlite_column_names(ErlNifEnv *env, int argc, const ERL_NIF_TERM argv[])
|
|||||||
return make_error_tuple(env, "invalid_ref");
|
return make_error_tuple(env, "invalid_ref");
|
||||||
if(!enif_get_local_pid(env, argv[2], &pid))
|
if(!enif_get_local_pid(env, argv[2], &pid))
|
||||||
return make_error_tuple(env, "invalid_pid");
|
return make_error_tuple(env, "invalid_pid");
|
||||||
|
|
||||||
if(!stmt->statement)
|
if(!stmt->statement)
|
||||||
return make_error_tuple(env, "no_prepared_statement");
|
return make_error_tuple(env, "no_prepared_statement");
|
||||||
|
|
||||||
@@ -737,9 +729,8 @@ esqlite_column_names(ErlNifEnv *env, int argc, const ERL_NIF_TERM argv[])
|
|||||||
return make_error_tuple(env, "no_connection");
|
return make_error_tuple(env, "no_connection");
|
||||||
if(!stmt->connection->commands)
|
if(!stmt->connection->commands)
|
||||||
return make_error_tuple(env, "no_command_queue");
|
return make_error_tuple(env, "no_command_queue");
|
||||||
if(!queue_push(stmt->connection->commands, cmd))
|
|
||||||
return make_error_tuple(env, "command_push_failed");
|
return push_command(env, stmt->connection, cmd);
|
||||||
return make_atom(env, "ok");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -766,10 +757,8 @@ esqlite_close(ErlNifEnv *env, int argc, const ERL_NIF_TERM argv[])
|
|||||||
cmd->type = cmd_close;
|
cmd->type = cmd_close;
|
||||||
cmd->ref = enif_make_copy(cmd->env, argv[1]);
|
cmd->ref = enif_make_copy(cmd->env, argv[1]);
|
||||||
cmd->pid = pid;
|
cmd->pid = pid;
|
||||||
if(!queue_push(conn->commands, cmd))
|
|
||||||
return make_error_tuple(env, "command_push_failed");
|
|
||||||
|
|
||||||
return make_atom(env, "ok");
|
return push_command(env, conn, cmd);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
Reference in New Issue
Block a user