1

PostgreSQLでは、Cで次のストアドプロシージャを実装しました。

extern "C" DLLEXPORT Datum
selectServeralRows(PG_FUNCTION_ARGS)
{
    FuncCallContext     *funcctx;
    int                  call_cntr;
    int                  max_calls;
    TupleDesc            tupdesc;
    AttInMetadata       *attinmeta;

    /* stuff done only on the first call of the function */
    if (SRF_IS_FIRSTCALL())
    {
        MemoryContext   oldcontext;

        /* create a function context for cross-call persistence */
        funcctx = SRF_FIRSTCALL_INIT();

        /* switch to memory context appropriate for multiple function calls */
        oldcontext = MemoryContextSwitchTo(funcctx->multi_call_memory_ctx);

        /* total number of tuples to be returned */
        funcctx->max_calls = 1;

        /* Build a tuple descriptor for our result type */
        if (get_call_result_type(fcinfo, NULL, &tupdesc) != TYPEFUNC_COMPOSITE)
            ereport(ERROR,
                    (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
                     errmsg("function returning record called in context "
                        "that cannot accept type record")));

        /*
         * generate attribute metadata needed later to produce tuples from raw
         * C strings
         */
        attinmeta = TupleDescGetAttInMetadata(tupdesc);
        funcctx->attinmeta = attinmeta;

        MemoryContextSwitchTo(oldcontext);
    }

    /* stuff done on every call of the function */
    funcctx = SRF_PERCALL_SETUP();

    if (funcctx->call_cntr < funcctx->max_calls)    /* do when there is more left to send */
    {
        Datum* val = (Datum*)palloc(2 * sizeof(Datum));
        HeapTuple    tuple;
        Datum        result;
        bool    nulls[2]={false,false};

        char * n = new char[2]; 
        n[0] = '1';
        n[1] = '\0';
        char * m = new char[2];
        m[0] = '2';
        n[1] = '\0';

        val[0] = CStringGetTextDatum(m);
        val[1] = CStringGetTextDatum(n);

        /* build a tuple */
        tuple = heap_form_tuple(tupdesc, val, nulls);

        /* make the tuple into a datum */
        result = TupleGetDatum(funcctx->slot, tuple);

        /* clean up (this is not really necessary) */

       SRF_RETURN_NEXT(funcctx, result);
    }
else
       SRF_RETURN_DONE(funcctx);
}

コードはこことほとんど同じです:http ://www.postgresql.org/docs/8.4/static/xfunc-c.html

プロシージャが1行だけを返す場合、すべてが正常であり、1行のテーブルが必要です。しかし、このように1行を変更すると

/* total number of tuples to be returned */
funcctx->max_calls = 2;

クエリの実行は次のメッセージでクラッシュします:

プログラム受信信号EXC_BAD_ACCESS、メモリにアクセスできませんでした。理由:アドレスのKERN_INVALID_ADDRESS:0x000000000000041a 0x0000000100002d8b in heap_form_tuple()

コードをステップスルーすると、クラッシュするまで何も無効なポインターであることがわかります。そのため、私は少し無知です。私が監督したことは他にありますか?

編集:関数はpsqlで次のように呼び出されます:

select (selectServeralRows()).*

編集:関数のSQL定義:

CREATE OR REPLACE FUNCTION selectServeralRows()
RETURNS TABLE(k character varying(20), j character varying(20)) AS
'/opt/local/lib/postgresql84/Debug/libSeveralRows', 'selectServeralRows'
LANGUAGE c STABLE STRICT;
4

1 に答える 1

2

省略したようです

 tuple = BuildTupleFromCStrings(funcctx->attinmeta, val);

電話の前にTupleGetDatum(...)電話してください。タプル変数は、最初の呼び出しを除いて、まだ初期化されていません。

また、Datum* val = (Datum*)palloc(2 * sizeof(Datum));おそらく

char **val;
val = palloc (2 * sizeof *val);

また、n配列とm配列も同様になります。

char n[2] ="1", m[2] = "2";
val[0] = n;
val[1] = m;

そして、あなたはへの呼び出しの後にメモリを解放することができますheap_form_tuple(tupdesc, val, nulls);

pfree(val);

IMHO'val'は、n[]やm[]と同様に、自動(「スタック」)変数にすることもできます。

于 2012-04-29T16:11:15.347 に答える