pgmodule.c
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:51k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*
  2.  * PyGres, version 2.2 A Python interface for PostgreSQL database. Written by
  3.  * D'Arcy J.M. Cain, (darcy@druid.net).  Based heavily on code written by
  4.  * Pascal Andre, andre@chimay.via.ecp.fr. Copyright (c) 1995, Pascal Andre
  5.  * (andre@via.ecp.fr).
  6.  *
  7.  * Permission to use, copy, modify, and distribute this software and its
  8.  * documentation for any purpose, without fee, and without a written
  9.  * agreement is hereby granted, provided that the above copyright notice and
  10.  * this paragraph and the following two paragraphs appear in all copies or in
  11.  * any new file that contains a substantial portion of this file.
  12.  *
  13.  * IN NO EVENT SHALL THE AUTHOR BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
  14.  * SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS,
  15.  * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE
  16.  * AUTHOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  17.  *
  18.  * THE AUTHOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED
  19.  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  20.  * PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE
  21.  * AUTHOR HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
  22.  * ENHANCEMENTS, OR MODIFICATIONS.
  23.  *
  24.  * Further modifications copyright 1997, 1998, 1999 by D'Arcy J.M. Cain
  25.  * (darcy@druid.net) subject to the same terms and conditions as above.
  26.  *
  27.  */
  28. #include <Python.h>
  29. #include <libpq-fe.h>
  30. #include <libpq/libpq-fs.h>
  31. #include <stdio.h>
  32. #include <stdlib.h>
  33. #include <string.h>
  34. /* really bad stuff here - I'm so naughty */
  35. /* If you need to you can run mkdefines to get */
  36. /* current defines but it should not have changed */
  37. #define INT2OID 21
  38. #define INT4OID 23
  39. #define OIDOID 26
  40. #define FLOAT4OID 700
  41. #define FLOAT8OID 701
  42. #define CASHOID 790
  43. static PyObject *PGError;
  44. static const char *PyPgVersion = "2.4";
  45. /* taken from fileobject.c */
  46. #define BUF(v) PyString_AS_STRING((PyStringObject *)(v))
  47. /* default values */
  48. #define MODULE_NAME "pgsql"
  49. #define ARRAYSIZE 1
  50. /* flags for object validity checks */
  51. #define CHECK_OPEN 1
  52. #define CHECK_CLOSE 2
  53. #define CHECK_CNX 4
  54. #define CHECK_RESULT 8
  55. #define CHECK_DQL 16
  56. #define MAX_BUFFER_SIZE   8192 /* maximum transaction size */
  57. #ifndef NO_DIRECT
  58. #define DIRECT_ACCESS   1 /* enables direct access functions */
  59. #endif  /* NO_DIRECT */
  60. #ifndef NO_LARGE
  61. #define LARGE_OBJECTS   1 /* enables large objects support */
  62. #endif  /* NO_LARGE */
  63. #ifndef NO_DEF_VAR
  64. #define DEFAULT_VARS   1 /* enables default variables use */
  65. #endif  /* NO_DEF_VAR */
  66. /* --------------------------------------------------------------------- */
  67. /* MODULE GLOBAL VARIABLES */
  68. #ifdef DEFAULT_VARS
  69. static PyObject *pg_default_host; /* default database host */
  70. static PyObject *pg_default_base; /* default database name */
  71. static PyObject *pg_default_opt;/* default connection options */
  72. static PyObject *pg_default_tty;/* default debug tty */
  73. static PyObject *pg_default_port; /* default connection port */
  74. static PyObject *pg_default_user; /* default username */
  75. static PyObject *pg_default_passwd; /* default password */
  76. #endif  /* DEFAULT_VARS */
  77. /* --------------------------------------------------------------------- */
  78. /* OBJECTS DECLARATION */
  79. /* pg connection object */
  80. typedef struct
  81. {
  82. PyObject_HEAD
  83. int valid; /* validity flag */
  84. PGconn    *cnx; /* PostGres connection handle */
  85. } pgobject;
  86. staticforward PyTypeObject PgType;
  87. #define is_pgobject(v) ((v)->ob_type == &PgType)
  88. /* pg query object */
  89. typedef struct
  90. {
  91. PyObject_HEAD
  92. PGresult   *last_result; /* last result content */
  93. } pgqueryobject;
  94. staticforward PyTypeObject PgQueryType;
  95. #define is_pgqueryobject(v) ((v)->ob_type == &PgQueryType)
  96. #ifdef LARGE_OBJECTS
  97. /* pg large object */
  98. typedef struct
  99. {
  100. PyObject_HEAD
  101. pgobject * pgcnx; /* parent connection object */
  102. Oid lo_oid; /* large object oid */
  103. int lo_fd; /* large object fd */
  104. } pglargeobject;
  105. staticforward PyTypeObject PglargeType;
  106. #define is_pglargeobject(v) ((v)->ob_type == &PglargeType)
  107. #endif  /* LARGE_OBJECTS */
  108. /* --------------------------------------------------------------------- */
  109. /* INTERNAL FUNCTIONS */
  110. /* checks connection validity */
  111. static int
  112. check_cnx_obj(pgobject * self)
  113. {
  114. if (!self->valid)
  115. {
  116. PyErr_SetString(PGError, "connection has been closed");
  117. return 0;
  118. }
  119. return 1;
  120. }
  121. #ifdef LARGE_OBJECTS
  122. /* checks large object validity */
  123. static int
  124. check_lo_obj(pglargeobject * self, int level)
  125. {
  126. if (!check_cnx_obj(self->pgcnx))
  127. return 0;
  128. if (!self->lo_oid)
  129. {
  130. PyErr_SetString(PGError, "object is not valid (null oid).");
  131. return 0;
  132. }
  133. if (level & CHECK_OPEN)
  134. {
  135. if (self->lo_fd < 0)
  136. {
  137. PyErr_SetString(PyExc_IOError, "object is not opened.");
  138. return 0;
  139. }
  140. }
  141. if (level & CHECK_CLOSE)
  142. {
  143. if (self->lo_fd >= 0)
  144. {
  145. PyErr_SetString(PyExc_IOError, "object is already opened.");
  146. return 0;
  147. }
  148. }
  149. return 1;
  150. }
  151. #endif  /* LARGE_OBJECTS */
  152. /* --------------------------------------------------------------------- */
  153. /* PG CONNECTION OBJECT IMPLEMENTATION */
  154. #ifdef LARGE_OBJECTS
  155. /* constructor (internal use only) */
  156. static pglargeobject *
  157. pglarge_new(pgobject * pgcnx, Oid oid)
  158. {
  159. pglargeobject *npglo;
  160. if ((npglo = PyObject_NEW(pglargeobject, &PglargeType)) == NULL)
  161. return NULL;
  162. Py_XINCREF(pgcnx);
  163. npglo->pgcnx = pgcnx;
  164. npglo->lo_fd = -1;
  165. npglo->lo_oid = oid;
  166. return npglo;
  167. }
  168. /* destructor */
  169. static void
  170. pglarge_dealloc(pglargeobject * self)
  171. {
  172. if (self->lo_fd >= 0 && check_cnx_obj(self->pgcnx))
  173. lo_close(self->pgcnx->cnx, self->lo_fd);
  174. Py_XDECREF(self->pgcnx);
  175. PyMem_DEL(self);
  176. }
  177. /* opens large object */
  178. static char pglarge_open__doc__[] =
  179. "open(mode) -- open access to large object with specified mode "
  180. "(INV_READ, INV_WRITE constants defined by module).";
  181. static PyObject *
  182. pglarge_open(pglargeobject * self, PyObject * args)
  183. {
  184. int mode,
  185. fd;
  186. /* check validity */
  187. if (!check_lo_obj(self, CHECK_CLOSE))
  188. return NULL;
  189. /* gets arguments */
  190. if (!PyArg_ParseTuple(args, "i", &mode))
  191. {
  192. PyErr_SetString(PyExc_TypeError, "open(mode), with mode(integer).");
  193. return NULL;
  194. }
  195. /* opens large object */
  196. if ((fd = lo_open(self->pgcnx->cnx, self->lo_oid, mode)) < 0)
  197. {
  198. PyErr_SetString(PyExc_IOError, "can't open large object.");
  199. return NULL;
  200. }
  201. self->lo_fd = fd;
  202. /* no error : returns Py_None */
  203. Py_INCREF(Py_None);
  204. return Py_None;
  205. }
  206. /* close large object */
  207. static char pglarge_close__doc__[] =
  208. "close() -- close access to large object data.";
  209. static PyObject *
  210. pglarge_close(pglargeobject * self, PyObject * args)
  211. {
  212. /* checks args */
  213. if (!PyArg_ParseTuple(args, ""))
  214. {
  215. PyErr_SetString(PyExc_SyntaxError,
  216. "method close() takes no parameters.");
  217. return NULL;
  218. }
  219. /* checks validity */
  220. if (!check_lo_obj(self, CHECK_OPEN))
  221. return NULL;
  222. /* closes large object */
  223. if (lo_close(self->pgcnx->cnx, self->lo_fd))
  224. {
  225. PyErr_SetString(PyExc_IOError, "error while closing large object fd.");
  226. return NULL;
  227. }
  228. self->lo_fd = -1;
  229. /* no error : returns Py_None */
  230. Py_INCREF(Py_None);
  231. return Py_None;
  232. }
  233. /* reads from large object */
  234. static char pglarge_read__doc__[] =
  235. "read(integer) -- read from large object to sized string. "
  236. "Object must be opened in read mode before calling this method.";
  237. static PyObject *
  238. pglarge_read(pglargeobject * self, PyObject * args)
  239. {
  240. int size;
  241. PyObject   *buffer;
  242. /* checks validity */
  243. if (!check_lo_obj(self, CHECK_OPEN))
  244. return NULL;
  245. /* gets arguments */
  246. if (!PyArg_ParseTuple(args, "i", &size))
  247. {
  248. PyErr_SetString(PyExc_TypeError, "read(size), wih size (integer).");
  249. return NULL;
  250. }
  251. if (size <= 0)
  252. {
  253. PyErr_SetString(PyExc_ValueError, "size must be positive.");
  254. return NULL;
  255. }
  256. /* allocate buffer and runs read */
  257. buffer = PyString_FromStringAndSize((char *) NULL, size);
  258. if ((size = lo_read(self->pgcnx->cnx, self->lo_fd, BUF(buffer), size)) < 0)
  259. {
  260. PyErr_SetString(PyExc_IOError, "error while reading.");
  261. Py_XDECREF(buffer);
  262. return NULL;
  263. }
  264. /* resize buffer and returns it */
  265. _PyString_Resize(&buffer, size);
  266. return buffer;
  267. }
  268. /* write to large object */
  269. static char pglarge_write__doc__[] =
  270. "write(string) -- write sized string to large object. "
  271. "Object must be opened in read mode before calling this method.";
  272. static PyObject *
  273. pglarge_write(pglargeobject * self, PyObject * args)
  274. {
  275. char    *buffer;
  276. int size;
  277. /* checks validity */
  278. if (!check_lo_obj(self, CHECK_OPEN))
  279. return NULL;
  280. /* gets arguments */
  281. if (!PyArg_ParseTuple(args, "s", &buffer))
  282. {
  283. PyErr_SetString(PyExc_TypeError,
  284. "write(buffer), with buffer (sized string).");
  285. return NULL;
  286. }
  287. /* sends query */
  288. if ((size = lo_write(self->pgcnx->cnx, self->lo_fd, buffer,
  289.  strlen(buffer))) < strlen(buffer))
  290. {
  291. PyErr_SetString(PyExc_IOError, "buffer truncated during write.");
  292. return NULL;
  293. }
  294. /* no error : returns Py_None */
  295. Py_INCREF(Py_None);
  296. return Py_None;
  297. }
  298. /* go to position in large object */
  299. static char pglarge_seek__doc__[] =
  300. "seek(off, whence) -- move to specified position. Object must be opened "
  301. "before calling this method. whence can be SEEK_SET, SEEK_CUR or SEEK_END, "
  302. "constants defined by module.";
  303. static PyObject *
  304. pglarge_lseek(pglargeobject * self, PyObject * args)
  305. {
  306. /* offset and whence are initialized to keep compiler happy */
  307. int ret,
  308. offset = 0,
  309. whence = 0;
  310. /* checks validity */
  311. if (!check_lo_obj(self, CHECK_OPEN))
  312. return NULL;
  313. /* gets arguments */
  314. if (!PyArg_ParseTuple(args, "ii", &offset, &whence))
  315. {
  316. PyErr_SetString(PyExc_TypeError,
  317. "lseek(offset, whence), with offset and whence (integers).");
  318. return NULL;
  319. }
  320. /* sends query */
  321. if ((ret = lo_lseek(self->pgcnx->cnx, self->lo_fd, offset, whence)) == -1)
  322. {
  323. PyErr_SetString(PyExc_IOError, "error while moving cursor.");
  324. return NULL;
  325. }
  326. /* returns position */
  327. return PyInt_FromLong(ret);
  328. }
  329. /* gets large object size */
  330. static char pglarge_size__doc__[] =
  331. "size() -- return large object size. "
  332. "Object must be opened before calling this method.";
  333. static PyObject *
  334. pglarge_size(pglargeobject * self, PyObject * args)
  335. {
  336. int start,
  337. end;
  338. /* checks args */
  339. if (!PyArg_ParseTuple(args, ""))
  340. {
  341. PyErr_SetString(PyExc_SyntaxError,
  342. "method size() takes no parameters.");
  343. return NULL;
  344. }
  345. /* checks validity */
  346. if (!check_lo_obj(self, CHECK_OPEN))
  347. return NULL;
  348. /* gets current position */
  349. if ((start = lo_tell(self->pgcnx->cnx, self->lo_fd)) == -1)
  350. {
  351. PyErr_SetString(PyExc_IOError, "error while getting current position.");
  352. return NULL;
  353. }
  354. /* gets end position */
  355. if ((end = lo_lseek(self->pgcnx->cnx, self->lo_fd, 0, SEEK_END)) == -1)
  356. {
  357. PyErr_SetString(PyExc_IOError, "error while getting end position.");
  358. return NULL;
  359. }
  360. /* move back to start position */
  361. if ((start = lo_lseek(self->pgcnx->cnx, self->lo_fd, start, SEEK_SET)) == -1)
  362. {
  363. PyErr_SetString(PyExc_IOError,
  364. "error while moving back to first position.");
  365. return NULL;
  366. }
  367. /* returns size */
  368. return PyInt_FromLong(end);
  369. }
  370. /* gets large object cursor position */
  371. static char pglarge_tell__doc__[] =
  372. "tell() -- give current position in large object. "
  373. "Object must be opened before calling this method.";
  374. static PyObject *
  375. pglarge_tell(pglargeobject * self, PyObject * args)
  376. {
  377. int start;
  378. /* checks args */
  379. if (!PyArg_ParseTuple(args, ""))
  380. {
  381. PyErr_SetString(PyExc_SyntaxError,
  382. "method tell() takes no parameters.");
  383. return NULL;
  384. }
  385. /* checks validity */
  386. if (!check_lo_obj(self, CHECK_OPEN))
  387. return NULL;
  388. /* gets current position */
  389. if ((start = lo_tell(self->pgcnx->cnx, self->lo_fd)) == -1)
  390. {
  391. PyErr_SetString(PyExc_IOError, "error while getting position.");
  392. return NULL;
  393. }
  394. /* returns size */
  395. return PyInt_FromLong(start);
  396. }
  397. /* exports large object as unix file */
  398. static char pglarge_export__doc__[] =
  399. "export(string) -- export large object data to specified file. "
  400. "Object must be closed when calling this method.";
  401. static PyObject *
  402. pglarge_export(pglargeobject * self, PyObject * args)
  403. {
  404. char    *name;
  405. /* checks validity */
  406. if (!check_lo_obj(self, CHECK_CLOSE))
  407. return NULL;
  408. /* gets arguments */
  409. if (!PyArg_ParseTuple(args, "s", &name))
  410. {
  411. PyErr_SetString(PyExc_TypeError,
  412. "export(filename), with filename (string).");
  413. return NULL;
  414. }
  415. /* runs command */
  416. if (!lo_export(self->pgcnx->cnx, self->lo_oid, name))
  417. {
  418. PyErr_SetString(PyExc_IOError, "error while exporting large object.");
  419. return NULL;
  420. }
  421. Py_INCREF(Py_None);
  422. return Py_None;
  423. }
  424. /* deletes a large object */
  425. static char pglarge_unlink__doc__[] =
  426. "unlink() -- destroy large object. "
  427. "Object must be closed when calling this method.";
  428. static PyObject *
  429. pglarge_unlink(pglargeobject * self, PyObject * args)
  430. {
  431. /* checks args */
  432. if (!PyArg_ParseTuple(args, ""))
  433. {
  434. PyErr_SetString(PyExc_SyntaxError,
  435. "method unlink() takes no parameters.");
  436. return NULL;
  437. }
  438. /* checks validity */
  439. if (!check_lo_obj(self, CHECK_CLOSE))
  440. return NULL;
  441. /* deletes the object, invalidate it on success */
  442. if (!lo_unlink(self->pgcnx->cnx, self->lo_oid))
  443. {
  444. PyErr_SetString(PyExc_IOError, "error while unlinking large object");
  445. return NULL;
  446. }
  447. self->lo_oid = 0;
  448. Py_INCREF(Py_None);
  449. return Py_None;
  450. }
  451. /* large object methods */
  452. static struct PyMethodDef pglarge_methods[] = {
  453. {"open", (PyCFunction) pglarge_open, 1, pglarge_open__doc__},
  454. {"close", (PyCFunction) pglarge_close, 1, pglarge_close__doc__},
  455. {"read", (PyCFunction) pglarge_read, 1, pglarge_read__doc__},
  456. {"write", (PyCFunction) pglarge_write, 1, pglarge_write__doc__},
  457. {"seek", (PyCFunction) pglarge_lseek, 1, pglarge_seek__doc__},
  458. {"size", (PyCFunction) pglarge_size, 1, pglarge_size__doc__},
  459. {"tell", (PyCFunction) pglarge_tell, 1, pglarge_tell__doc__},
  460. {"export", (PyCFunction) pglarge_export, 1, pglarge_export__doc__},
  461. {"unlink", (PyCFunction) pglarge_unlink, 1, pglarge_unlink__doc__},
  462. {NULL, NULL}
  463. };
  464. /* get attribute */
  465. static PyObject *
  466. pglarge_getattr(pglargeobject * self, char *name)
  467. {
  468. /* list postgreSQL large object fields */
  469. /* associated pg connection object */
  470. if (!strcmp(name, "pgcnx"))
  471. {
  472. if (check_lo_obj(self, 0))
  473. {
  474. Py_INCREF(self->pgcnx);
  475. return (PyObject *) (self->pgcnx);
  476. }
  477. Py_INCREF(Py_None);
  478. return Py_None;
  479. }
  480. /* large object oid */
  481. if (!strcmp(name, "oid"))
  482. {
  483. if (check_lo_obj(self, 0))
  484. return PyInt_FromLong(self->lo_oid);
  485. Py_INCREF(Py_None);
  486. return Py_None;
  487. }
  488. /* error (status) message */
  489. if (!strcmp(name, "error"))
  490. return PyString_FromString(PQerrorMessage(self->pgcnx->cnx));
  491. /* attributes list */
  492. if (!strcmp(name, "__members__"))
  493. {
  494. PyObject   *list = PyList_New(3);
  495. if (list)
  496. {
  497. PyList_SetItem(list, 0, PyString_FromString("oid"));
  498. PyList_SetItem(list, 1, PyString_FromString("pgcnx"));
  499. PyList_SetItem(list, 2, PyString_FromString("error"));
  500. }
  501. return list;
  502. }
  503. /* module name */
  504. if (!strcmp(name, "__module__"))
  505. return PyString_FromString(MODULE_NAME);
  506. /* class name */
  507. if (!strcmp(name, "__class__"))
  508. return PyString_FromString("pglarge");
  509. /* seeks name in methods (fallback) */
  510. return Py_FindMethod(pglarge_methods, (PyObject *) self, name);
  511. }
  512. /* prints query object in human readable format */
  513. static int
  514. pglarge_print(pglargeobject * self, FILE *fp, int flags)
  515. {
  516. char print_buffer[128];
  517. if (self->lo_fd >= 0)
  518. {
  519. snprintf(print_buffer, sizeof(print_buffer),
  520.  "Opened large object, oid %ld", (long) self->lo_oid);
  521. fputs(print_buffer, fp);
  522. }
  523. else
  524. {
  525. snprintf(print_buffer, sizeof(print_buffer),
  526.  "Closed large object, oid %ld", (long) self->lo_oid);
  527. fputs(print_buffer, fp);
  528. }
  529. return 0;
  530. };
  531. /* object type definition */
  532. staticforward PyTypeObject PglargeType = {
  533. PyObject_HEAD_INIT(NULL)
  534. 0, /* ob_size */
  535. "pglarge", /* tp_name */
  536. sizeof(pglargeobject), /* tp_basicsize */
  537. 0, /* tp_itemsize */
  538. /* methods */
  539. (destructor) pglarge_dealloc, /* tp_dealloc */
  540. (printfunc) pglarge_print, /* tp_print */
  541. (getattrfunc) pglarge_getattr, /* tp_getattr */
  542. 0, /* tp_setattr */
  543. 0, /* tp_compare */
  544. 0, /* tp_repr */
  545. 0, /* tp_as_number */
  546. 0, /* tp_as_sequence */
  547. 0, /* tp_as_mapping */
  548. 0, /* tp_hash */
  549. };
  550. #endif  /* LARGE_OBJECTS */
  551. /* --------------------------------------------------------------------- */
  552. /* PG QUERY OBJECT IMPLEMENTATION */
  553. /* connects to a database */
  554. static char connect__doc__[] =
  555. "connect(dbname, host, port, opt, tty) -- connect to a PostgreSQL database "
  556. "using specified parameters (optionals, keywords aware).";
  557. static PyObject *
  558. pgconnect(pgobject * self, PyObject * args, PyObject * dict)
  559. {
  560. static const char *kwlist[] = {"dbname", "host", "port", "opt",
  561. "tty", "user", "passwd", NULL};
  562. char    *pghost,
  563.    *pgopt,
  564.    *pgtty,
  565.    *pgdbname,
  566.    *pguser,
  567.    *pgpasswd;
  568. int pgport;
  569. char port_buffer[20];
  570. pgobject   *npgobj;
  571. pghost = pgopt = pgtty = pgdbname = pguser = pgpasswd = NULL;
  572. pgport = -1;
  573. /*
  574.  * parses standard arguments With the right compiler warnings, this
  575.  * will issue a diagnostic. There is really no way around it.  If I
  576.  * don't declare kwlist as const char *kwlist[] then it complains when
  577.  * I try to assign all those constant strings to it.
  578.  */
  579. if (!PyArg_ParseTupleAndKeywords(args, dict, "|zzlzzzz", kwlist,
  580. &pgdbname, &pghost, &pgport, &pgopt, &pgtty, &pguser, &pgpasswd))
  581. return NULL;
  582. #ifdef DEFAULT_VARS
  583. /* handles defaults variables (for unintialised vars) */
  584. if ((!pghost) && (pg_default_host != Py_None))
  585. pghost = PyString_AsString(pg_default_host);
  586. if ((pgport == -1) && (pg_default_port != Py_None))
  587. pgport = PyInt_AsLong(pg_default_port);
  588. if ((!pgopt) && (pg_default_opt != Py_None))
  589. pgopt = PyString_AsString(pg_default_opt);
  590. if ((!pgtty) && (pg_default_tty != Py_None))
  591. pgtty = PyString_AsString(pg_default_tty);
  592. if ((!pgdbname) && (pg_default_base != Py_None))
  593. pgdbname = PyString_AsString(pg_default_base);
  594. if ((!pguser) && (pg_default_user != Py_None))
  595. pguser = PyString_AsString(pg_default_user);
  596. if ((!pgpasswd) && (pg_default_passwd != Py_None))
  597. pgpasswd = PyString_AsString(pg_default_passwd);
  598. #endif  /* DEFAULT_VARS */
  599. if ((npgobj = PyObject_NEW(pgobject, &PgType)) == NULL)
  600. return NULL;
  601. if (pgport != -1)
  602. {
  603. bzero(port_buffer, sizeof(port_buffer));
  604. sprintf(port_buffer, "%d", pgport);
  605. npgobj->cnx = PQsetdbLogin(pghost, port_buffer, pgopt, pgtty, pgdbname,
  606.    pguser, pgpasswd);
  607. }
  608. else
  609. npgobj->cnx = PQsetdbLogin(pghost, NULL, pgopt, pgtty, pgdbname,
  610.    pguser, pgpasswd);
  611. if (PQstatus(npgobj->cnx) == CONNECTION_BAD)
  612. {
  613. PyErr_SetString(PGError, PQerrorMessage(npgobj->cnx));
  614. Py_XDECREF(npgobj);
  615. return NULL;
  616. }
  617. return (PyObject *) npgobj;
  618. }
  619. /* pgobject methods */
  620. /* destructor */
  621. static void
  622. pg_dealloc(pgobject * self)
  623. {
  624. if (self->cnx)
  625. PQfinish(self->cnx);
  626. PyMem_DEL(self);
  627. }
  628. /* close without deleting */
  629. static char pg_close__doc__[] =
  630. "close() -- close connection. All instances of the connection object and "
  631. "derived objects (queries and large objects) can no longer be used after "
  632. "this call.";
  633. static PyObject *
  634. pg_close(pgobject * self, PyObject * args)
  635. {
  636. /* gets args */
  637. if (!PyArg_ParseTuple(args, ""))
  638. {
  639. PyErr_SetString(PyExc_TypeError, "close().");
  640. return NULL;
  641. }
  642. if (self->cnx)
  643. PQfinish(self->cnx);
  644. self->cnx = NULL;
  645. Py_INCREF(Py_None);
  646. return Py_None;
  647. }
  648. static void
  649. pgquery_dealloc(pgqueryobject * self)
  650. {
  651. if (self->last_result)
  652. PQclear(self->last_result);
  653. PyMem_DEL(self);
  654. }
  655. /* resets connection */
  656. static char pg_reset__doc__[] =
  657. "reset() -- reset connection with current parameters. All derived queries "
  658. "and large objects derived from this connection will not be usable after "
  659. "this call.";
  660. static PyObject *
  661. pg_reset(pgobject * self, PyObject * args)
  662. {
  663. if (!self->cnx)
  664. {
  665. PyErr_SetString(PyExc_TypeError, "Connection is not valid");
  666. return NULL;
  667. }
  668. /* checks args */
  669. if (!PyArg_ParseTuple(args, ""))
  670. {
  671. PyErr_SetString(PyExc_SyntaxError,
  672. "method reset() takes no parameters.");
  673. return NULL;
  674. }
  675. /* resets the connection */
  676. PQreset(self->cnx);
  677. Py_INCREF(Py_None);
  678. return Py_None;
  679. }
  680. /* get connection socket */
  681. static char pg_fileno__doc__[] =
  682. "fileno() -- return database connection socket file handle.";
  683. static PyObject *
  684. pg_fileno(pgobject * self, PyObject * args)
  685. {
  686. if (!self->cnx)
  687. {
  688. PyErr_SetString(PyExc_TypeError, "Connection is not valid");
  689. return NULL;
  690. }
  691. /* checks args */
  692. if (!PyArg_ParseTuple(args, ""))
  693. {
  694. PyErr_SetString(PyExc_SyntaxError,
  695. "method fileno() takes no parameters.");
  696. return NULL;
  697. }
  698. #ifdef NO_PQSOCKET
  699. return PyInt_FromLong((long) self->cnx->sock);
  700. #else
  701. return PyInt_FromLong((long) PQsocket(self->cnx));
  702. #endif
  703. }
  704. /* get number of rows */
  705. static char pgquery_ntuples__doc__[] =
  706. "ntuples() -- returns number of tuples returned by query.";
  707. static PyObject *
  708. pgquery_ntuples(pgqueryobject * self, PyObject * args)
  709. {
  710. /* checks args */
  711. if (!PyArg_ParseTuple(args, ""))
  712. {
  713. PyErr_SetString(PyExc_SyntaxError,
  714. "method ntuples() takes no parameters.");
  715. return NULL;
  716. }
  717. return PyInt_FromLong((long) PQntuples(self->last_result));
  718. }
  719. /* list fields names from query result */
  720. static char pgquery_listfields__doc__[] =
  721. "listfields() -- Lists field names from result.";
  722. static PyObject *
  723. pgquery_listfields(pgqueryobject * self, PyObject * args)
  724. {
  725. int i,
  726. n;
  727. char    *name;
  728. PyObject   *fieldstuple,
  729.    *str;
  730. /* checks args */
  731. if (!PyArg_ParseTuple(args, ""))
  732. {
  733. PyErr_SetString(PyExc_SyntaxError,
  734. "method listfields() takes no parameters.");
  735. return NULL;
  736. }
  737. /* builds tuple */
  738. n = PQnfields(self->last_result);
  739. fieldstuple = PyTuple_New(n);
  740. for (i = 0; i < n; i++)
  741. {
  742. name = PQfname(self->last_result, i);
  743. str = PyString_FromString(name);
  744. PyTuple_SetItem(fieldstuple, i, str);
  745. }
  746. return fieldstuple;
  747. }
  748. /* get field name from last result */
  749. static char pgquery_fieldname__doc__[] =
  750. "fieldname() -- returns name of field from result from its position.";
  751. static PyObject *
  752. pgquery_fieldname(pgqueryobject * self, PyObject * args)
  753. {
  754. int i;
  755. char    *name;
  756. /* gets args */
  757. if (!PyArg_ParseTuple(args, "i", &i))
  758. {
  759. PyErr_SetString(PyExc_TypeError,
  760. "fieldname(number), with number(integer).");
  761. return NULL;
  762. }
  763. /* checks number validity */
  764. if (i >= PQnfields(self->last_result))
  765. {
  766. PyErr_SetString(PyExc_ValueError, "invalid field number.");
  767. return NULL;
  768. }
  769. /* gets fields name and builds object */
  770. name = PQfname(self->last_result, i);
  771. return PyString_FromString(name);
  772. }
  773. /* gets fields number from name in last result */
  774. static char pgquery_fieldnum__doc__[] =
  775. "fieldnum() -- returns position in query for field from its name.";
  776. static PyObject *
  777. pgquery_fieldnum(pgqueryobject * self, PyObject * args)
  778. {
  779. char    *name;
  780. int num;
  781. /* gets args */
  782. if (!PyArg_ParseTuple(args, "s", &name))
  783. {
  784. PyErr_SetString(PyExc_TypeError, "fieldnum(name), with name (string).");
  785. return NULL;
  786. }
  787. /* gets field number */
  788. if ((num = PQfnumber(self->last_result, name)) == -1)
  789. {
  790. PyErr_SetString(PyExc_ValueError, "Unknown field.");
  791. return NULL;
  792. }
  793. return PyInt_FromLong(num);
  794. }
  795. /* retrieves last result */
  796. static char pgquery_getresult__doc__[] =
  797. "getresult() -- Gets the result of a query.  The result is returned "
  798. "as a list of rows, each one a list of fields in the order returned "
  799. "by the server.";
  800. static PyObject *
  801. pgquery_getresult(pgqueryobject * self, PyObject * args)
  802. {
  803. PyObject   *rowtuple,
  804.    *reslist,
  805.    *val;
  806. int i,
  807. j,
  808. m,
  809. n,
  810.    *typ;
  811. /* checks args (args == NULL for an internal call) */
  812. if ((args != NULL) && (!PyArg_ParseTuple(args, "")))
  813. {
  814. PyErr_SetString(PyExc_SyntaxError,
  815. "method getresult() takes no parameters.");
  816. return NULL;
  817. }
  818. /* stores result in tuple */
  819. reslist = PyList_New(0);
  820. m = PQntuples(self->last_result);
  821. n = PQnfields(self->last_result);
  822. if ((typ = malloc(sizeof(int) * n)) == NULL)
  823. {
  824. PyErr_SetString(PyExc_SyntaxError, "memory error in getresult().");
  825. return NULL;
  826. }
  827. for (j = 0; j < n; j++)
  828. {
  829. switch (PQftype(self->last_result, j))
  830. {
  831. case INT2OID:
  832. case INT4OID:
  833. case OIDOID:
  834. typ[j] = 1;
  835. break;
  836. case FLOAT4OID:
  837. case FLOAT8OID:
  838. typ[j] = 2;
  839. break;
  840. case CASHOID:
  841. typ[j] = 3;
  842. break;
  843. default:
  844. typ[j] = 4;
  845. break;
  846. }
  847. }
  848. for (i = 0; i < m; i++)
  849. {
  850. rowtuple = PyTuple_New(n);
  851. for (j = 0; j < n; j++)
  852. {
  853. int k;
  854. char    *s = PQgetvalue(self->last_result, i, j);
  855. char cashbuf[64];
  856. switch (typ[j])
  857. {
  858. case 1:
  859. val = PyInt_FromLong(strtol(s, NULL, 10));
  860. break;
  861. case 2:
  862. val = PyFloat_FromDouble(strtod(s, NULL));
  863. break;
  864. case 3: /* get rid of the '$' and commas */
  865. if (*s == '$') /* there's talk of getting rid of
  866.  * it */
  867. s++;
  868. if ((s[0] == '-' || s[0] == '(') && s[1] == '$')
  869. *(++s) = '-';
  870. for (k = 0; *s; s++)
  871. if (*s != ',')
  872. cashbuf[k++] = *s;
  873. cashbuf[k] = 0;
  874. val = PyFloat_FromDouble(strtod(cashbuf, NULL));
  875. break;
  876. default:
  877. val = PyString_FromString(s);
  878. break;
  879. }
  880. PyTuple_SetItem(rowtuple, j, val);
  881. }
  882. PyList_Append(reslist, rowtuple);
  883. Py_XDECREF(rowtuple);
  884. }
  885. free(typ);
  886. /* returns list */
  887. return reslist;
  888. }
  889. /* retrieves last result as a list of dictionaries*/
  890. static char pgquery_dictresult__doc__[] =
  891. "dictresult() -- Gets the result of a query.  The result is returned "
  892. "as a list of rows, each one a dictionary with the field names used "
  893. "as the labels.";
  894. static PyObject *
  895. pgquery_dictresult(pgqueryobject * self, PyObject * args)
  896. {
  897. PyObject   *dict,
  898.    *reslist,
  899.    *val;
  900. int i,
  901. j,
  902. m,
  903. n,
  904.    *typ;
  905. /* checks args (args == NULL for an internal call) */
  906. if ((args != NULL) && (!PyArg_ParseTuple(args, "")))
  907. {
  908. PyErr_SetString(PyExc_SyntaxError,
  909. "method getresult() takes no parameters.");
  910. return NULL;
  911. }
  912. /* stores result in list */
  913. reslist = PyList_New(0);
  914. m = PQntuples(self->last_result);
  915. n = PQnfields(self->last_result);
  916. if ((typ = malloc(sizeof(int) * n)) == NULL)
  917. {
  918. PyErr_SetString(PyExc_SyntaxError, "memory error in dictresult().");
  919. return NULL;
  920. }
  921. for (j = 0; j < n; j++)
  922. {
  923. switch (PQftype(self->last_result, j))
  924. {
  925. case INT2OID:
  926. case INT4OID:
  927. case OIDOID:
  928. typ[j] = 1;
  929. break;
  930. case FLOAT4OID:
  931. case FLOAT8OID:
  932. typ[j] = 2;
  933. break;
  934. case CASHOID:
  935. typ[j] = 3;
  936. break;
  937. default:
  938. typ[j] = 4;
  939. break;
  940. }
  941. }
  942. for (i = 0; i < m; i++)
  943. {
  944. dict = PyDict_New();
  945. for (j = 0; j < n; j++)
  946. {
  947. int k;
  948. char    *s = PQgetvalue(self->last_result, i, j);
  949. char cashbuf[64];
  950. switch (typ[j])
  951. {
  952. case 1:
  953. val = PyInt_FromLong(strtol(s, NULL, 10));
  954. break;
  955. case 2:
  956. val = PyFloat_FromDouble(strtod(s, NULL));
  957. break;
  958. case 3: /* get rid of the '$' and commas */
  959. if (*s == '$') /* there's talk of getting rid of
  960.  * it */
  961. s++;
  962. if ((s[0] == '-' || s[0] == '(') && s[1] == '$')
  963. *(++s) = '-';
  964. for (k = 0; *s; s++)
  965. if (*s != ',')
  966. cashbuf[k++] = *s;
  967. cashbuf[k] = 0;
  968. val = PyFloat_FromDouble(strtod(cashbuf, NULL));
  969. break;
  970. default:
  971. val = PyString_FromString(s);
  972. break;
  973. }
  974. PyDict_SetItemString(dict, PQfname(self->last_result, j), val);
  975. Py_XDECREF(val);
  976. }
  977. PyList_Append(reslist, dict);
  978. Py_XDECREF(dict);
  979. }
  980. free(typ);
  981. /* returns list */
  982. return reslist;
  983. }
  984. /* gets asynchronous notify */
  985. static char pg_getnotify__doc__[] =
  986. "getnotify() -- get database notify for this connection.";
  987. static PyObject *
  988. pg_getnotify(pgobject * self, PyObject * args)
  989. {
  990. PGnotify   *notify;
  991. PGresult   *result;
  992. PyObject   *notify_result,
  993.    *temp;
  994. if (!self->cnx)
  995. {
  996. PyErr_SetString(PyExc_TypeError, "Connection is not valid");
  997. return NULL;
  998. }
  999. /* checks args */
  1000. if (!PyArg_ParseTuple(args, ""))
  1001. {
  1002. PyErr_SetString(PyExc_SyntaxError,
  1003. "method getnotify() takes no parameters.");
  1004. return NULL;
  1005. }
  1006. /* gets notify and builds result */
  1007. /*
  1008.  * notifies only come back as result of a query, so I send an empty
  1009.  * query
  1010.  */
  1011. result = PQexec(self->cnx, " ");
  1012. if ((notify = PQnotifies(self->cnx)) != NULL)
  1013. {
  1014. notify_result = PyTuple_New(2);
  1015. temp = PyString_FromString(notify->relname);
  1016. PyTuple_SetItem(notify_result, 0, temp);
  1017. temp = PyInt_FromLong(notify->be_pid);
  1018. PyTuple_SetItem(notify_result, 1, temp);
  1019. free(notify);
  1020. }
  1021. else
  1022. {
  1023. Py_INCREF(Py_None);
  1024. notify_result = Py_None;
  1025. }
  1026. PQclear(result);
  1027. /* returns result */
  1028. return notify_result;
  1029. }
  1030. /* database query */
  1031. static char pg_query__doc__[] =
  1032. "query() -- creates a new query object for this connection.";
  1033. static PyObject *
  1034. pg_query(pgobject * self, PyObject * args)
  1035. {
  1036. char    *query;
  1037. PGresult   *result;
  1038. pgqueryobject *npgobj;
  1039. int status;
  1040. if (!self->cnx)
  1041. {
  1042. PyErr_SetString(PyExc_TypeError, "Connection is not valid");
  1043. return NULL;
  1044. }
  1045. /* get query args */
  1046. if (!PyArg_ParseTuple(args, "s", &query))
  1047. {
  1048. PyErr_SetString(PyExc_TypeError, "query(sql), with sql (string).");
  1049. return NULL;
  1050. }
  1051. /* gets result */
  1052. result = PQexec(self->cnx, query);
  1053. /* checks result validity */
  1054. if (!result)
  1055. {
  1056. PyErr_SetString(PyExc_ValueError, PQerrorMessage(self->cnx));
  1057. return NULL;
  1058. }
  1059. /* checks result status */
  1060. if ((status = PQresultStatus(result)) != PGRES_TUPLES_OK)
  1061. {
  1062. const char *str;
  1063. PQclear(result);
  1064. switch (status)
  1065. {
  1066. case PGRES_EMPTY_QUERY:
  1067. PyErr_SetString(PyExc_ValueError, "empty query.");
  1068. break;
  1069. case PGRES_BAD_RESPONSE:
  1070. case PGRES_FATAL_ERROR:
  1071. case PGRES_NONFATAL_ERROR:
  1072. PyErr_SetString(PGError, PQerrorMessage(self->cnx));
  1073. break;
  1074. case PGRES_COMMAND_OK: /* could be an INSERT */
  1075. if (*(str = PQoidStatus(result)) == 0) /* nope */
  1076. {
  1077. Py_INCREF(Py_None);
  1078. return Py_None;
  1079. }
  1080. /* otherwise, return the oid */
  1081. return PyInt_FromLong(strtol(str, NULL, 10));
  1082. case PGRES_COPY_OUT: /* no data will be received */
  1083. case PGRES_COPY_IN:
  1084. Py_INCREF(Py_None);
  1085. return Py_None;
  1086. default:
  1087. PyErr_SetString(PGError, "internal error: "
  1088. "unknown result status.");
  1089. break;
  1090. }
  1091. return NULL; /* error detected on query */
  1092. }
  1093. if ((npgobj = PyObject_NEW(pgqueryobject, &PgQueryType)) == NULL)
  1094. return NULL;
  1095. /* stores result and returns object */
  1096. npgobj->last_result = result;
  1097. return (PyObject *) npgobj;
  1098. }
  1099. #ifdef DIRECT_ACCESS
  1100. static char pg_putline__doc__[] =
  1101. "putline() -- sends a line directly to the backend";
  1102. /* direct acces function : putline */
  1103. static PyObject *
  1104. pg_putline(pgobject * self, PyObject * args)
  1105. {
  1106. char    *line;
  1107. if (!self->cnx)
  1108. {
  1109. PyErr_SetString(PyExc_TypeError, "Connection is not valid");
  1110. return NULL;
  1111. }
  1112. /* reads args */
  1113. if (!PyArg_ParseTuple(args, "s", &line))
  1114. {
  1115. PyErr_SetString(PyExc_TypeError, "putline(line), with line (string).");
  1116. return NULL;
  1117. }
  1118. /* sends line to backend */
  1119. PQputline(self->cnx, line);
  1120. Py_INCREF(Py_None);
  1121. return Py_None;
  1122. }
  1123. /* direct access function : getline */
  1124. static char pg_getline__doc__[] =
  1125. "getline() -- gets a line directly from the backend.";
  1126. static PyObject *
  1127. pg_getline(pgobject * self, PyObject * args)
  1128. {
  1129. char line[MAX_BUFFER_SIZE];
  1130. PyObject   *str = NULL; /* GCC */
  1131. int ret;
  1132. if (!self->cnx)
  1133. {
  1134. PyErr_SetString(PyExc_TypeError, "Connection is not valid");
  1135. return NULL;
  1136. }
  1137. /* checks args */
  1138. if (!PyArg_ParseTuple(args, ""))
  1139. {
  1140. PyErr_SetString(PyExc_SyntaxError,
  1141. "method getline() takes no parameters.");
  1142. return NULL;
  1143. }
  1144. /* gets line */
  1145. switch (PQgetline(self->cnx, line, MAX_BUFFER_SIZE))
  1146. {
  1147. case 0:
  1148. str = PyString_FromString(line);
  1149. break;
  1150. case 1:
  1151. PyErr_SetString(PyExc_MemoryError, "buffer overflow");
  1152. str = NULL;
  1153. break;
  1154. case EOF:
  1155. Py_INCREF(Py_None);
  1156. str = Py_None;
  1157. break;
  1158. }
  1159. return str;
  1160. }
  1161. /* direct access function : end copy */
  1162. static char pg_endcopy__doc__[] =
  1163. "endcopy() -- synchronizes client and server";
  1164. static PyObject *
  1165. pg_endcopy(pgobject * self, PyObject * args)
  1166. {
  1167. if (!self->cnx)
  1168. {
  1169. PyErr_SetString(PyExc_TypeError, "Connection is not valid");
  1170. return NULL;
  1171. }
  1172. /* checks args */
  1173. if (!PyArg_ParseTuple(args, ""))
  1174. {
  1175. PyErr_SetString(PyExc_SyntaxError,
  1176. "method endcopy() takes no parameters.");
  1177. return NULL;
  1178. }
  1179. /* ends direct copy */
  1180. PQendcopy(self->cnx);
  1181. Py_INCREF(Py_None);
  1182. return Py_None;
  1183. }
  1184. #endif  /* DIRECT_ACCESS */
  1185. static PyObject *
  1186. pgquery_print(pgqueryobject * self, FILE *fp, int flags)
  1187. {
  1188. PQprintOpt op;
  1189. memset(&op, 0, sizeof(op));
  1190. op.align = 1;
  1191. op.header = 1;
  1192. op.fieldSep = "|";
  1193. op.pager = 1;
  1194. PQprint(fp, self->last_result, &op);
  1195. return 0;
  1196. }
  1197. /* insert table */
  1198. static char pg_inserttable__doc__[] =
  1199. "inserttable(string, list) -- insert list in table. The fields in the list "
  1200. "must be in the same order as in the table.";
  1201. static PyObject *
  1202. pg_inserttable(pgobject * self, PyObject * args)
  1203. {
  1204. PGresult   *result;
  1205. char    *table,
  1206.    *buffer,
  1207.    *temp;
  1208. char temp_buffer[256];
  1209. PyObject   *list,
  1210.    *sublist,
  1211.    *item;
  1212. PyObject   *(*getitem) (PyObject *, int);
  1213. PyObject   *(*getsubitem) (PyObject *, int);
  1214. int i,
  1215. j;
  1216. if (!self->cnx)
  1217. {
  1218. PyErr_SetString(PyExc_TypeError, "Connection is not valid");
  1219. return NULL;
  1220. }
  1221. /* gets arguments */
  1222. if (!PyArg_ParseTuple(args, "sO:filter", &table, &list))
  1223. {
  1224. PyErr_SetString(PyExc_TypeError,
  1225.   "tableinsert(table, content), with table (string) "
  1226. "and content (list).");
  1227. return NULL;
  1228. }
  1229. /* checks list type */
  1230. if (PyTuple_Check(list))
  1231. getitem = PyTuple_GetItem;
  1232. else if (PyList_Check(list))
  1233. getitem = PyList_GetItem;
  1234. else
  1235. {
  1236. PyErr_SetString(PyExc_TypeError,
  1237. "second arg must be some kind of array.");
  1238. return NULL;
  1239. }
  1240. /* checks sublists type */
  1241. for (i = 0; (sublist = getitem(list, i)) != NULL; i++)
  1242. {
  1243. if (!PyTuple_Check(sublist) && !PyList_Check(sublist))
  1244. {
  1245. PyErr_SetString(PyExc_TypeError,
  1246.  "second arg must contain some kind of arrays.");
  1247. return NULL;
  1248. }
  1249. }
  1250. /* allocate buffer */
  1251. if (!(buffer = malloc(MAX_BUFFER_SIZE)))
  1252. {
  1253. PyErr_SetString(PyExc_MemoryError, "can't allocate insert buffer.");
  1254. return NULL;
  1255. }
  1256. /* starts query */
  1257. sprintf(buffer, "copy %s from stdin", table);
  1258. if (!(result = PQexec(self->cnx, buffer)))
  1259. {
  1260. free(buffer);
  1261. PyErr_SetString(PyExc_ValueError, PQerrorMessage(self->cnx));
  1262. return NULL;
  1263. }
  1264. PQclear(result);
  1265. /* feeds table */
  1266. for (i = 0; (sublist = getitem(list, i)) != NULL; i++)
  1267. {
  1268. if (PyTuple_Check(sublist))
  1269. getsubitem = PyTuple_GetItem;
  1270. else
  1271. getsubitem = PyList_GetItem;
  1272. /* builds insert line */
  1273. buffer[0] = 0;
  1274. for (j = 0; (item = getsubitem(sublist, j)) != NULL; j++)
  1275. {
  1276. /* converts item to string */
  1277. if (PyString_Check(item))
  1278. PyArg_ParseTuple(item, "s", &temp);
  1279. else if (PyInt_Check(item))
  1280. {
  1281. int k;
  1282. PyArg_ParseTuple(item, "i", &k);
  1283. sprintf(temp_buffer, "%d", k);
  1284. temp = temp_buffer;
  1285. }
  1286. else if (PyLong_Check(item))
  1287. {
  1288. long k;
  1289. PyArg_ParseTuple(item, "l", &k);
  1290. sprintf(temp_buffer, "%ld", k);
  1291. temp = temp_buffer;
  1292. }
  1293. else if (PyFloat_Check(item))
  1294. {
  1295. double k;
  1296. PyArg_ParseTuple(item, "d", &k);
  1297. sprintf(temp_buffer, "%g", k);
  1298. temp = temp_buffer;
  1299. }
  1300. else
  1301. {
  1302. free(buffer);
  1303. PyErr_SetString(PyExc_ValueError,
  1304. "items must be strings, integers, "
  1305. "longs or double (real).");
  1306. return NULL;
  1307. }
  1308. /* concats buffer */
  1309. if (strlen(buffer))
  1310. strncat(buffer, "t", MAX_BUFFER_SIZE - strlen(buffer));
  1311. fprintf(stderr, "Buffer: '%s', Temp: '%s'n", buffer, temp);
  1312. strncat(buffer, temp, MAX_BUFFER_SIZE - strlen(buffer));
  1313. }
  1314. strncat(buffer, "n", MAX_BUFFER_SIZE - strlen(buffer));
  1315. /* sends data */
  1316. PQputline(self->cnx, buffer);
  1317. }
  1318. /* ends query */
  1319. PQputline(self->cnx, ".n");
  1320. PQendcopy(self->cnx);
  1321. free(buffer);
  1322. /* no error : returns nothing */
  1323. Py_INCREF(Py_None);
  1324. return Py_None;
  1325. }
  1326. /* creates large object */
  1327. static char pg_locreate__doc__[] =
  1328. "locreate() -- creates a new large object in the database.";
  1329. static PyObject *
  1330. pg_locreate(pgobject * self, PyObject * args)
  1331. {
  1332. int mode;
  1333. Oid lo_oid;
  1334. /* checks validity */
  1335. if (!check_cnx_obj(self))
  1336. return NULL;
  1337. /* gets arguments */
  1338. if (!PyArg_ParseTuple(args, "i", &mode))
  1339. {
  1340. PyErr_SetString(PyExc_TypeError,
  1341. "locreate(mode), with mode (integer).");
  1342. return NULL;
  1343. }
  1344. /* creates large object */
  1345. lo_oid = lo_creat(self->cnx, mode);
  1346. if (lo_oid == 0)
  1347. {
  1348. PyErr_SetString(PGError, "can't create large object.");
  1349. return NULL;
  1350. }
  1351. return (PyObject *) pglarge_new(self, lo_oid);
  1352. }
  1353. /* init from already known oid */
  1354. static char pg_getlo__doc__[] =
  1355. "getlo(long) -- create a large object instance for the specified oid.";
  1356. static PyObject *
  1357. pg_getlo(pgobject * self, PyObject * args)
  1358. {
  1359. int lo_oid;
  1360. /* checks validity */
  1361. if (!check_cnx_obj(self))
  1362. return NULL;
  1363. /* gets arguments */
  1364. if (!PyArg_ParseTuple(args, "i", &lo_oid))
  1365. {
  1366. PyErr_SetString(PyExc_TypeError, "loopen(oid), with oid (integer).");
  1367. return NULL;
  1368. }
  1369. if (!lo_oid)
  1370. {
  1371. PyErr_SetString(PyExc_ValueError, "the object oid can't be null.");
  1372. return NULL;
  1373. }
  1374. /* creates object */
  1375. return (PyObject *) pglarge_new(self, lo_oid);
  1376. }
  1377. /* import unix file */
  1378. static char pg_loimport__doc__[] =
  1379. "loimport(string) -- create a new large object from specified file.";
  1380. static PyObject *
  1381. pg_loimport(pgobject * self, PyObject * args)
  1382. {
  1383. char    *name;
  1384. Oid lo_oid;
  1385. /* checks validity */
  1386. if (!check_cnx_obj(self))
  1387. return NULL;
  1388. /* gets arguments */
  1389. if (!PyArg_ParseTuple(args, "s", &name))
  1390. {
  1391. PyErr_SetString(PyExc_TypeError, "loimport(name), with name (string).");
  1392. return NULL;
  1393. }
  1394. /* imports file and checks result */
  1395. lo_oid = lo_import(self->cnx, name);
  1396. if (lo_oid == 0)
  1397. {
  1398. PyErr_SetString(PGError, "can't create large object.");
  1399. return NULL;
  1400. }
  1401. return (PyObject *) pglarge_new(self, lo_oid);
  1402. }
  1403. /* connection object methods */
  1404. static struct PyMethodDef pgobj_methods[] = {
  1405. {"query", (PyCFunction) pg_query, 1, pg_query__doc__},
  1406. {"reset", (PyCFunction) pg_reset, 1, pg_reset__doc__},
  1407. {"close", (PyCFunction) pg_close, 1, pg_close__doc__},
  1408. {"fileno", (PyCFunction) pg_fileno, 1, pg_fileno__doc__},
  1409. {"getnotify", (PyCFunction) pg_getnotify, 1, pg_getnotify__doc__},
  1410. {"inserttable", (PyCFunction) pg_inserttable, 1, pg_inserttable__doc__},
  1411. #ifdef DIRECT_ACCESS
  1412. {"putline", (PyCFunction) pg_putline, 1, pg_putline__doc__},
  1413. {"getline", (PyCFunction) pg_getline, 1, pg_getline__doc__},
  1414. {"endcopy", (PyCFunction) pg_endcopy, 1, pg_endcopy__doc__},
  1415. #endif  /* DIRECT_ACCESS */
  1416. #ifdef LARGE_OBJECTS
  1417. {"locreate", (PyCFunction) pg_locreate, 1, pg_locreate__doc__},
  1418. {"getlo", (PyCFunction) pg_getlo, 1, pg_getlo__doc__},
  1419. {"loimport", (PyCFunction) pg_loimport, 1, pg_loimport__doc__},
  1420. #endif  /* LARGE_OBJECTS */
  1421. {NULL, NULL} /* sentinel */
  1422. };
  1423. /* get attribute */
  1424. static PyObject *
  1425. pg_getattr(pgobject * self, char *name)
  1426. {
  1427. /*
  1428.  * Although we could check individually, there are only a few
  1429.  * attributes that don't require a live connection and unless someone
  1430.  * has an urgent need, this will have to do
  1431.  */
  1432. if (!self->cnx)
  1433. {
  1434. PyErr_SetString(PyExc_TypeError, "Connection is not valid");
  1435. return NULL;
  1436. }
  1437. /* list postgreSQL connection fields */
  1438. /* postmaster host */
  1439. if (!strcmp(name, "host"))
  1440. {
  1441. char    *r = PQhost(self->cnx);
  1442. return r ? PyString_FromString(r) : PyString_FromString("localhost");
  1443. }
  1444. /* postmaster port */
  1445. if (!strcmp(name, "port"))
  1446. return PyInt_FromLong(atol(PQport(self->cnx)));
  1447. /* selected database */
  1448. if (!strcmp(name, "db"))
  1449. return PyString_FromString(PQdb(self->cnx));
  1450. /* selected options */
  1451. if (!strcmp(name, "options"))
  1452. return PyString_FromString(PQoptions(self->cnx));
  1453. /* selected postgres tty */
  1454. if (!strcmp(name, "tty"))
  1455. return PyString_FromString(PQtty(self->cnx));
  1456. /* error (status) message */
  1457. if (!strcmp(name, "error"))
  1458. return PyString_FromString(PQerrorMessage(self->cnx));
  1459. /* connection status : 1 - OK, 0 - BAD */
  1460. if (!strcmp(name, "status"))
  1461. return PyInt_FromLong(PQstatus(self->cnx) == CONNECTION_OK ? 1 : 0);
  1462. /* provided user name */
  1463. if (!strcmp(name, "user"))
  1464. return PyString_FromString("Deprecated facility");
  1465. /* return PyString_FromString(fe_getauthname("<unknown user>")); */
  1466. /* attributes list */
  1467. if (!strcmp(name, "__members__"))
  1468. {
  1469. PyObject   *list = PyList_New(8);
  1470. if (list)
  1471. {
  1472. PyList_SetItem(list, 0, PyString_FromString("host"));
  1473. PyList_SetItem(list, 1, PyString_FromString("port"));
  1474. PyList_SetItem(list, 2, PyString_FromString("db"));
  1475. PyList_SetItem(list, 3, PyString_FromString("options"));
  1476. PyList_SetItem(list, 4, PyString_FromString("tty"));
  1477. PyList_SetItem(list, 5, PyString_FromString("error"));
  1478. PyList_SetItem(list, 6, PyString_FromString("status"));
  1479. PyList_SetItem(list, 7, PyString_FromString("user"));
  1480. }
  1481. return list;
  1482. }
  1483. return Py_FindMethod(pgobj_methods, (PyObject *) self, name);
  1484. }
  1485. /* object type definition */
  1486. staticforward PyTypeObject PgType = {
  1487. PyObject_HEAD_INIT(NULL)
  1488. 0, /* ob_size */
  1489. "pgobject", /* tp_name */
  1490. sizeof(pgobject), /* tp_basicsize */
  1491. 0, /* tp_itemsize */
  1492. /* methods */
  1493. (destructor) pg_dealloc, /* tp_dealloc */
  1494. 0, /* tp_print */
  1495. (getattrfunc) pg_getattr, /* tp_getattr */
  1496. 0, /* tp_setattr */
  1497. 0, /* tp_compare */
  1498. 0, /* tp_repr */
  1499. 0, /* tp_as_number */
  1500. 0, /* tp_as_sequence */
  1501. 0, /* tp_as_mapping */
  1502. 0, /* tp_hash */
  1503. };
  1504. /* query object methods */
  1505. static struct PyMethodDef pgquery_methods[] = {
  1506. {"getresult", (PyCFunction) pgquery_getresult, 1, pgquery_getresult__doc__},
  1507. {"dictresult", (PyCFunction) pgquery_dictresult, 1, pgquery_dictresult__doc__},
  1508. {"fieldname", (PyCFunction) pgquery_fieldname, 1, pgquery_fieldname__doc__},
  1509. {"fieldnum", (PyCFunction) pgquery_fieldnum, 1, pgquery_fieldnum__doc__},
  1510. {"listfields", (PyCFunction) pgquery_listfields, 1, pgquery_listfields__doc__},
  1511. {"ntuples", (PyCFunction) pgquery_ntuples, 1, pgquery_ntuples__doc__},
  1512. {NULL, NULL}
  1513. };
  1514. /* gets query object attributes */
  1515. static PyObject *
  1516. pgquery_getattr(pgqueryobject * self, char *name)
  1517. {
  1518. /* list postgreSQL connection fields */
  1519. return Py_FindMethod(pgquery_methods, (PyObject *) self, name);
  1520. }
  1521. /* query type definition */
  1522. staticforward PyTypeObject PgQueryType = {
  1523. PyObject_HEAD_INIT(NULL)
  1524. 0, /* ob_size */
  1525. "pgqueryobject", /* tp_name */
  1526. sizeof(pgqueryobject), /* tp_basicsize */
  1527. 0, /* tp_itemsize */
  1528. /* methods */
  1529. (destructor) pgquery_dealloc, /* tp_dealloc */
  1530. (printfunc) pgquery_print, /* tp_print */
  1531. (getattrfunc) pgquery_getattr, /* tp_getattr */
  1532. 0, /* tp_setattr */
  1533. 0, /* tp_compare */
  1534. 0, /* tp_repr */
  1535. 0, /* tp_as_number */
  1536. 0, /* tp_as_sequence */
  1537. 0, /* tp_as_mapping */
  1538. 0, /* tp_hash */
  1539. };
  1540. /* --------------------------------------------------------------------- */
  1541. /* MODULE FUNCTIONS */
  1542. #ifdef DEFAULT_VARS
  1543. /* gets default host */
  1544. static char getdefhost__doc__[] =
  1545. "get_defhost() -- return default database host.";
  1546. static PyObject *
  1547. pggetdefhost(PyObject * self, PyObject * args)
  1548. {
  1549. /* checks args */
  1550. if (!PyArg_ParseTuple(args, ""))
  1551. {
  1552. PyErr_SetString(PyExc_SyntaxError,
  1553. "method get_defhost() takes no parameter.");
  1554. return NULL;
  1555. }
  1556. Py_XINCREF(pg_default_host);
  1557. return pg_default_host;
  1558. }
  1559. /* sets default host */
  1560. static char setdefhost__doc__[] =
  1561. "set_defhost(string) -- set default database host. Return previous value.";
  1562. static PyObject *
  1563. pgsetdefhost(PyObject * self, PyObject * args)
  1564. {
  1565. char    *temp = NULL;
  1566. PyObject   *old;
  1567. /* gets arguments */
  1568. if (!PyArg_ParseTuple(args, "z", &temp))
  1569. {
  1570. PyErr_SetString(PyExc_TypeError,
  1571. "set_defhost(name), with name (string/None).");
  1572. return NULL;
  1573. }
  1574. /* adjusts value */
  1575. old = pg_default_host;
  1576. if (temp)
  1577. pg_default_host = PyString_FromString(temp);
  1578. else
  1579. {
  1580. Py_INCREF(Py_None);
  1581. pg_default_host = Py_None;
  1582. }
  1583. return old;
  1584. }
  1585. /* gets default base */
  1586. static char getdefbase__doc__[] =
  1587. "get_defbase() -- return default database name.";
  1588. static PyObject *
  1589. pggetdefbase(PyObject * self, PyObject * args)
  1590. {
  1591. /* checks args */
  1592. if (!PyArg_ParseTuple(args, ""))
  1593. {
  1594. PyErr_SetString(PyExc_SyntaxError,
  1595. "method get_defbase() takes no parameter.");
  1596. return NULL;
  1597. }
  1598. Py_XINCREF(pg_default_base);
  1599. return pg_default_base;
  1600. }
  1601. /* sets default base */
  1602. static char setdefbase__doc__[] =
  1603. "set_defbase(string) -- set default database name. Return previous value";
  1604. static PyObject *
  1605. pgsetdefbase(PyObject * self, PyObject * args)
  1606. {
  1607. char    *temp = NULL;
  1608. PyObject   *old;
  1609. /* gets arguments */
  1610. if (!PyArg_ParseTuple(args, "z", &temp))
  1611. {
  1612. PyErr_SetString(PyExc_TypeError,
  1613. "set_defbase(name), with name (string/None).");
  1614. return NULL;
  1615. }
  1616. /* adjusts value */
  1617. old = pg_default_base;
  1618. if (temp)
  1619. pg_default_base = PyString_FromString(temp);
  1620. else
  1621. {
  1622. Py_INCREF(Py_None);
  1623. pg_default_base = Py_None;
  1624. }
  1625. return old;
  1626. }
  1627. /* gets default options */
  1628. static char getdefopt__doc__[] =
  1629. "get_defopt() -- return default database options.";
  1630. static PyObject *
  1631. pggetdefopt(PyObject * self, PyObject * args)
  1632. {
  1633. /* checks args */
  1634. if (!PyArg_ParseTuple(args, ""))
  1635. {
  1636. PyErr_SetString(PyExc_SyntaxError,
  1637. "method get_defopt() takes no parameter.");
  1638. return NULL;
  1639. }
  1640. Py_XINCREF(pg_default_opt);
  1641. return pg_default_opt;
  1642. }
  1643. /* sets default opt */
  1644. static char setdefopt__doc__[] =
  1645. "set_defopt(string) -- set default database options. Return previous value.";
  1646. static PyObject *
  1647. pgsetdefopt(PyObject * self, PyObject * args)
  1648. {
  1649. char    *temp = NULL;
  1650. PyObject   *old;
  1651. /* gets arguments */
  1652. if (!PyArg_ParseTuple(args, "z", &temp))
  1653. {
  1654. PyErr_SetString(PyExc_TypeError,
  1655. "set_defopt(name), with name (string/None).");
  1656. return NULL;
  1657. }
  1658. /* adjusts value */
  1659. old = pg_default_opt;
  1660. if (temp)
  1661. pg_default_opt = PyString_FromString(temp);
  1662. else
  1663. {
  1664. Py_INCREF(Py_None);
  1665. pg_default_opt = Py_None;
  1666. }
  1667. return old;
  1668. }
  1669. /* gets default tty */
  1670. static char getdeftty__doc__[] =
  1671. "get_deftty() -- return default database debug terminal.";
  1672. static PyObject *
  1673. pggetdeftty(PyObject * self, PyObject * args)
  1674. {
  1675. /* checks args */
  1676. if (!PyArg_ParseTuple(args, ""))
  1677. {
  1678. PyErr_SetString(PyExc_SyntaxError,
  1679. "method get_deftty() takes no parameter.");
  1680. return NULL;
  1681. }
  1682. Py_XINCREF(pg_default_tty);
  1683. return pg_default_tty;
  1684. }
  1685. /* sets default tty */
  1686. static char setdeftty__doc__[] =
  1687. "set_deftty(string) -- set default database debug terminal. "
  1688. "Return previous value.";
  1689. static PyObject *
  1690. pgsetdeftty(PyObject * self, PyObject * args)
  1691. {
  1692. char    *temp = NULL;
  1693. PyObject   *old;
  1694. /* gets arguments */
  1695. if (!PyArg_ParseTuple(args, "z", &temp))
  1696. {
  1697. PyErr_SetString(PyExc_TypeError,
  1698. "set_deftty(name), with name (string/None).");
  1699. return NULL;
  1700. }
  1701. /* adjusts value */
  1702. old = pg_default_tty;
  1703. if (temp)
  1704. pg_default_tty = PyString_FromString(temp);
  1705. else
  1706. {
  1707. Py_INCREF(Py_None);
  1708. pg_default_tty = Py_None;
  1709. }
  1710. return old;
  1711. }
  1712. /* gets default username */
  1713. static char getdefuser__doc__[] =
  1714. "get_defuser() -- return default database username.";
  1715. static PyObject *
  1716. pggetdefuser(PyObject * self, PyObject * args)
  1717. {
  1718. /* checks args */
  1719. if (!PyArg_ParseTuple(args, ""))
  1720. {
  1721. PyErr_SetString(PyExc_SyntaxError,
  1722. "method get_defuser() takes no parameter.");
  1723. return NULL;
  1724. }
  1725. Py_XINCREF(pg_default_user);
  1726. return pg_default_user;
  1727. }
  1728. /* sets default username */
  1729. static char setdefuser__doc__[] =
  1730. "set_defuser() -- set default database username. Return previous value.";
  1731. static PyObject *
  1732. pgsetdefuser(PyObject * self, PyObject * args)
  1733. {
  1734. char    *temp = NULL;
  1735. PyObject   *old;
  1736. /* gets arguments */
  1737. if (!PyArg_ParseTuple(args, "z", &temp))
  1738. {
  1739. PyErr_SetString(PyExc_TypeError,
  1740. "set_defuser(name), with name (string/None).");
  1741. return NULL;
  1742. }
  1743. /* adjusts value */
  1744. old = pg_default_user;
  1745. if (temp)
  1746. pg_default_user = PyString_FromString(temp);
  1747. else
  1748. {
  1749. Py_INCREF(Py_None);
  1750. pg_default_user = Py_None;
  1751. }
  1752. return old;
  1753. }
  1754. /* sets default password */
  1755. static char setdefpasswd__doc__[] =
  1756. "set_defpasswd() -- set default database password.";
  1757. static PyObject *
  1758. pgsetdefpasswd(PyObject * self, PyObject * args)
  1759. {
  1760. char    *temp = NULL;
  1761. PyObject   *old;
  1762. /* gets arguments */
  1763. if (!PyArg_ParseTuple(args, "z", &temp))
  1764. {
  1765. PyErr_SetString(PyExc_TypeError,
  1766. "set_defpasswd(password), with password (string/None).");
  1767. return NULL;
  1768. }
  1769. /* adjusts value */
  1770. old = pg_default_passwd;
  1771. if (temp)
  1772. pg_default_passwd = PyString_FromString(temp);
  1773. else
  1774. {
  1775. Py_INCREF(Py_None);
  1776. pg_default_passwd = Py_None;
  1777. }
  1778. Py_INCREF(Py_None);
  1779. return Py_None;
  1780. }
  1781. /* gets default port */
  1782. static char getdefport__doc__[] =
  1783. "get_defport() -- return default database port.";
  1784. static PyObject *
  1785. pggetdefport(PyObject * self, PyObject * args)
  1786. {
  1787. /* checks args */
  1788. if (!PyArg_ParseTuple(args, ""))
  1789. {
  1790. PyErr_SetString(PyExc_SyntaxError,
  1791. "method get_defport() takes no parameter.");
  1792. return NULL;
  1793. }
  1794. Py_XINCREF(pg_default_port);
  1795. return pg_default_port;
  1796. }
  1797. /* sets default port */
  1798. static char setdefport__doc__[] =
  1799. "set_defport(integer) -- set default database port. Return previous value.";
  1800. static PyObject *
  1801. pgsetdefport(PyObject * self, PyObject * args)
  1802. {
  1803. long int port = -2;
  1804. PyObject   *old;
  1805. /* gets arguments */
  1806. if ((!PyArg_ParseTuple(args, "l", &port)) || (port < -1))
  1807. {
  1808. PyErr_SetString(PyExc_TypeError, "set_defport(port), with port "
  1809. "(positive integer/-1).");
  1810. return NULL;
  1811. }
  1812. /* adjusts value */
  1813. old = pg_default_port;
  1814. if (port != -1)
  1815. pg_default_port = PyLong_FromLong(port);
  1816. else
  1817. {
  1818. Py_INCREF(Py_None);
  1819. pg_default_port = Py_None;
  1820. }
  1821. return old;
  1822. }
  1823. #endif  /* DEFAULT_VARS */
  1824. /* List of functions defined in the module */
  1825. static struct PyMethodDef pg_methods[] = {
  1826. {"connect", (PyCFunction) pgconnect, 3, connect__doc__},
  1827. #ifdef DEFAULT_VARS
  1828. {"get_defhost", pggetdefhost, 1, getdefhost__doc__},
  1829. {"set_defhost", pgsetdefhost, 1, setdefhost__doc__},
  1830. {"get_defbase", pggetdefbase, 1, getdefbase__doc__},
  1831. {"set_defbase", pgsetdefbase, 1, setdefbase__doc__},
  1832. {"get_defopt", pggetdefopt, 1, getdefopt__doc__},
  1833. {"set_defopt", pgsetdefopt, 1, setdefopt__doc__},
  1834. {"get_deftty", pggetdeftty, 1, getdeftty__doc__},
  1835. {"set_deftty", pgsetdeftty, 1, setdeftty__doc__},
  1836. {"get_defport", pggetdefport, 1, getdefport__doc__},
  1837. {"set_defport", pgsetdefport, 1, setdefport__doc__},
  1838. {"get_defuser", pggetdefuser, 1, getdefuser__doc__},
  1839. {"set_defuser", pgsetdefuser, 1, setdefuser__doc__},
  1840. {"set_defpasswd", pgsetdefpasswd, 1, setdefpasswd__doc__},
  1841. #endif  /* DEFAULT_VARS */
  1842. {NULL, NULL} /* sentinel */
  1843. };
  1844. static char pg__doc__[] = "Python interface to PostgreSQL DB";
  1845. /* Initialization function for the module */
  1846. void init_pg(void); /* Python doesn't prototype this */
  1847. void
  1848. init_pg(void)
  1849. {
  1850. PyObject   *mod,
  1851.    *dict,
  1852.    *v;
  1853. /* Initialize here because some WIN platforms get confused otherwise */
  1854. PglargeType.ob_type = PgType.ob_type = PgQueryType.ob_type = &PyType_Type;
  1855. /* Create the module and add the functions */
  1856. mod = Py_InitModule4("_pg", pg_methods, pg__doc__, NULL, PYTHON_API_VERSION);
  1857. dict = PyModule_GetDict(mod);
  1858. /* Add some symbolic constants to the module */
  1859. PGError = PyString_FromString("pg.error");
  1860. PyDict_SetItemString(dict, "error", PGError);
  1861. /* Make the version available */
  1862. v = PyString_FromString(PyPgVersion);
  1863. PyDict_SetItemString(dict, "version", v);
  1864. PyDict_SetItemString(dict, "__version__", v);
  1865. Py_DECREF(v);
  1866. #ifdef LARGE_OBJECTS
  1867. /* create mode for large objects */
  1868. PyDict_SetItemString(dict, "INV_READ", PyInt_FromLong(INV_READ));
  1869. PyDict_SetItemString(dict, "INV_WRITE", PyInt_FromLong(INV_WRITE));
  1870. /* position flags for lo_lseek */
  1871. PyDict_SetItemString(dict, "SEEK_SET", PyInt_FromLong(SEEK_SET));
  1872. PyDict_SetItemString(dict, "SEEK_CUR", PyInt_FromLong(SEEK_CUR));
  1873. PyDict_SetItemString(dict, "SEEK_END", PyInt_FromLong(SEEK_END));
  1874. #endif  /* LARGE_OBJECTS */
  1875. #ifdef DEFAULT_VARS
  1876. /* prepares default values */
  1877. Py_INCREF(Py_None);
  1878. pg_default_host = Py_None;
  1879. Py_INCREF(Py_None);
  1880. pg_default_base = Py_None;
  1881. Py_INCREF(Py_None);
  1882. pg_default_opt = Py_None;
  1883. Py_INCREF(Py_None);
  1884. pg_default_port = Py_None;
  1885. Py_INCREF(Py_None);
  1886. pg_default_tty = Py_None;
  1887. Py_INCREF(Py_None);
  1888. pg_default_user = Py_None;
  1889. Py_INCREF(Py_None);
  1890. pg_default_passwd = Py_None;
  1891. #endif  /* DEFAULT_VARS */
  1892. /* Check for errors */
  1893. if (PyErr_Occurred())
  1894. Py_FatalError("can't initialize module _pg");
  1895. }