vrpRouting  0.3
postgres_connection.c
Go to the documentation of this file.
1 /*PGR-GNU*****************************************************************
2 File: postgres_connection.c
3 
4 Copyright (c) 2015 Celia Virginia Vergara Castillo
6 
7 ------
8 
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13 
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18 
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 
23  ********************************************************************PGR-GNU*/
24 
26 
27 #include <string.h>
28 #include "utils/builtins.h"
29 
30 #include "catalog/pg_type.h"
31 
32 
33 #include "c_common/debug_macro.h"
34 
35 void
36 pgr_send_error(int errcode) {
37  switch (errcode) {
38  case 1:
39  elog(ERROR, "Unexpected point(s) with same pid but different"
40  " edge/fraction/side combination found.");
41  break;
42  case 2:
43  elog(ERROR, "Internal: Unexpected mismatch "
44  "count and sequence number on results");
45  break;
46  default:
47  elog(ERROR, "Unknown exception");
48  }
49 }
50 
51 
52 char*
53 pgr_cstring2char(const char *inStr) {
54  if (!inStr) return NULL;
55 
56  char *outStr;
57  outStr = palloc(strlen(inStr));
58  if (!outStr) return NULL;
59 
60  memcpy(outStr, inStr, strlen(inStr));
61 
62  outStr[strlen(inStr)] = '\0';
63 
64  return outStr;
65 }
66 
67 
68 
69 // http://www.postgresql.org/docs/9.4/static/spi-spi-finish.html
70 void
72  int code = SPI_finish();
73  if (code != SPI_OK_FINISH) { // SPI_ERROR_UNCONNECTED
74  elog(ERROR, "There was no connection to SPI");
75  }
76 }
77 
78 void
80  int SPIcode;
81  SPIcode = SPI_connect();
82  if (SPIcode != SPI_OK_CONNECT) {
83  elog(ERROR, "Couldn't open a connection to SPI");
84  }
85 }
86 
87 SPIPlanPtr
88 pgr_SPI_prepare(char* sql) {
89  SPIPlanPtr SPIplan;
90  SPIplan = SPI_prepare(sql, 0, NULL);
91  if (SPIplan == NULL) {
92  elog(ERROR, "Couldn't create query plan via SPI: %s", sql);
93  }
94  return SPIplan;
95 }
96 
97 Portal
98 pgr_SPI_cursor_open(SPIPlanPtr SPIplan) {
99  Portal SPIportal;
100  SPIportal = SPI_cursor_open(NULL, SPIplan, NULL, NULL, true);
101  if (SPIportal == NULL) {
102  elog(ERROR, "SPI_cursor_open returns NULL");
103  }
104  return SPIportal;
105 }
pgr_cstring2char
char * pgr_cstring2char(const char *inStr)
Definition: postgres_connection.c:53
postgres_connection.h
pgr_SPI_prepare
SPIPlanPtr pgr_SPI_prepare(char *sql)
Definition: postgres_connection.c:88
pgr_SPI_connect
void pgr_SPI_connect(void)
Definition: postgres_connection.c:79
pgr_SPI_finish
void pgr_SPI_finish(void)
Definition: postgres_connection.c:71
pgr_send_error
void pgr_send_error(int errcode)
Definition: postgres_connection.c:36
debug_macro.h
pgr_SPI_cursor_open
Portal pgr_SPI_cursor_open(SPIPlanPtr SPIplan)
Definition: postgres_connection.c:98