/*------------------------------------------------------------------------- * * plv8_func.cc : PL/v8 built-in functions. * * Copyright (c) 2009-2012, the PLV8JS Development Group. *------------------------------------------------------------------------- */ #include "plv8.h" #include "plv8_param.h" #include extern "C" { #include "access/xact.h" #include "catalog/pg_type.h" #include "executor/spi.h" #include "parser/parse_type.h" #include "utils/builtins.h" #include "utils/lsyscache.h" } // extern "C" using namespace v8; static void plv8_FunctionInvoker(const FunctionCallbackInfo& args) throw(); static void plv8_Elog(const FunctionCallbackInfo& args); static void plv8_Execute(const FunctionCallbackInfo& args); static void plv8_Prepare(const FunctionCallbackInfo& args); static void plv8_PlanCursor(const FunctionCallbackInfo& args); static void plv8_PlanExecute(const FunctionCallbackInfo& args); static void plv8_PlanFree(const FunctionCallbackInfo& args); static void plv8_CursorFetch(const FunctionCallbackInfo& args); static void plv8_CursorMove(const FunctionCallbackInfo& args); static void plv8_CursorClose(const FunctionCallbackInfo& args); static void plv8_ReturnNext(const FunctionCallbackInfo& args); static void plv8_Subtransaction(const FunctionCallbackInfo& args); static void plv8_FindFunction(const FunctionCallbackInfo& args); static void plv8_GetWindowObject(const FunctionCallbackInfo& args); static void plv8_WinGetPartitionLocal(const FunctionCallbackInfo& args); static void plv8_WinSetPartitionLocal(const FunctionCallbackInfo& args); static void plv8_WinGetCurrentPosition(const FunctionCallbackInfo& args); static void plv8_WinGetPartitionRowCount(const FunctionCallbackInfo& args); static void plv8_WinSetMarkPosition(const FunctionCallbackInfo& args); static void plv8_WinRowsArePeers(const FunctionCallbackInfo& args); static void plv8_WinGetFuncArgInPartition(const FunctionCallbackInfo& args); static void plv8_WinGetFuncArgInFrame(const FunctionCallbackInfo& args); static void plv8_WinGetFuncArgCurrent(const FunctionCallbackInfo& args); static void plv8_QuoteLiteral(const FunctionCallbackInfo& args); static void plv8_QuoteNullable(const FunctionCallbackInfo& args); static void plv8_QuoteIdent(const FunctionCallbackInfo& args); /* * Window function API allows to store partition-local memory, but * the allocation is only once per partition. maxlen represents * the allocated size for this partition (if it's zero, the allocation * has just happened). Also v8 doesn't provide vaule serialization, * so currently the object is JSON-ized and stored as a string. */ typedef struct window_storage { size_t maxlen; /* allocated memory */ size_t len; /* the byte size of data */ char data[1]; /* actual string (without null-termination */ } window_storage; #if PG_VERSION_NUM < 90100 /* * quote_literal_cstr - * returns a properly quoted literal */ static char * quote_literal_cstr(const char *rawstr) { return TextDatumGetCString( DirectFunctionCall1(quote_literal, CStringGetTextDatum(rawstr))); } #endif static inline Local WrapCallback(FunctionCallback func) { return External::New(plv8_isolate, reinterpret_cast( reinterpret_cast(func))); } static inline FunctionCallback UnwrapCallback(Handle value) { return reinterpret_cast( reinterpret_cast(External::Cast(*value)->Value())); } static inline void SetCallback(Handle obj, const char *name, FunctionCallback func, PropertyAttribute attr = None) { obj->Set(String::NewFromUtf8(plv8_isolate, name, String::kInternalizedString), FunctionTemplate::New(plv8_isolate, plv8_FunctionInvoker, WrapCallback(func)), attr); } class SubTranBlock { private: ResourceOwner m_resowner; MemoryContext m_mcontext; public: SubTranBlock(); void enter(); void exit(bool success); }; Persistent PlanTemplate; Persistent CursorTemplate; Persistent WindowObjectTemplate; static Handle SPIResultToValue(int status) { Local result; if (status < 0) { plv8_isolate->ThrowException(String::NewFromUtf8(plv8_isolate, FormatSPIStatus(status))); return result; } switch (status) { case SPI_OK_SELECT: case SPI_OK_INSERT_RETURNING: case SPI_OK_DELETE_RETURNING: case SPI_OK_UPDATE_RETURNING: { int nrows = SPI_processed; Converter conv(SPI_tuptable->tupdesc); Local rows = Array::New(plv8_isolate, nrows); for (int r = 0; r < nrows; r++) rows->Set(r, conv.ToValue(SPI_tuptable->vals[r])); result = rows; break; } default: result = Int32::New(plv8_isolate, SPI_processed); break; } return result; } SubTranBlock::SubTranBlock() {} void SubTranBlock::enter() { if (!IsTransactionOrTransactionBlock()) throw js_error("out of transaction"); m_resowner = CurrentResourceOwner; m_mcontext = CurrentMemoryContext; BeginInternalSubTransaction(NULL); MemoryContextSwitchTo(m_mcontext); } void SubTranBlock::exit(bool success) { if (success) ReleaseCurrentSubTransaction(); else RollbackAndReleaseCurrentSubTransaction(); MemoryContextSwitchTo(m_mcontext); CurrentResourceOwner = m_resowner; } JSONObject::JSONObject() { Handle context = plv8_isolate->GetCurrentContext(); Handle global = context->Global(); m_json = global->Get(String::NewFromUtf8(plv8_isolate, "JSON", String::kInternalizedString))->ToObject(); if (m_json.IsEmpty()) throw js_error("JSON not found"); } /* * Call JSON.parse(). Currently this supports only one argument. */ Handle JSONObject::Parse(Handle str) { Handle parse_func = Handle::Cast(m_json->Get(String::NewFromUtf8(plv8_isolate, "parse", String::kInternalizedString))); if (parse_func.IsEmpty()) throw js_error("JSON.parse() not found"); return parse_func->Call(m_json, 1, &str); } /* * Call JSON.stringify(). Currently this supports only one argument. */ Handle JSONObject::Stringify(Handle val) { Handle stringify_func = Handle::Cast(m_json->Get(String::NewFromUtf8(plv8_isolate, "stringify", String::kInternalizedString))); if (stringify_func.IsEmpty()) throw js_error("JSON.stringify() not found"); return stringify_func->Call(m_json, 1, &val); } void SetupPlv8Functions(Handle plv8) { PropertyAttribute attrFull = PropertyAttribute(ReadOnly | DontEnum | DontDelete); SetCallback(plv8, "elog", plv8_Elog, attrFull); SetCallback(plv8, "execute", plv8_Execute, attrFull); SetCallback(plv8, "prepare", plv8_Prepare, attrFull); SetCallback(plv8, "return_next", plv8_ReturnNext, attrFull); SetCallback(plv8, "subtransaction", plv8_Subtransaction, attrFull); SetCallback(plv8, "find_function", plv8_FindFunction, attrFull); SetCallback(plv8, "get_window_object", plv8_GetWindowObject, attrFull); SetCallback(plv8, "quote_literal", plv8_QuoteLiteral, attrFull); SetCallback(plv8, "quote_nullable", plv8_QuoteNullable, attrFull); SetCallback(plv8, "quote_ident", plv8_QuoteIdent, attrFull); plv8->SetInternalFieldCount(PLV8_INTNL_MAX); } /* * v8 is not exception-safe! We cannot throw C++ exceptions over v8 functions. * So, we catch C++ exceptions and convert them to JavaScript ones. */ static void plv8_FunctionInvoker(const FunctionCallbackInfo &args) throw() { HandleScope handle_scope(plv8_isolate); MemoryContext ctx = CurrentMemoryContext; FunctionCallback fn = UnwrapCallback(args.Data()); try { return fn(args); } catch (js_error& e) { args.GetReturnValue().Set(plv8_isolate->ThrowException(e.error_object())); } catch (pg_error& e) { MemoryContextSwitchTo(ctx); ErrorData *edata = CopyErrorData(); Handle message = ToString(edata->message); Handle sqlerrcode = ToString(unpack_sql_state(edata->sqlerrcode)); #if PG_VERSION_NUM >= 90300 Handle schema_name = edata->schema_name ? Handle(ToString(edata->schema_name)) : Null(plv8_isolate); Handle table_name = edata->table_name ? Handle(ToString(edata->table_name)) : Null(plv8_isolate); Handle column_name = edata->column_name ? Handle(ToString(edata->column_name)) : Null(plv8_isolate); Handle datatype_name = edata->datatype_name ? Handle(ToString(edata->datatype_name)) : Null(plv8_isolate); Handle constraint_name = edata->constraint_name ? Handle(ToString(edata->constraint_name)) : Null(plv8_isolate); #endif // XXX: add other fields? (detail, hint, context, internalquery...) FlushErrorState(); FreeErrorData(edata); Handle err = Exception::Error(message)->ToObject(); err->Set(String::NewFromUtf8(plv8_isolate, "sqlerrcode"), sqlerrcode); #if PG_VERSION_NUM >= 90300 err->Set(String::NewFromUtf8(plv8_isolate, "schema_name"), schema_name); err->Set(String::NewFromUtf8(plv8_isolate, "table_name"), table_name); err->Set(String::NewFromUtf8(plv8_isolate, "column_name"), column_name); err->Set(String::NewFromUtf8(plv8_isolate, "datatype_name"), datatype_name); err->Set(String::NewFromUtf8(plv8_isolate, "constraint_name"), constraint_name); #endif args.GetReturnValue().Set(plv8_isolate->ThrowException(err)); } } /* * plv8.elog(elevel, str) */ static void plv8_Elog(const FunctionCallbackInfo& args) { MemoryContext ctx = CurrentMemoryContext; if (args.Length() < 2) { args.GetReturnValue().Set(plv8_isolate->ThrowException(String::NewFromUtf8(plv8_isolate, "usage: plv8.elog(elevel, ...)"))); return; } int elevel = args[0]->Int32Value(); switch (elevel) { case DEBUG5: case DEBUG4: case DEBUG3: case DEBUG2: case DEBUG1: case LOG: case INFO: case NOTICE: case WARNING: case ERROR: break; default: args.GetReturnValue().Set(plv8_isolate->ThrowException(String::NewFromUtf8(plv8_isolate, "invalid error level"))); return; } std::string msg; std::string buf; for (int i = 1; i < args.Length(); i++) { if (i > 1){ msg += " "; } if (!CString::toStdString(args[i],buf)){ args.GetReturnValue().Set(Undefined(plv8_isolate)); return; } msg += buf; } const char *message = msg.c_str(); if (elevel != ERROR) { elog(elevel, "%s", message); args.GetReturnValue().Set(Undefined(plv8_isolate)); return; } /* ERROR case */ PG_TRY(); { elog(elevel, "%s", message); } PG_CATCH(); { MemoryContextSwitchTo(ctx); ErrorData *edata = CopyErrorData(); Local message = ToString(edata->message); FlushErrorState(); FreeErrorData(edata); args.GetReturnValue().Set(plv8_isolate->ThrowException(Exception::Error(message))); return; } PG_END_TRY(); args.GetReturnValue().Set(Undefined(plv8_isolate)); } static Datum value_get_datum(Handle value, Oid typid, char *isnull) { if (value->IsUndefined() || value->IsNull()) { *isnull = 'n'; return (Datum) 0; } else { plv8_type typinfo = { 0 }; bool IsNull; Datum datum; plv8_fill_type(&typinfo, typid); try { datum = ToDatum(value, &IsNull, &typinfo); } catch (js_error& e){ e.rethrow(); } catch (pg_error& e){ e.rethrow(); } *isnull = (IsNull ? 'n' : ' '); return datum; } } static int plv8_execute_params(const char *sql, Handle params) { Assert(!params.IsEmpty()); int status; int nparam = params->Length(); Datum *values = (Datum *) palloc(sizeof(Datum) * nparam); char *nulls = (char *) palloc(sizeof(char) * nparam); /* * Since 9.0, SPI may have the parser deduce the parameter types. In prior * versions, we infer the types from the input JS values. */ #if PG_VERSION_NUM >= 90000 SPIPlanPtr plan; plv8_param_state parstate = {0}; ParamListInfo paramLI; parstate.memcontext = CurrentMemoryContext; plan = SPI_prepare_params(sql, plv8_variable_param_setup, &parstate, 0); if (parstate.numParams != nparam) elog(ERROR, "parameter numbers mismatch: %d != %d", parstate.numParams, nparam); for (int i = 0; i < nparam; i++) { Handle param = params->Get(i); values[i] = value_get_datum(param, parstate.paramTypes[i], &nulls[i]); } paramLI = plv8_setup_variable_paramlist(&parstate, values, nulls); status = SPI_execute_plan_with_paramlist(plan, paramLI, false, 0); #else Oid *types = (Oid *) palloc(sizeof(Oid) * nparam); for (int i = 0; i < nparam; i++) { Handle param = params->Get(i); types[i] = inferred_datum_type(param); if (types[i] == InvalidOid) elog(ERROR, "parameter[%d] cannot translate to a database type", i); values[i] = value_get_datum(param, types[i], &nulls[i]); } status = SPI_execute_with_args(sql, nparam, types, values, nulls, false, 0); pfree(types); #endif pfree(values); pfree(nulls); return status; } static Handle convertArgsToArray(const FunctionCallbackInfo &args, int start, int downshift) { Local result = Array::New(plv8_isolate, args.Length() - start); for (int i = start; i < args.Length(); i++) { result->Set(i - downshift, args[i]); } return result; } /* * plv8.execute(statement, [param, ...]) */ static void plv8_Execute(const FunctionCallbackInfo &args) { int status; if (args.Length() < 1) { args.GetReturnValue().Set(Undefined(plv8_isolate)); return; } CString sql(args[0]); Handle params; if (args.Length() >= 2) { if (args[1]->IsArray()) params = Handle::Cast(args[1]); else /* Consume trailing elements as an array. */ params = convertArgsToArray(args, 1, 1); } int nparam = params.IsEmpty() ? 0 : params->Length(); SubTranBlock subtran; PG_TRY(); { subtran.enter(); if (nparam == 0) status = SPI_exec(sql, 0); else status = plv8_execute_params(sql, params); } PG_CATCH(); { subtran.exit(false); SPI_pop_conditional(true); throw pg_error(); } PG_END_TRY(); subtran.exit(true); args.GetReturnValue().Set(SPIResultToValue(status)); } /* * plv8.prepare(statement, args...) */ static void plv8_Prepare(const FunctionCallbackInfo &args) { SPIPlanPtr initial = NULL, saved; CString sql(args[0]); Handle array; int arraylen = 0; Oid *types = NULL; plv8_param_state *parstate = NULL; if (args.Length() > 1) { if (args[1]->IsArray()) array = Handle::Cast(args[1]); else /* Consume trailing elements as an array. */ array = convertArgsToArray(args, 1, 0); arraylen = array->Length(); types = (Oid *) palloc(sizeof(Oid) * arraylen); } for (int i = 0; i < arraylen; i++) { CString typestr(array->Get(i)); int32 typemod; #if PG_VERSION_NUM >= 90400 parseTypeString(typestr, &types[i], &typemod, false); #else parseTypeString(typestr, &types[i], &typemod); #endif } PG_TRY(); { #if PG_VERSION_NUM >= 90000 if (args.Length() == 1) { parstate = (plv8_param_state *) palloc0(sizeof(plv8_param_state)); parstate->memcontext = CurrentMemoryContext; initial = SPI_prepare_params(sql, plv8_variable_param_setup, parstate, 0); } else #endif initial = SPI_prepare(sql, arraylen, types); saved = SPI_saveplan(initial); SPI_freeplan(initial); } PG_CATCH(); { throw pg_error(); } PG_END_TRY(); if (PlanTemplate.IsEmpty()) { Local base = FunctionTemplate::New(plv8_isolate); base->SetClassName(String::NewFromUtf8(plv8_isolate, "PreparedPlan", String::kInternalizedString)); Local templ = base->InstanceTemplate(); templ->SetInternalFieldCount(2); SetCallback(templ, "cursor", plv8_PlanCursor); SetCallback(templ, "execute", plv8_PlanExecute); SetCallback(templ, "free", plv8_PlanFree); PlanTemplate.Reset(plv8_isolate, templ); } Local templ = Local::New(plv8_isolate, PlanTemplate); Local result = templ->NewInstance(); result->SetInternalField(0, External::New(plv8_isolate, saved)); result->SetInternalField(1, External::New(plv8_isolate, parstate)); args.GetReturnValue().Set(result); } /* * plan.cursor(args, ...) */ static void plv8_PlanCursor(const FunctionCallbackInfo &args) { Handle self = args.This(); SPIPlanPtr plan; Datum *values = NULL; char *nulls = NULL; int nparam = 0, argcount; Handle params; Portal cursor; plv8_param_state *parstate = NULL; plan = static_cast( Handle::Cast(self->GetInternalField(0))->Value()); if (plan == NULL) { StringInfoData buf; initStringInfo(&buf); appendStringInfo(&buf, "plan unexpectedly null"); throw js_error(pstrdup(buf.data)); } /* XXX: Add plan validation */ if (args.Length() > 0) { if (args[0]->IsArray()) params = Handle::Cast(args[0]); else params = convertArgsToArray(args, 0, 0); nparam = params->Length(); } /* * If the plan has the variable param info, use it. */ parstate = static_cast( Handle::Cast(self->GetInternalField(1))->Value()); if (parstate) argcount = parstate->numParams; else argcount = SPI_getargcount(plan); if (argcount != nparam) { StringInfoData buf; initStringInfo(&buf); appendStringInfo(&buf, "plan expected %d argument(s), given is %d", argcount, nparam); throw js_error(pstrdup(buf.data)); } if (nparam > 0) { values = (Datum *) palloc(sizeof(Datum) * nparam); nulls = (char *) palloc(sizeof(char) * nparam); } for (int i = 0; i < nparam; i++) { Handle param = params->Get(i); Oid typid; if (parstate) typid = parstate->paramTypes[i]; else typid = SPI_getargtypeid(plan, i); values[i] = value_get_datum(param, typid, &nulls[i]); } PG_TRY(); { #if PG_VERSION_NUM >= 90000 if (parstate) { ParamListInfo paramLI; paramLI = plv8_setup_variable_paramlist(parstate, values, nulls); cursor = SPI_cursor_open_with_paramlist(NULL, plan, paramLI, false); } else #endif cursor = SPI_cursor_open(NULL, plan, values, nulls, false); } PG_CATCH(); { throw pg_error(); } PG_END_TRY(); Handle cname = ToString(cursor->name, strlen(cursor->name)); /* * Instantiate if the template is empty. */ if (CursorTemplate.IsEmpty()) { Local base = FunctionTemplate::New(plv8_isolate); base->SetClassName(String::NewFromUtf8(plv8_isolate, "Cursor", String::kInternalizedString)); Local templ = base->InstanceTemplate(); templ->SetInternalFieldCount(1); SetCallback(templ, "fetch", plv8_CursorFetch); SetCallback(templ, "move", plv8_CursorMove); SetCallback(templ, "close", plv8_CursorClose); CursorTemplate.Reset(plv8_isolate, templ); } Local templ = Local::New(plv8_isolate, CursorTemplate); Local result = templ->NewInstance(); result->SetInternalField(0, cname); args.GetReturnValue().Set(result); } /* * plan.execute(args, ...) */ static void plv8_PlanExecute(const FunctionCallbackInfo &args) { Handle self = args.This(); SPIPlanPtr plan; Datum *values = NULL; char *nulls = NULL; int nparam = 0, argcount; Handle params; SubTranBlock subtran; int status; plv8_param_state *parstate = NULL; plan = static_cast( Handle::Cast(self->GetInternalField(0))->Value()); /* XXX: Add plan validation */ if (args.Length() > 0) { if (args[0]->IsArray()) params = Handle::Cast(args[0]); else params = convertArgsToArray(args, 0, 0); nparam = params->Length(); } /* * If the plan has the variable param info, use it. */ parstate = static_cast( Handle::Cast(self->GetInternalField(1))->Value()); if (parstate) argcount = parstate->numParams; else argcount = SPI_getargcount(plan); if (argcount != nparam) { StringInfoData buf; initStringInfo(&buf); appendStringInfo(&buf, "plan expected %d argument(s), given is %d", argcount, nparam); throw js_error(pstrdup(buf.data)); } if (nparam > 0) { values = (Datum *) palloc(sizeof(Datum) * nparam); nulls = (char *) palloc(sizeof(char) * nparam); } for (int i = 0; i < nparam; i++) { Handle param = params->Get(i); Oid typid; if (parstate) typid = parstate->paramTypes[i]; else typid = SPI_getargtypeid(plan, i); values[i] = value_get_datum(param, typid, &nulls[i]); } PG_TRY(); { subtran.enter(); #if PG_VERSION_NUM >= 90000 if (parstate) { ParamListInfo paramLI; paramLI = plv8_setup_variable_paramlist(parstate, values, nulls); status = SPI_execute_plan_with_paramlist(plan, paramLI, false, 0); } else #endif status = SPI_execute_plan(plan, values, nulls, false, 0); } PG_CATCH(); { subtran.exit(false); throw pg_error(); } PG_END_TRY(); subtran.exit(true); args.GetReturnValue().Set(SPIResultToValue(status)); } /* * plan.free() */ static void plv8_PlanFree(const FunctionCallbackInfo &args) { Handle self = args.This(); SPIPlanPtr plan; plv8_param_state *parstate; int status = 0; plan = static_cast( Handle::Cast(self->GetInternalField(0))->Value()); if (plan) status = SPI_freeplan(plan); self->SetInternalField(0, External::New(plv8_isolate, 0)); parstate = static_cast( Handle::Cast(self->GetInternalField(1))->Value()); if (parstate) pfree(parstate); self->SetInternalField(1, External::New(plv8_isolate, 0)); args.GetReturnValue().Set(Int32::New(plv8_isolate, status)); } /* * cursor.fetch([n]) */ static void plv8_CursorFetch(const FunctionCallbackInfo &args) { Handle self = args.This(); CString cname(self->GetInternalField(0)); Portal cursor = SPI_cursor_find(cname); int nfetch = 1; bool forward = true, wantarray = false; if (!cursor) throw js_error("cannot find cursor"); if (args.Length() >= 1) { wantarray = true; nfetch = args[0]->Int32Value(); if (nfetch < 0) { nfetch = -nfetch; forward = false; } } PG_TRY(); { SPI_cursor_fetch(cursor, forward, nfetch); } PG_CATCH(); { throw pg_error(); } PG_END_TRY(); if (SPI_processed > 0) { Converter conv(SPI_tuptable->tupdesc); if (!wantarray) { Handle result = conv.ToValue(SPI_tuptable->vals[0]); args.GetReturnValue().Set(result); SPI_freetuptable(SPI_tuptable); return; } else { Handle array = Array::New(plv8_isolate); for (unsigned int i = 0; i < SPI_processed; i++) array->Set(i, conv.ToValue(SPI_tuptable->vals[i])); args.GetReturnValue().Set(array); SPI_freetuptable(SPI_tuptable); return; } } SPI_freetuptable(SPI_tuptable); args.GetReturnValue().Set(Undefined(plv8_isolate)); } /* * cursor.move(n) */ static void plv8_CursorMove(const FunctionCallbackInfo& args) { Handle self = args.This(); CString cname(self->GetInternalField(0)); Portal cursor = SPI_cursor_find(cname); int nmove = 1; bool forward = true; if (!cursor) throw js_error("cannot find cursor"); if (args.Length() < 1) { args.GetReturnValue().Set(Undefined(plv8_isolate)); return; } nmove = args[0]->Int32Value(); if (nmove < 0) { nmove = -nmove; forward = false; } PG_TRY(); { SPI_cursor_move(cursor, forward, nmove); } PG_CATCH(); { throw pg_error(); } PG_END_TRY(); args.GetReturnValue().Set(Undefined(plv8_isolate)); } /* * cursor.close() */ static void plv8_CursorClose(const FunctionCallbackInfo &args) { Handle self = args.This(); CString cname(self->GetInternalField(0)); Portal cursor = SPI_cursor_find(cname); if (!cursor) throw js_error("cannot find cursor"); PG_TRY(); { SPI_cursor_close(cursor); } PG_CATCH(); { throw pg_error(); } PG_END_TRY(); args.GetReturnValue().Set(Int32::New(plv8_isolate, cursor ? 1 : 0)); } /* * plv8.return_next(retval) */ static void plv8_ReturnNext(const FunctionCallbackInfo& args) { Handle self = args.This(); Handle conv_value = self->GetInternalField(PLV8_INTNL_CONV); if (!conv_value->IsExternal()) throw js_error("return_next called in context that cannot accept a set"); Converter *conv = static_cast( Handle::Cast(conv_value)->Value()); Tuplestorestate *tupstore = static_cast( Handle::Cast( self->GetInternalField(PLV8_INTNL_TUPSTORE))->Value()); conv->ToDatum(args[0], tupstore); args.GetReturnValue().Set(Undefined(plv8_isolate)); } /* * plv8.subtransaction(func(){ ... }) */ static void plv8_Subtransaction(const FunctionCallbackInfo& args) { if (args.Length() < 1) { args.GetReturnValue().Set(Undefined(plv8_isolate)); return; } if (!args[0]->IsFunction()) { args.GetReturnValue().Set(Undefined(plv8_isolate)); return; } Handle func = Handle::Cast(args[0]); SubTranBlock subtran; subtran.enter(); Handle emptyargs[] = {}; TryCatch try_catch; Handle result = func->Call(func, 0, emptyargs); subtran.exit(!result.IsEmpty()); if (result.IsEmpty()) throw js_error(try_catch); args.GetReturnValue().Set(result); } /* * plv8.find_function("signature") */ static void plv8_FindFunction(const FunctionCallbackInfo& args) { if (args.Length() < 1) { args.GetReturnValue().Set(Undefined(plv8_isolate)); return; } CString signature(args[0]); Local func; PG_TRY(); { func = find_js_function_by_name(signature.str()); } PG_CATCH(); { throw pg_error(); } PG_END_TRY(); args.GetReturnValue().Set(func); } /* * plv8.get_window_object() * Returns window object in window functions, which provides window function API. */ static void plv8_GetWindowObject(const FunctionCallbackInfo& args) { Handle self = args.This(); Handle fcinfo_value = self->GetInternalField(PLV8_INTNL_FCINFO); if (!fcinfo_value->IsExternal()) throw js_error("get_window_object called in wrong context"); if (WindowObjectTemplate.IsEmpty()) { /* Initialize it if we haven't yet. */ Local base = FunctionTemplate::New(plv8_isolate); base->SetClassName(String::NewFromUtf8(plv8_isolate, "WindowObject", String::kInternalizedString)); Local templ = base->InstanceTemplate(); /* We store fcinfo here. */ templ->SetInternalFieldCount(1); /* Functions. */ SetCallback(templ, "get_partition_local", plv8_WinGetPartitionLocal); SetCallback(templ, "set_partition_local", plv8_WinSetPartitionLocal); SetCallback(templ, "get_current_position", plv8_WinGetCurrentPosition); SetCallback(templ, "get_partition_row_count", plv8_WinGetPartitionRowCount); SetCallback(templ, "set_mark_position", plv8_WinSetMarkPosition); SetCallback(templ, "rows_are_peers", plv8_WinRowsArePeers); SetCallback(templ, "get_func_arg_in_partition", plv8_WinGetFuncArgInPartition); SetCallback(templ, "get_func_arg_in_frame", plv8_WinGetFuncArgInFrame); SetCallback(templ, "get_func_arg_current", plv8_WinGetFuncArgCurrent); /* Constants for get_func_in_XXX() */ templ->Set(String::NewFromUtf8(plv8_isolate, "SEEK_CURRENT", String::kInternalizedString), Int32::New(plv8_isolate, WINDOW_SEEK_CURRENT)); templ->Set(String::NewFromUtf8(plv8_isolate, "SEEK_HEAD", String::kInternalizedString), Int32::New(plv8_isolate, WINDOW_SEEK_HEAD)); templ->Set(String::NewFromUtf8(plv8_isolate, "SEEK_TAIL", String::kInternalizedString), Int32::New(plv8_isolate, WINDOW_SEEK_TAIL)); WindowObjectTemplate.Reset(plv8_isolate, templ); } Local templ = Local::New(plv8_isolate, WindowObjectTemplate); Local js_winobj = templ->NewInstance(); js_winobj->SetInternalField(0, fcinfo_value); args.GetReturnValue().Set(js_winobj); } /* * Short-cut routine for window function API */ static inline WindowObject plv8_MyWindowObject(const FunctionCallbackInfo& args) { Handle self = args.This(); /* fcinfo is embedded in the internal field. See plv8_GetWindowObject() */ FunctionCallInfo fcinfo = static_cast( Handle::Cast(self->GetInternalField(0))->Value()); if (fcinfo == NULL) throw js_error("window function api called with wrong object"); WindowObject winobj = PG_WINDOW_OBJECT(); if (!winobj) throw js_error("window function api called with wrong object"); return winobj; } /* * Short-cut routine for window function API * Unfortunately, in the JS functino level we don't know the plv8 function * argument information enough. Thus, we obtain it from function expression. */ static inline plv8_type * plv8_MyArgType(const FunctionCallbackInfo& args, int argno) { Handle self = args.This(); FunctionCallInfo fcinfo = static_cast( Handle::Cast(self->GetInternalField(0))->Value()); if (fcinfo == NULL) throw js_error("window function api called with wrong object"); /* This is safe to call in C++ context (without PG_TRY). */ return get_plv8_type(fcinfo, argno); } /* * winobj.get_partition_local([size]) * The default allocation size is 1K, but the caller can override this value * by the argument at the first call. */ static void plv8_WinGetPartitionLocal(const FunctionCallbackInfo& args) { WindowObject winobj = plv8_MyWindowObject(args); size_t size; window_storage *storage; if (args.Length() < 1) size = 1000; /* default 1K */ else size = args[0]->Int32Value(); size += sizeof(size_t) * 2; PG_TRY(); { storage = (window_storage *) WinGetPartitionLocalMemory(winobj, size); } PG_CATCH(); { throw pg_error(); } PG_END_TRY(); /* If it's new, store the maximum size. */ if (storage->maxlen == 0) storage->maxlen = size; /* If nothing is stored, undefined is returned. */ if (storage->len == 0) { args.GetReturnValue().Set(Undefined(plv8_isolate)); return; } /* * Currently we support only serializable JSON object to be stored. */ JSONObject JSON; Handle value = ToString(storage->data, storage->len); args.GetReturnValue().Set(JSON.Parse(value)); } /* * winobj.set_partition_local(obj) * If the storage has not been allocated, it's allocated based on the * size of JSON-ized input string. */ static void plv8_WinSetPartitionLocal(const FunctionCallbackInfo& args) { WindowObject winobj = plv8_MyWindowObject(args); if (args.Length() < 1) { args.GetReturnValue().Set(Undefined(plv8_isolate)); return; } JSONObject JSON; Handle value = JSON.Stringify(args[0]); CString str(value); size_t str_size = strlen(str); size_t size = str_size + sizeof(size_t) * 2; window_storage *storage; PG_TRY(); { storage = (window_storage *) WinGetPartitionLocalMemory(winobj, size); } PG_CATCH(); { throw pg_error(); } PG_END_TRY(); if (storage->maxlen != 0 && storage->maxlen < size) { throw js_error("window local memory overflow"); } else if (storage->maxlen == 0) { /* new allocation */ storage->maxlen = size; } storage->len = str_size; memcpy(storage->data, str, str_size); args.GetReturnValue().Set(Undefined(plv8_isolate)); } /* * winobj.get_current_position() */ static void plv8_WinGetCurrentPosition(const FunctionCallbackInfo& args) { WindowObject winobj = plv8_MyWindowObject(args); int64 pos = 0; PG_TRY(); { pos = WinGetCurrentPosition(winobj); } PG_CATCH(); { throw pg_error(); } PG_END_TRY(); args.GetReturnValue().Set(Integer::New(plv8_isolate, pos)); } /* * winobj.get_partition_row_count() */ static void plv8_WinGetPartitionRowCount(const FunctionCallbackInfo& args) { WindowObject winobj = plv8_MyWindowObject(args); int64 pos = 0; PG_TRY(); { pos = WinGetPartitionRowCount(winobj); } PG_CATCH(); { throw pg_error(); } PG_END_TRY(); args.GetReturnValue().Set(Integer::New(plv8_isolate, pos)); } /* * winobj.set_mark_pos(pos) */ static void plv8_WinSetMarkPosition(const FunctionCallbackInfo& args) { WindowObject winobj = plv8_MyWindowObject(args); if (args.Length() < 1) { args.GetReturnValue().Set(Undefined(plv8_isolate)); return; } int64 markpos = args[0]->IntegerValue(); PG_TRY(); { WinSetMarkPosition(winobj, markpos); } PG_CATCH(); { throw pg_error(); } PG_END_TRY(); args.GetReturnValue().Set(Undefined(plv8_isolate)); } /* * winobj.rows_are_peers(pos1, pos2) */ static void plv8_WinRowsArePeers(const FunctionCallbackInfo& args) { WindowObject winobj = plv8_MyWindowObject(args); if (args.Length() < 2) { args.GetReturnValue().Set(Undefined(plv8_isolate)); return; } int64 pos1 = args[0]->IntegerValue(); int64 pos2 = args[1]->IntegerValue(); bool res = false; PG_TRY(); { res = WinRowsArePeers(winobj, pos1, pos2); } PG_CATCH(); { throw pg_error(); } PG_END_TRY(); args.GetReturnValue().Set(Boolean::New(plv8_isolate, res)); } /* * winobj.get_func_arg_in_partition(argno, relpos, seektype, set_mark) */ static void plv8_WinGetFuncArgInPartition(const FunctionCallbackInfo& args) { WindowObject winobj = plv8_MyWindowObject(args); /* Since we return undefined in "isout" case, throw if arg isn't enough. */ if (args.Length() < 4) throw js_error("argument not enough"); int argno = args[0]->Int32Value(); int relpos = args[1]->Int32Value(); int seektype = args[2]->Int32Value(); bool set_mark = args[3]->BooleanValue(); bool isnull, isout; Datum res; PG_TRY(); { res = WinGetFuncArgInPartition(winobj, argno, relpos, seektype, set_mark, &isnull, &isout); } PG_CATCH(); { throw pg_error(); } PG_END_TRY(); /* Return undefined to tell it's out of partition. */ if (isout) { args.GetReturnValue().Set(Undefined(plv8_isolate)); return; } plv8_type *type = plv8_MyArgType(args, argno); args.GetReturnValue().Set(ToValue(res, isnull, type)); } /* * winobj.get_func_arg_in_frame(argno, relpos, seektype, set_mark) */ static void plv8_WinGetFuncArgInFrame(const FunctionCallbackInfo& args) { WindowObject winobj = plv8_MyWindowObject(args); /* Since we return undefined in "isout" case, throw if arg isn't enough. */ if (args.Length() < 4) throw js_error("argument not enough"); int argno = args[0]->Int32Value(); int relpos = args[1]->Int32Value(); int seektype = args[2]->Int32Value(); bool set_mark = args[3]->BooleanValue(); bool isnull, isout; Datum res; PG_TRY(); { res = WinGetFuncArgInFrame(winobj, argno, relpos, seektype, set_mark, &isnull, &isout); } PG_CATCH(); { throw pg_error(); } PG_END_TRY(); /* Return undefined to tell it's out of frame. */ if (isout) { args.GetReturnValue().Set(Undefined(plv8_isolate)); return; } plv8_type *type = plv8_MyArgType(args, argno); args.GetReturnValue().Set(ToValue(res, isnull, type)); } /* * winobj.get_func_arg_current(argno) */ static void plv8_WinGetFuncArgCurrent(const FunctionCallbackInfo& args) { WindowObject winobj = plv8_MyWindowObject(args); if (args.Length() < 1) { args.GetReturnValue().Set(Undefined(plv8_isolate)); return; } int argno = args[0]->Int32Value(); bool isnull; Datum res; PG_TRY(); { res = WinGetFuncArgCurrent(winobj, argno, &isnull); } PG_CATCH(); { throw pg_error(); } PG_END_TRY(); plv8_type *type = plv8_MyArgType(args, argno); args.GetReturnValue().Set(ToValue(res, isnull, type)); } /* * plv8.quote_literal(str) */ static void plv8_QuoteLiteral(const FunctionCallbackInfo& args) { if (args.Length() < 1) { args.GetReturnValue().Set(Undefined(plv8_isolate)); return; } CString instr(args[0]); char *result; PG_TRY(); { result = quote_literal_cstr(instr); } PG_CATCH(); { throw pg_error(); } PG_END_TRY(); args.GetReturnValue().Set(ToString(result)); } /* * plv8.quote_nullable(str) */ static void plv8_QuoteNullable(const FunctionCallbackInfo& args) { if (args.Length() < 1) { args.GetReturnValue().Set(Undefined(plv8_isolate)); return; } CString instr(args[0]); char *result; if (args[0]->IsNull() || args[0]->IsUndefined()) { args.GetReturnValue().Set(ToString("NULL")); return; } PG_TRY(); { result = quote_literal_cstr(instr); } PG_CATCH(); { throw pg_error(); } PG_END_TRY(); args.GetReturnValue().Set(ToString(result)); } /* * plv8.quote_ident(str) */ static void plv8_QuoteIdent(const FunctionCallbackInfo& args) { if (args.Length() < 1) { args.GetReturnValue().Set(Undefined(plv8_isolate)); return; } CString instr(args[0]); const char *result; PG_TRY(); { result = quote_identifier(instr); } PG_CATCH(); { throw pg_error(); } PG_END_TRY(); args.GetReturnValue().Set(ToString(result)); }