1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
|
/*
* pqStubInit.c --
*
* Stubs tables for the foreign PostgreSQL libraries so that
* Tcl extensions can use them without the linker's knowing about them.
*
* @CREATED@ 2015-06-26 12:55:15Z by genExtStubs.tcl from ../generic/pqStubDefs.txt
*
* Copyright (c) 2010 by Kevin B. Kenny.
*
* Please refer to the file, 'license.terms' for the conditions on
* redistribution of this file and for a DISCLAIMER OF ALL WARRANTIES.
*
*-----------------------------------------------------------------------------
*/
#include <tcl.h>
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#endif
#include "fakepq.h"
/*
* Static data used in this file
*/
/*
* Names of the libraries that might contain the PostgreSQL API
*/
#if defined(__CYGWIN__) && !defined(LIBPREFIX)
# define LIBPREFIX "cyg"
#else
# define LIBPREFIX "lib"
#endif
static const char *const pqStubLibNames[] = {
/* @LIBNAMES@: DO NOT EDIT THESE NAMES */
"pq", NULL
/* @END@ */
};
/* ABI Version numbers of the PostgreSQL API that we can cope with */
static const char pqSuffixes[][4] = {
"", ".5"
};
/* Names of the functions that we need from PostgreSQL */
static const char *const pqSymbolNames[] = {
/* @SYMNAMES@: DO NOT EDIT THESE NAMES */
"pg_encoding_to_char",
"PQclear",
"PQclientEncoding",
"PQcmdTuples",
"PQconnectdb",
"PQerrorMessage",
"PQdescribePrepared",
"PQexec",
"PQexecPrepared",
"PQdb",
"PQfinish",
"PQfname",
"PQfnumber",
"PQftype",
"PQgetisnull",
"PQgetlength",
"PQgetvalue",
"PQhost",
"PQnfields",
"PQnparams",
"PQntuples",
"PQoptions",
"PQparamtype",
"PQpass",
"PQport",
"PQprepare",
"PQresultErrorField",
"PQresultStatus",
"PQsetClientEncoding",
"PQsetNoticeProcessor",
"PQstatus",
"PQuser",
"PQtty",
NULL
/* @END@ */
};
/*
* Table containing pointers to the functions named above.
*/
static pqStubDefs pqStubsTable;
const pqStubDefs* pqStubs = &pqStubsTable;
/*
*-----------------------------------------------------------------------------
*
* PQInitStubs --
*
* Initialize the Stubs table for the PostgreSQL API
*
* Results:
* Returns the handle to the loaded PostgreSQL client library, or NULL
* if the load is unsuccessful. Leaves an error message in the
* interpreter.
*
*-----------------------------------------------------------------------------
*/
MODULE_SCOPE Tcl_LoadHandle
PostgresqlInitStubs(Tcl_Interp* interp)
{
int i;
size_t j;
int status; /* Status of Tcl library calls */
Tcl_Obj* path; /* Path name of a module to be loaded */
Tcl_Obj* shlibext; /* Extension to use for load modules */
Tcl_LoadHandle handle = NULL;
/* Handle to a load module */
/* Determine the shared library extension */
status = Tcl_EvalEx(interp, "::info sharedlibextension", -1,
TCL_EVAL_GLOBAL);
if (status != TCL_OK) return NULL;
shlibext = Tcl_GetObjResult(interp);
Tcl_IncrRefCount(shlibext);
/* Walk the list of possible library names to find an PostgreSQL client */
status = TCL_ERROR;
for (i = 0; status == TCL_ERROR && pqStubLibNames[i] != NULL; ++i) {
for (j = 0; status == TCL_ERROR && (j < sizeof(pqSuffixes)/sizeof(pqSuffixes[0])); ++j) {
path = Tcl_NewStringObj(LIBPREFIX, -1);
Tcl_AppendToObj(path, pqStubLibNames[i], -1);
#ifdef __CYGWIN__
if (*pqSuffixes[j]) {
Tcl_AppendToObj(path, "-", -1);
Tcl_AppendToObj(path, pqSuffixes[j]+1, -1);
}
#endif
Tcl_AppendObjToObj(path, shlibext);
#ifndef __CYGWIN__
Tcl_AppendToObj(path, pqSuffixes[j], -1);
#endif
Tcl_IncrRefCount(path);
/* Try to load a client library and resolve symbols within it. */
Tcl_ResetResult(interp);
status = Tcl_LoadFile(interp, path, pqSymbolNames, 0,
&pqStubsTable, &handle);
Tcl_DecrRefCount(path);
}
}
/*
* Either we've successfully loaded a library (status == TCL_OK),
* or we've run out of library names (in which case status==TCL_ERROR
* and the error message reflects the last unsuccessful load attempt).
*/
Tcl_DecrRefCount(shlibext);
if (status != TCL_OK) {
return NULL;
}
return handle;
}
|