ibase_query.c 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Ard Biesheuvel <a.k.biesheuvel@its.tudelft.nl> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifdef HAVE_CONFIG_H
  19. #include "config.h"
  20. #endif
  21. #include "php.h"
  22. #include "php_ini.h"
  23. #if HAVE_IBASE
  24. #include "ext/standard/php_standard.h"
  25. #include "php_interbase.h"
  26. #include "php_ibase_includes.h"
  27. #define ISC_LONG_MIN INT_MIN
  28. #define ISC_LONG_MAX INT_MAX
  29. #define QUERY_RESULT 1
  30. #define EXECUTE_RESULT 2
  31. #define FETCH_ROW 1
  32. #define FETCH_ARRAY 2
  33. typedef struct {
  34. ISC_ARRAY_DESC ar_desc;
  35. ISC_LONG ar_size; /* size of entire array in bytes */
  36. unsigned short el_type, el_size;
  37. } ibase_array;
  38. typedef struct {
  39. ibase_db_link *link;
  40. ibase_trans *trans;
  41. struct _ib_query *query;
  42. isc_stmt_handle stmt;
  43. unsigned short type;
  44. unsigned char has_more_rows, statement_type;
  45. XSQLDA *out_sqlda;
  46. ibase_array out_array[1]; /* last member */
  47. } ibase_result;
  48. typedef struct _ib_query {
  49. ibase_db_link *link;
  50. ibase_trans *trans;
  51. ibase_result *result;
  52. int result_res_id;
  53. isc_stmt_handle stmt;
  54. XSQLDA *in_sqlda, *out_sqlda;
  55. ibase_array *in_array, *out_array;
  56. unsigned short in_array_cnt, out_array_cnt;
  57. unsigned short dialect;
  58. char statement_type;
  59. char *query;
  60. long trans_res_id;
  61. } ibase_query;
  62. typedef struct {
  63. unsigned short vary_length;
  64. char vary_string[1];
  65. } IBVARY;
  66. /* sql variables union
  67. * used for convert and binding input variables
  68. */
  69. typedef struct {
  70. union {
  71. short sval;
  72. float fval;
  73. ISC_LONG lval;
  74. ISC_QUAD qval;
  75. ISC_TIMESTAMP tsval;
  76. ISC_DATE dtval;
  77. ISC_TIME tmval;
  78. } val;
  79. short sqlind;
  80. } BIND_BUF;
  81. static int le_result, le_query;
  82. #define LE_RESULT "Firebird/InterBase result"
  83. #define LE_QUERY "Firebird/InterBase query"
  84. static void _php_ibase_free_xsqlda(XSQLDA *sqlda) /* {{{ */
  85. {
  86. int i;
  87. XSQLVAR *var;
  88. IBDEBUG("Free XSQLDA?");
  89. if (sqlda) {
  90. IBDEBUG("Freeing XSQLDA...");
  91. var = sqlda->sqlvar;
  92. for (i = 0; i < sqlda->sqld; i++, var++) {
  93. efree(var->sqldata);
  94. if (var->sqlind) {
  95. efree(var->sqlind);
  96. }
  97. }
  98. efree(sqlda);
  99. }
  100. }
  101. /* }}} */
  102. static void _php_ibase_free_stmt_handle(ibase_db_link *link, isc_stmt_handle stmt TSRMLS_DC) /* {{{ */
  103. {
  104. static char info[] = { isc_info_base_level, isc_info_end };
  105. if (stmt) {
  106. char res_buf[8];
  107. IBDEBUG("Dropping statement handle (free_stmt_handle)...");
  108. /* Only free statement if db-connection is still open */
  109. if (SUCCESS == isc_database_info(IB_STATUS, &link->handle,
  110. sizeof(info), info, sizeof(res_buf), res_buf)) {
  111. if (isc_dsql_free_statement(IB_STATUS, &stmt, DSQL_drop)) {
  112. _php_ibase_error(TSRMLS_C);
  113. }
  114. }
  115. }
  116. }
  117. /* }}} */
  118. static void _php_ibase_free_result(zend_rsrc_list_entry *rsrc TSRMLS_DC) /* {{{ */
  119. {
  120. ibase_result *ib_result = (ibase_result *) rsrc->ptr;
  121. IBDEBUG("Freeing result by dtor...");
  122. if (ib_result) {
  123. _php_ibase_free_xsqlda(ib_result->out_sqlda);
  124. if (ib_result->query != NULL) {
  125. IBDEBUG("query still valid; don't drop statement handle");
  126. ib_result->query->result = NULL; /* Indicate to query, that result is released */
  127. } else {
  128. _php_ibase_free_stmt_handle(ib_result->link, ib_result->stmt TSRMLS_CC);
  129. }
  130. efree(ib_result);
  131. }
  132. }
  133. /* }}} */
  134. static void _php_ibase_free_query(ibase_query *ib_query TSRMLS_DC) /* {{{ */
  135. {
  136. IBDEBUG("Freeing query...");
  137. if (ib_query->in_sqlda) {
  138. efree(ib_query->in_sqlda);
  139. }
  140. if (ib_query->out_sqlda) {
  141. efree(ib_query->out_sqlda);
  142. }
  143. if (ib_query->result != NULL) {
  144. IBDEBUG("result still valid; don't drop statement handle");
  145. ib_query->result->query = NULL; /* Indicate to result, that query is released */
  146. } else {
  147. _php_ibase_free_stmt_handle(ib_query->link, ib_query->stmt TSRMLS_CC);
  148. }
  149. if (ib_query->in_array) {
  150. efree(ib_query->in_array);
  151. }
  152. if (ib_query->out_array) {
  153. efree(ib_query->out_array);
  154. }
  155. if (ib_query->query) {
  156. efree(ib_query->query);
  157. }
  158. }
  159. /* }}} */
  160. static void php_ibase_free_query_rsrc(zend_rsrc_list_entry *rsrc TSRMLS_DC) /* {{{ */
  161. {
  162. ibase_query *ib_query = (ibase_query *)rsrc->ptr;
  163. if (ib_query != NULL) {
  164. IBDEBUG("Preparing to free query by dtor...");
  165. _php_ibase_free_query(ib_query TSRMLS_CC);
  166. efree(ib_query);
  167. }
  168. }
  169. /* }}} */
  170. void php_ibase_query_minit(INIT_FUNC_ARGS) /* {{{ */
  171. {
  172. le_result = zend_register_list_destructors_ex(_php_ibase_free_result, NULL,
  173. "interbase result", module_number);
  174. le_query = zend_register_list_destructors_ex(php_ibase_free_query_rsrc, NULL,
  175. "interbase query", module_number);
  176. }
  177. /* }}} */
  178. static int _php_ibase_alloc_array(ibase_array **ib_arrayp, XSQLDA *sqlda, /* {{{ */
  179. isc_db_handle link, isc_tr_handle trans, unsigned short *array_cnt TSRMLS_DC)
  180. {
  181. unsigned short i, n;
  182. ibase_array *ar;
  183. /* first check if we have any arrays at all */
  184. for (i = *array_cnt = 0; i < sqlda->sqld; ++i) {
  185. if ((sqlda->sqlvar[i].sqltype & ~1) == SQL_ARRAY) {
  186. ++*array_cnt;
  187. }
  188. }
  189. if (! *array_cnt) return SUCCESS;
  190. ar = safe_emalloc(sizeof(ibase_array), *array_cnt, 0);
  191. for (i = n = 0; i < sqlda->sqld; ++i) {
  192. unsigned short dim;
  193. unsigned long ar_size = 1;
  194. XSQLVAR *var = &sqlda->sqlvar[i];
  195. if ((var->sqltype & ~1) == SQL_ARRAY) {
  196. ibase_array *a = &ar[n++];
  197. ISC_ARRAY_DESC *ar_desc = &a->ar_desc;
  198. if (isc_array_lookup_bounds(IB_STATUS, &link, &trans, var->relname,
  199. var->sqlname, ar_desc)) {
  200. _php_ibase_error(TSRMLS_C);
  201. efree(ar);
  202. return FAILURE;
  203. }
  204. switch (ar_desc->array_desc_dtype) {
  205. case blr_text:
  206. case blr_text2:
  207. a->el_type = SQL_TEXT;
  208. a->el_size = ar_desc->array_desc_length;
  209. break;
  210. case blr_short:
  211. a->el_type = SQL_SHORT;
  212. a->el_size = sizeof(short);
  213. break;
  214. case blr_long:
  215. a->el_type = SQL_LONG;
  216. a->el_size = sizeof(ISC_LONG);
  217. break;
  218. case blr_float:
  219. a->el_type = SQL_FLOAT;
  220. a->el_size = sizeof(float);
  221. break;
  222. case blr_double:
  223. a->el_type = SQL_DOUBLE;
  224. a->el_size = sizeof(double);
  225. break;
  226. case blr_int64:
  227. a->el_type = SQL_INT64;
  228. a->el_size = sizeof(ISC_INT64);
  229. break;
  230. case blr_timestamp:
  231. a->el_type = SQL_TIMESTAMP;
  232. a->el_size = sizeof(ISC_TIMESTAMP);
  233. break;
  234. case blr_sql_date:
  235. a->el_type = SQL_TYPE_DATE;
  236. a->el_size = sizeof(ISC_DATE);
  237. break;
  238. case blr_sql_time:
  239. a->el_type = SQL_TYPE_TIME;
  240. a->el_size = sizeof(ISC_TIME);
  241. break;
  242. case blr_varying:
  243. case blr_varying2:
  244. /**
  245. * IB has a strange way of handling VARCHAR arrays. It doesn't store
  246. * the length in the first short, as with VARCHAR fields. It does,
  247. * however, expect the extra short to be allocated for each element.
  248. */
  249. a->el_type = SQL_TEXT;
  250. a->el_size = ar_desc->array_desc_length + sizeof(short);
  251. break;
  252. case blr_quad:
  253. case blr_blob_id:
  254. case blr_cstring:
  255. case blr_cstring2:
  256. /**
  257. * These types are mentioned as array types in the manual, but I
  258. * wouldn't know how to create an array field with any of these
  259. * types. I assume these types are not applicable to arrays, and
  260. * were mentioned erroneously.
  261. */
  262. default:
  263. _php_ibase_module_error("Unsupported array type %d in relation '%s' column '%s'"
  264. TSRMLS_CC, ar_desc->array_desc_dtype, var->relname, var->sqlname);
  265. efree(ar);
  266. return FAILURE;
  267. } /* switch array_desc_type */
  268. /* calculate elements count */
  269. for (dim = 0; dim < ar_desc->array_desc_dimensions; dim++) {
  270. ar_size *= 1 + ar_desc->array_desc_bounds[dim].array_bound_upper
  271. -ar_desc->array_desc_bounds[dim].array_bound_lower;
  272. }
  273. a->ar_size = a->el_size * ar_size;
  274. } /* if SQL_ARRAY */
  275. } /* for column */
  276. *ib_arrayp = ar;
  277. return SUCCESS;
  278. }
  279. /* }}} */
  280. /* allocate and prepare query */
  281. static int _php_ibase_alloc_query(ibase_query *ib_query, ibase_db_link *link, /* {{{ */
  282. ibase_trans *trans, char *query, unsigned short dialect, int trans_res_id TSRMLS_DC)
  283. {
  284. static char info_type[] = {isc_info_sql_stmt_type};
  285. char result[8];
  286. /* Return FAILURE, if querystring is empty */
  287. if (*query == '\0') {
  288. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Querystring empty.");
  289. return FAILURE;
  290. }
  291. ib_query->link = link;
  292. ib_query->trans = trans;
  293. ib_query->result_res_id = 0;
  294. ib_query->result = NULL;
  295. ib_query->stmt = NULL;
  296. ib_query->in_array = NULL;
  297. ib_query->out_array = NULL;
  298. ib_query->dialect = dialect;
  299. ib_query->query = estrdup(query);
  300. ib_query->trans_res_id = trans_res_id;
  301. ib_query->out_sqlda = NULL;
  302. ib_query->in_sqlda = NULL;
  303. if (isc_dsql_allocate_statement(IB_STATUS, &link->handle, &ib_query->stmt)) {
  304. _php_ibase_error(TSRMLS_C);
  305. goto _php_ibase_alloc_query_error;
  306. }
  307. ib_query->out_sqlda = (XSQLDA *) emalloc(XSQLDA_LENGTH(1));
  308. ib_query->out_sqlda->sqln = 1;
  309. ib_query->out_sqlda->version = SQLDA_CURRENT_VERSION;
  310. if (isc_dsql_prepare(IB_STATUS, &ib_query->trans->handle, &ib_query->stmt,
  311. 0, query, dialect, ib_query->out_sqlda)) {
  312. _php_ibase_error(TSRMLS_C);
  313. goto _php_ibase_alloc_query_error;
  314. }
  315. /* find out what kind of statement was prepared */
  316. if (isc_dsql_sql_info(IB_STATUS, &ib_query->stmt, sizeof(info_type),
  317. info_type, sizeof(result), result)) {
  318. _php_ibase_error(TSRMLS_C);
  319. goto _php_ibase_alloc_query_error;
  320. }
  321. ib_query->statement_type = result[3];
  322. /* not enough output variables ? */
  323. if (ib_query->out_sqlda->sqld > ib_query->out_sqlda->sqln) {
  324. ib_query->out_sqlda = erealloc(ib_query->out_sqlda, XSQLDA_LENGTH(ib_query->out_sqlda->sqld));
  325. ib_query->out_sqlda->sqln = ib_query->out_sqlda->sqld;
  326. ib_query->out_sqlda->version = SQLDA_CURRENT_VERSION;
  327. if (isc_dsql_describe(IB_STATUS, &ib_query->stmt, SQLDA_CURRENT_VERSION, ib_query->out_sqlda)) {
  328. _php_ibase_error(TSRMLS_C);
  329. goto _php_ibase_alloc_query_error;
  330. }
  331. }
  332. /* maybe have input placeholders? */
  333. ib_query->in_sqlda = emalloc(XSQLDA_LENGTH(1));
  334. ib_query->in_sqlda->sqln = 1;
  335. ib_query->in_sqlda->version = SQLDA_CURRENT_VERSION;
  336. if (isc_dsql_describe_bind(IB_STATUS, &ib_query->stmt, SQLDA_CURRENT_VERSION, ib_query->in_sqlda)) {
  337. _php_ibase_error(TSRMLS_C);
  338. goto _php_ibase_alloc_query_error;
  339. }
  340. /* not enough input variables ? */
  341. if (ib_query->in_sqlda->sqln < ib_query->in_sqlda->sqld) {
  342. ib_query->in_sqlda = erealloc(ib_query->in_sqlda, XSQLDA_LENGTH(ib_query->in_sqlda->sqld));
  343. ib_query->in_sqlda->sqln = ib_query->in_sqlda->sqld;
  344. ib_query->in_sqlda->version = SQLDA_CURRENT_VERSION;
  345. if (isc_dsql_describe_bind(IB_STATUS, &ib_query->stmt,
  346. SQLDA_CURRENT_VERSION, ib_query->in_sqlda)) {
  347. _php_ibase_error(TSRMLS_C);
  348. goto _php_ibase_alloc_query_error;
  349. }
  350. }
  351. /* no, haven't placeholders at all */
  352. if (ib_query->in_sqlda->sqld == 0) {
  353. efree(ib_query->in_sqlda);
  354. ib_query->in_sqlda = NULL;
  355. } else if (FAILURE == _php_ibase_alloc_array(&ib_query->in_array, ib_query->in_sqlda,
  356. link->handle, trans->handle, &ib_query->in_array_cnt TSRMLS_CC)) {
  357. goto _php_ibase_alloc_query_error;
  358. }
  359. if (ib_query->out_sqlda->sqld == 0) {
  360. efree(ib_query->out_sqlda);
  361. ib_query->out_sqlda = NULL;
  362. } else if (FAILURE == _php_ibase_alloc_array(&ib_query->out_array, ib_query->out_sqlda,
  363. link->handle, trans->handle, &ib_query->out_array_cnt TSRMLS_CC)) {
  364. goto _php_ibase_alloc_query_error;
  365. }
  366. return SUCCESS;
  367. _php_ibase_alloc_query_error:
  368. if (ib_query->out_sqlda) {
  369. efree(ib_query->out_sqlda);
  370. }
  371. if (ib_query->in_sqlda) {
  372. efree(ib_query->in_sqlda);
  373. }
  374. if (ib_query->out_array) {
  375. efree(ib_query->out_array);
  376. }
  377. if (ib_query->query) {
  378. efree(ib_query->query);
  379. }
  380. return FAILURE;
  381. }
  382. /* }}} */
  383. static int _php_ibase_bind_array(zval *val, char *buf, unsigned long buf_size, /* {{{ */
  384. ibase_array *array, int dim TSRMLS_DC)
  385. {
  386. zval null_val, *pnull_val = &null_val;
  387. int u_bound = array->ar_desc.array_desc_bounds[dim].array_bound_upper,
  388. l_bound = array->ar_desc.array_desc_bounds[dim].array_bound_lower,
  389. dim_len = 1 + u_bound - l_bound;
  390. ZVAL_NULL(pnull_val);
  391. if (dim < array->ar_desc.array_desc_dimensions) {
  392. unsigned long slice_size = buf_size / dim_len;
  393. unsigned short i;
  394. zval **subval = &val;
  395. if (Z_TYPE_P(val) == IS_ARRAY) {
  396. zend_hash_internal_pointer_reset(Z_ARRVAL_P(val));
  397. }
  398. for (i = 0; i < dim_len; ++i) {
  399. if (Z_TYPE_P(val) == IS_ARRAY &&
  400. zend_hash_get_current_data(Z_ARRVAL_P(val), (void *) &subval) == FAILURE)
  401. {
  402. subval = &pnull_val;
  403. }
  404. if (_php_ibase_bind_array(*subval, buf, slice_size, array, dim+1 TSRMLS_CC) == FAILURE)
  405. {
  406. return FAILURE;
  407. }
  408. buf += slice_size;
  409. if (Z_TYPE_P(val) == IS_ARRAY) {
  410. zend_hash_move_forward(Z_ARRVAL_P(val));
  411. }
  412. }
  413. if (Z_TYPE_P(val) == IS_ARRAY) {
  414. zend_hash_internal_pointer_reset(Z_ARRVAL_P(val));
  415. }
  416. } else {
  417. /* expect a single value */
  418. if (Z_TYPE_P(val) == IS_NULL) {
  419. memset(buf, 0, buf_size);
  420. } else if (array->ar_desc.array_desc_scale < 0) {
  421. /* no coercion for array types */
  422. double l;
  423. convert_to_double(val);
  424. if (Z_DVAL_P(val) > 0) {
  425. l = Z_DVAL_P(val) * pow(10, -array->ar_desc.array_desc_scale) + .5;
  426. } else {
  427. l = Z_DVAL_P(val) * pow(10, -array->ar_desc.array_desc_scale) - .5;
  428. }
  429. switch (array->el_type) {
  430. case SQL_SHORT:
  431. if (l > SHRT_MAX || l < SHRT_MIN) {
  432. _php_ibase_module_error("Array parameter exceeds field width" TSRMLS_CC);
  433. return FAILURE;
  434. }
  435. *(short*) buf = (short) l;
  436. break;
  437. case SQL_LONG:
  438. if (l > ISC_LONG_MAX || l < ISC_LONG_MIN) {
  439. _php_ibase_module_error("Array parameter exceeds field width" TSRMLS_CC);
  440. return FAILURE;
  441. }
  442. *(ISC_LONG*) buf = (ISC_LONG) l;
  443. break;
  444. case SQL_INT64:
  445. {
  446. long double l;
  447. convert_to_string(val);
  448. if (!sscanf(Z_STRVAL_P(val), "%Lf", &l)) {
  449. _php_ibase_module_error("Cannot convert '%s' to long double"
  450. TSRMLS_CC, Z_STRVAL_P(val));
  451. return FAILURE;
  452. }
  453. if (l > 0) {
  454. *(ISC_INT64 *) buf = (ISC_INT64) (l * pow(10,
  455. -array->ar_desc.array_desc_scale) + .5);
  456. } else {
  457. *(ISC_INT64 *) buf = (ISC_INT64) (l * pow(10,
  458. -array->ar_desc.array_desc_scale) - .5);
  459. }
  460. }
  461. break;
  462. }
  463. } else {
  464. struct tm t = { 0, 0, 0, 0, 0, 0 };
  465. switch (array->el_type) {
  466. unsigned short n;
  467. ISC_INT64 l;
  468. case SQL_SHORT:
  469. convert_to_long(val);
  470. if (Z_LVAL_P(val) > SHRT_MAX || Z_LVAL_P(val) < SHRT_MIN) {
  471. _php_ibase_module_error("Array parameter exceeds field width" TSRMLS_CC);
  472. return FAILURE;
  473. }
  474. *(short *) buf = (short) Z_LVAL_P(val);
  475. break;
  476. case SQL_LONG:
  477. convert_to_long(val);
  478. #if (SIZEOF_LONG > 4)
  479. if (Z_LVAL_P(val) > ISC_LONG_MAX || Z_LVAL_P(val) < ISC_LONG_MIN) {
  480. _php_ibase_module_error("Array parameter exceeds field width" TSRMLS_CC);
  481. return FAILURE;
  482. }
  483. #endif
  484. *(ISC_LONG *) buf = (ISC_LONG) Z_LVAL_P(val);
  485. break;
  486. case SQL_INT64:
  487. #if (SIZEOF_LONG >= 8)
  488. convert_to_long(val);
  489. *(long *) buf = Z_LVAL_P(val);
  490. #else
  491. convert_to_string(val);
  492. if (!sscanf(Z_STRVAL_P(val), "%" LL_MASK "d", &l)) {
  493. _php_ibase_module_error("Cannot convert '%s' to long integer"
  494. TSRMLS_CC, Z_STRVAL_P(val));
  495. return FAILURE;
  496. } else {
  497. *(ISC_INT64 *) buf = l;
  498. }
  499. #endif
  500. break;
  501. case SQL_FLOAT:
  502. convert_to_double(val);
  503. *(float*) buf = (float) Z_DVAL_P(val);
  504. break;
  505. case SQL_DOUBLE:
  506. convert_to_double(val);
  507. *(double*) buf = Z_DVAL_P(val);
  508. break;
  509. case SQL_TIMESTAMP:
  510. convert_to_string(val);
  511. #ifdef HAVE_STRPTIME
  512. strptime(Z_STRVAL_P(val), INI_STR("ibase.timestampformat"), &t);
  513. #else
  514. n = sscanf(Z_STRVAL_P(val), "%d%*[/]%d%*[/]%d %d%*[:]%d%*[:]%d",
  515. &t.tm_mon, &t.tm_mday, &t.tm_year, &t.tm_hour, &t.tm_min, &t.tm_sec);
  516. if (n != 3 && n != 6) {
  517. _php_ibase_module_error("Invalid date/time format (expected 3 or 6 fields, got %d."
  518. " Use format 'm/d/Y H:i:s'. You gave '%s')" TSRMLS_CC, n, Z_STRVAL_P(val));
  519. return FAILURE;
  520. }
  521. t.tm_year -= 1900;
  522. t.tm_mon--;
  523. #endif
  524. isc_encode_timestamp(&t, (ISC_TIMESTAMP * ) buf);
  525. break;
  526. case SQL_TYPE_DATE:
  527. convert_to_string(val);
  528. #ifdef HAVE_STRPTIME
  529. strptime(Z_STRVAL_P(val), INI_STR("ibase.dateformat"), &t);
  530. #else
  531. n = sscanf(Z_STRVAL_P(val), "%d%*[/]%d%*[/]%d", &t.tm_mon, &t.tm_mday, &t.tm_year);
  532. if (n != 3) {
  533. _php_ibase_module_error("Invalid date format (expected 3 fields, got %d. "
  534. "Use format 'm/d/Y' You gave '%s')" TSRMLS_CC, n, Z_STRVAL_P(val));
  535. return FAILURE;
  536. }
  537. t.tm_year -= 1900;
  538. t.tm_mon--;
  539. #endif
  540. isc_encode_sql_date(&t, (ISC_DATE *) buf);
  541. break;
  542. case SQL_TYPE_TIME:
  543. convert_to_string(val);
  544. #ifdef HAVE_STRPTIME
  545. strptime(Z_STRVAL_P(val), INI_STR("ibase.timeformat"), &t);
  546. #else
  547. n = sscanf(Z_STRVAL_P(val), "%d%*[:]%d%*[:]%d", &t.tm_hour, &t.tm_min, &t.tm_sec);
  548. if (n != 3) {
  549. _php_ibase_module_error("Invalid time format (expected 3 fields, got %d. "
  550. "Use format 'H:i:s'. You gave '%s')" TSRMLS_CC, n, Z_STRVAL_P(val));
  551. return FAILURE;
  552. }
  553. #endif
  554. isc_encode_sql_time(&t, (ISC_TIME *) buf);
  555. break;
  556. default:
  557. convert_to_string(val);
  558. strlcpy(buf, Z_STRVAL_P(val), buf_size);
  559. }
  560. }
  561. }
  562. return SUCCESS;
  563. }
  564. /* }}} */
  565. static int _php_ibase_bind(XSQLDA *sqlda, zval ***b_vars, BIND_BUF *buf, /* {{{ */
  566. ibase_query *ib_query TSRMLS_DC)
  567. {
  568. int i, array_cnt = 0, rv = SUCCESS;
  569. for (i = 0; i < sqlda->sqld; ++i) { /* bound vars */
  570. zval *b_var = *b_vars[i];
  571. XSQLVAR *var = &sqlda->sqlvar[i];
  572. var->sqlind = &buf[i].sqlind;
  573. /* check if a NULL should be inserted */
  574. switch (Z_TYPE_P(b_var)) {
  575. int force_null;
  576. case IS_STRING:
  577. force_null = 0;
  578. /* for these types, an empty string can be handled like a NULL value */
  579. switch (var->sqltype & ~1) {
  580. case SQL_SHORT:
  581. case SQL_LONG:
  582. case SQL_INT64:
  583. case SQL_FLOAT:
  584. case SQL_DOUBLE:
  585. case SQL_TIMESTAMP:
  586. case SQL_TYPE_DATE:
  587. case SQL_TYPE_TIME:
  588. force_null = (Z_STRLEN_P(b_var) == 0);
  589. }
  590. if (! force_null) break;
  591. case IS_NULL:
  592. buf[i].sqlind = -1;
  593. if (var->sqltype & SQL_ARRAY) ++array_cnt;
  594. continue;
  595. }
  596. /* if we make it to this point, we must provide a value for the parameter */
  597. buf[i].sqlind = 0;
  598. var->sqldata = (void*)&buf[i].val;
  599. switch (var->sqltype & ~1) {
  600. struct tm t;
  601. case SQL_TIMESTAMP:
  602. case SQL_TYPE_DATE:
  603. case SQL_TYPE_TIME:
  604. if (Z_TYPE_P(b_var) == IS_LONG) {
  605. struct tm *res;
  606. res = php_gmtime_r(&Z_LVAL_P(b_var), &t);
  607. if (!res) {
  608. return FAILURE;
  609. }
  610. } else {
  611. #ifdef HAVE_STRPTIME
  612. char *format = INI_STR("ibase.timestampformat");
  613. convert_to_string(b_var);
  614. switch (var->sqltype & ~1) {
  615. case SQL_TYPE_DATE:
  616. format = INI_STR("ibase.dateformat");
  617. break;
  618. case SQL_TYPE_TIME:
  619. format = INI_STR("ibase.timeformat");
  620. }
  621. if (!strptime(Z_STRVAL_P(b_var), format, &t)) {
  622. /* strptime() cannot handle it, so let IB have a try */
  623. break;
  624. }
  625. #else /* ifndef HAVE_STRPTIME */
  626. break; /* let IB parse it as a string */
  627. #endif
  628. }
  629. switch (var->sqltype & ~1) {
  630. default: /* == case SQL_TIMESTAMP */
  631. isc_encode_timestamp(&t, &buf[i].val.tsval);
  632. break;
  633. case SQL_TYPE_DATE:
  634. isc_encode_sql_date(&t, &buf[i].val.dtval);
  635. break;
  636. case SQL_TYPE_TIME:
  637. isc_encode_sql_time(&t, &buf[i].val.tmval);
  638. break;
  639. }
  640. continue;
  641. case SQL_BLOB:
  642. convert_to_string(b_var);
  643. if (Z_STRLEN_P(b_var) != BLOB_ID_LEN ||
  644. !_php_ibase_string_to_quad(Z_STRVAL_P(b_var), &buf[i].val.qval)) {
  645. ibase_blob ib_blob = { NULL, BLOB_INPUT };
  646. if (isc_create_blob(IB_STATUS, &ib_query->link->handle,
  647. &ib_query->trans->handle, &ib_blob.bl_handle, &ib_blob.bl_qd)) {
  648. _php_ibase_error(TSRMLS_C);
  649. return FAILURE;
  650. }
  651. if (_php_ibase_blob_add(&b_var, &ib_blob TSRMLS_CC) != SUCCESS) {
  652. return FAILURE;
  653. }
  654. if (isc_close_blob(IB_STATUS, &ib_blob.bl_handle)) {
  655. _php_ibase_error(TSRMLS_C);
  656. return FAILURE;
  657. }
  658. buf[i].val.qval = ib_blob.bl_qd;
  659. }
  660. continue;
  661. case SQL_ARRAY:
  662. if (Z_TYPE_P(b_var) != IS_ARRAY) {
  663. convert_to_string(b_var);
  664. if (Z_STRLEN_P(b_var) != BLOB_ID_LEN ||
  665. !_php_ibase_string_to_quad(Z_STRVAL_P(b_var), &buf[i].val.qval)) {
  666. _php_ibase_module_error("Parameter %d: invalid array ID" TSRMLS_CC,i+1);
  667. rv = FAILURE;
  668. }
  669. } else {
  670. /* convert the array data into something IB can understand */
  671. ibase_array *ar = &ib_query->in_array[array_cnt];
  672. void *array_data = emalloc(ar->ar_size);
  673. ISC_QUAD array_id = { 0, 0 };
  674. if (FAILURE == _php_ibase_bind_array(b_var, array_data, ar->ar_size,
  675. ar, 0 TSRMLS_CC)) {
  676. _php_ibase_module_error("Parameter %d: failed to bind array argument"
  677. TSRMLS_CC,i+1);
  678. efree(array_data);
  679. rv = FAILURE;
  680. continue;
  681. }
  682. if (isc_array_put_slice(IB_STATUS, &ib_query->link->handle, &ib_query->trans->handle,
  683. &array_id, &ar->ar_desc, array_data, &ar->ar_size)) {
  684. _php_ibase_error(TSRMLS_C);
  685. efree(array_data);
  686. return FAILURE;
  687. }
  688. buf[i].val.qval = array_id;
  689. efree(array_data);
  690. }
  691. ++array_cnt;
  692. continue;
  693. } /* switch */
  694. /* we end up here if none of the switch cases handled the field */
  695. convert_to_string(b_var);
  696. var->sqldata = Z_STRVAL_P(b_var);
  697. var->sqllen = Z_STRLEN_P(b_var);
  698. var->sqltype = SQL_TEXT;
  699. } /* for */
  700. return rv;
  701. }
  702. /* }}} */
  703. static void _php_ibase_alloc_xsqlda(XSQLDA *sqlda) /* {{{ */
  704. {
  705. int i;
  706. for (i = 0; i < sqlda->sqld; i++) {
  707. XSQLVAR *var = &sqlda->sqlvar[i];
  708. switch (var->sqltype & ~1) {
  709. case SQL_TEXT:
  710. var->sqldata = safe_emalloc(sizeof(char), var->sqllen, 0);
  711. break;
  712. case SQL_VARYING:
  713. var->sqldata = safe_emalloc(sizeof(char), var->sqllen + sizeof(short), 0);
  714. break;
  715. case SQL_SHORT:
  716. var->sqldata = emalloc(sizeof(short));
  717. break;
  718. case SQL_LONG:
  719. var->sqldata = emalloc(sizeof(ISC_LONG));
  720. break;
  721. case SQL_FLOAT:
  722. var->sqldata = emalloc(sizeof(float));
  723. break;
  724. case SQL_DOUBLE:
  725. var->sqldata = emalloc(sizeof(double));
  726. break;
  727. case SQL_INT64:
  728. var->sqldata = emalloc(sizeof(ISC_INT64));
  729. break;
  730. case SQL_TIMESTAMP:
  731. var->sqldata = emalloc(sizeof(ISC_TIMESTAMP));
  732. break;
  733. case SQL_TYPE_DATE:
  734. var->sqldata = emalloc(sizeof(ISC_DATE));
  735. break;
  736. case SQL_TYPE_TIME:
  737. var->sqldata = emalloc(sizeof(ISC_TIME));
  738. break;
  739. case SQL_BLOB:
  740. case SQL_ARRAY:
  741. var->sqldata = emalloc(sizeof(ISC_QUAD));
  742. break;
  743. } /* switch */
  744. if (var->sqltype & 1) { /* sql NULL flag */
  745. var->sqlind = emalloc(sizeof(short));
  746. } else {
  747. var->sqlind = NULL;
  748. }
  749. } /* for */
  750. }
  751. /* }}} */
  752. static int _php_ibase_exec(INTERNAL_FUNCTION_PARAMETERS, ibase_result **ib_resultp, /* {{{ */
  753. ibase_query *ib_query, zval ***args)
  754. {
  755. XSQLDA *in_sqlda = NULL, *out_sqlda = NULL;
  756. BIND_BUF *bind_buf = NULL;
  757. int i, rv = FAILURE;
  758. static char info_count[] = { isc_info_sql_records };
  759. char result[64];
  760. ISC_STATUS isc_result;
  761. int argc = ib_query->in_sqlda ? ib_query->in_sqlda->sqld : 0;
  762. RESET_ERRMSG;
  763. for (i = 0; i < argc; ++i) {
  764. SEPARATE_ZVAL(args[i]);
  765. }
  766. switch (ib_query->statement_type) {
  767. isc_tr_handle tr;
  768. ibase_tr_list **l;
  769. ibase_trans *trans;
  770. case isc_info_sql_stmt_start_trans:
  771. /* a SET TRANSACTION statement should be executed with a NULL trans handle */
  772. tr = NULL;
  773. if (isc_dsql_execute_immediate(IB_STATUS, &ib_query->link->handle, &tr, 0,
  774. ib_query->query, ib_query->dialect, NULL)) {
  775. _php_ibase_error(TSRMLS_C);
  776. goto _php_ibase_exec_error;
  777. }
  778. trans = (ibase_trans *) emalloc(sizeof(ibase_trans));
  779. trans->handle = tr;
  780. trans->link_cnt = 1;
  781. trans->affected_rows = 0;
  782. trans->db_link[0] = ib_query->link;
  783. if (ib_query->link->tr_list == NULL) {
  784. ib_query->link->tr_list = (ibase_tr_list *) emalloc(sizeof(ibase_tr_list));
  785. ib_query->link->tr_list->trans = NULL;
  786. ib_query->link->tr_list->next = NULL;
  787. }
  788. /* link the transaction into the connection-transaction list */
  789. for (l = &ib_query->link->tr_list; *l != NULL; l = &(*l)->next);
  790. *l = (ibase_tr_list *) emalloc(sizeof(ibase_tr_list));
  791. (*l)->trans = trans;
  792. (*l)->next = NULL;
  793. ZEND_REGISTER_RESOURCE(return_value, trans, le_trans);
  794. return SUCCESS;
  795. case isc_info_sql_stmt_commit:
  796. case isc_info_sql_stmt_rollback:
  797. if (isc_dsql_execute_immediate(IB_STATUS, &ib_query->link->handle,
  798. &ib_query->trans->handle, 0, ib_query->query, ib_query->dialect, NULL)) {
  799. _php_ibase_error(TSRMLS_C);
  800. goto _php_ibase_exec_error;
  801. }
  802. if (ib_query->trans->handle == NULL && ib_query->trans_res_id != 0) {
  803. /* transaction was released by the query and was a registered resource,
  804. so we have to release it */
  805. zend_list_delete(ib_query->trans_res_id);
  806. }
  807. RETVAL_TRUE;
  808. return SUCCESS;
  809. default:
  810. RETVAL_FALSE;
  811. }
  812. /* allocate sqlda and output buffers */
  813. if (ib_query->out_sqlda) { /* output variables in select, select for update */
  814. ibase_result *res;
  815. IBDEBUG("Query wants XSQLDA for output");
  816. res = emalloc(sizeof(ibase_result)+sizeof(ibase_array)*max(0,ib_query->out_array_cnt-1));
  817. res->link = ib_query->link;
  818. res->trans = ib_query->trans;
  819. res->stmt = ib_query->stmt;
  820. /* ib_result and ib_query point at each other to handle release of statement handle properly */
  821. res->query = ib_query;
  822. ib_query->result = res;
  823. res->statement_type = ib_query->statement_type;
  824. res->has_more_rows = 1;
  825. out_sqlda = res->out_sqlda = emalloc(XSQLDA_LENGTH(ib_query->out_sqlda->sqld));
  826. memcpy(out_sqlda, ib_query->out_sqlda, XSQLDA_LENGTH(ib_query->out_sqlda->sqld));
  827. _php_ibase_alloc_xsqlda(out_sqlda);
  828. if (ib_query->out_array) {
  829. memcpy(&res->out_array, ib_query->out_array, sizeof(ibase_array)*ib_query->out_array_cnt);
  830. }
  831. *ib_resultp = res;
  832. }
  833. if (ib_query->in_sqlda) { /* has placeholders */
  834. IBDEBUG("Query wants XSQLDA for input");
  835. in_sqlda = emalloc(XSQLDA_LENGTH(ib_query->in_sqlda->sqld));
  836. memcpy(in_sqlda, ib_query->in_sqlda, XSQLDA_LENGTH(ib_query->in_sqlda->sqld));
  837. bind_buf = safe_emalloc(sizeof(BIND_BUF), ib_query->in_sqlda->sqld, 0);
  838. if (_php_ibase_bind(in_sqlda, args, bind_buf, ib_query TSRMLS_CC) == FAILURE) {
  839. IBDEBUG("Could not bind input XSQLDA");
  840. goto _php_ibase_exec_error;
  841. }
  842. }
  843. if (ib_query->statement_type == isc_info_sql_stmt_exec_procedure) {
  844. isc_result = isc_dsql_execute2(IB_STATUS, &ib_query->trans->handle,
  845. &ib_query->stmt, SQLDA_CURRENT_VERSION, in_sqlda, out_sqlda);
  846. } else {
  847. isc_result = isc_dsql_execute(IB_STATUS, &ib_query->trans->handle,
  848. &ib_query->stmt, SQLDA_CURRENT_VERSION, in_sqlda);
  849. }
  850. if (isc_result) {
  851. IBDEBUG("Could not execute query");
  852. _php_ibase_error(TSRMLS_C);
  853. goto _php_ibase_exec_error;
  854. }
  855. ib_query->trans->affected_rows = 0;
  856. switch (ib_query->statement_type) {
  857. unsigned long affected_rows;
  858. case isc_info_sql_stmt_insert:
  859. case isc_info_sql_stmt_update:
  860. case isc_info_sql_stmt_delete:
  861. case isc_info_sql_stmt_exec_procedure:
  862. if (isc_dsql_sql_info(IB_STATUS, &ib_query->stmt, sizeof(info_count),
  863. info_count, sizeof(result), result)) {
  864. _php_ibase_error(TSRMLS_C);
  865. goto _php_ibase_exec_error;
  866. }
  867. affected_rows = 0;
  868. if (result[0] == isc_info_sql_records) {
  869. unsigned i = 3, result_size = isc_vax_integer(&result[1],2);
  870. while (result[i] != isc_info_end && i < result_size) {
  871. short len = (short)isc_vax_integer(&result[i+1],2);
  872. if (result[i] != isc_info_req_select_count) {
  873. affected_rows += isc_vax_integer(&result[i+3],len);
  874. }
  875. i += len+3;
  876. }
  877. }
  878. ib_query->trans->affected_rows = affected_rows;
  879. if (!ib_query->out_sqlda) { /* no result set is being returned */
  880. if (affected_rows) {
  881. RETVAL_LONG(affected_rows);
  882. } else {
  883. RETVAL_TRUE;
  884. }
  885. break;
  886. }
  887. default:
  888. RETVAL_TRUE;
  889. }
  890. rv = SUCCESS;
  891. _php_ibase_exec_error:
  892. if (in_sqlda) {
  893. efree(in_sqlda);
  894. }
  895. if (bind_buf)
  896. efree(bind_buf);
  897. if (rv == FAILURE) {
  898. if (*ib_resultp) {
  899. efree(*ib_resultp);
  900. *ib_resultp = NULL;
  901. }
  902. if (out_sqlda) {
  903. _php_ibase_free_xsqlda(out_sqlda);
  904. }
  905. }
  906. return rv;
  907. }
  908. /* }}} */
  909. /* {{{ proto mixed ibase_query([resource link_identifier, [ resource link_identifier, ]] string query [, mixed bind_arg [, mixed bind_arg [, ...]]])
  910. Execute a query */
  911. PHP_FUNCTION(ibase_query)
  912. {
  913. zval *zlink, *ztrans, ***bind_args = NULL;
  914. char *query;
  915. int bind_i, query_len, bind_num;
  916. long trans_res_id = 0;
  917. ibase_db_link *ib_link = NULL;
  918. ibase_trans *trans = NULL;
  919. ibase_query ib_query = { NULL, NULL, 0, 0 };
  920. ibase_result *result = NULL;
  921. RESET_ERRMSG;
  922. RETVAL_FALSE;
  923. switch (ZEND_NUM_ARGS()) {
  924. long l;
  925. default:
  926. if (SUCCESS == zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, 3 TSRMLS_CC, "rrs",
  927. &zlink, &ztrans, &query, &query_len)) {
  928. ZEND_FETCH_RESOURCE2(ib_link, ibase_db_link*, &zlink, -1, LE_LINK, le_link, le_plink);
  929. ZEND_FETCH_RESOURCE(trans, ibase_trans*, &ztrans, -1, LE_TRANS, le_trans);
  930. trans_res_id = Z_LVAL_P(ztrans);
  931. bind_i = 3;
  932. break;
  933. }
  934. case 2:
  935. if (SUCCESS == zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, 2 TSRMLS_CC, "rs",
  936. &zlink, &query, &query_len)) {
  937. _php_ibase_get_link_trans(INTERNAL_FUNCTION_PARAM_PASSTHRU, &zlink, &ib_link, &trans);
  938. if (trans != NULL) {
  939. trans_res_id = Z_LVAL_P(zlink);
  940. }
  941. bind_i = 2;
  942. break;
  943. }
  944. /* the statement is 'CREATE DATABASE ...' if the link argument is IBASE_CREATE */
  945. if (SUCCESS == zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS()
  946. TSRMLS_CC, "ls", &l, &query, &query_len) && l == PHP_IBASE_CREATE) {
  947. isc_db_handle db = NULL;
  948. isc_tr_handle trans = NULL;
  949. if (PG(sql_safe_mode)) {
  950. _php_ibase_module_error("CREATE DATABASE is not allowed in SQL safe mode"
  951. TSRMLS_CC);
  952. } else if (((l = INI_INT("ibase.max_links")) != -1) && (IBG(num_links) >= l)) {
  953. _php_ibase_module_error("CREATE DATABASE is not allowed: maximum link count "
  954. "(%ld) reached" TSRMLS_CC, l);
  955. } else if (isc_dsql_execute_immediate(IB_STATUS, &db, &trans, (short)query_len,
  956. query, SQL_DIALECT_CURRENT, NULL)) {
  957. _php_ibase_error(TSRMLS_C);
  958. } else if (!db) {
  959. _php_ibase_module_error("Connection to created database could not be "
  960. "established" TSRMLS_CC);
  961. } else {
  962. /* register the link as a resource; unfortunately, we cannot register
  963. it in the hash table, because we don't know the connection params */
  964. ib_link = (ibase_db_link *) emalloc(sizeof(ibase_db_link));
  965. ib_link->handle = db;
  966. ib_link->dialect = SQL_DIALECT_CURRENT;
  967. ib_link->tr_list = NULL;
  968. ib_link->event_head = NULL;
  969. ZEND_REGISTER_RESOURCE(return_value, ib_link, le_link);
  970. zend_list_addref(Z_LVAL_P(return_value));
  971. IBG(default_link) = Z_LVAL_P(return_value);
  972. ++IBG(num_links);
  973. }
  974. return;
  975. }
  976. case 1:
  977. case 0:
  978. if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() ? 1 : 0 TSRMLS_CC, "s", &query,
  979. &query_len)) {
  980. ZEND_FETCH_RESOURCE2(ib_link, ibase_db_link *, NULL, IBG(default_link), LE_LINK,
  981. le_link, le_plink);
  982. bind_i = 1;
  983. break;
  984. }
  985. return;
  986. }
  987. /* open default transaction */
  988. if (ib_link == NULL || FAILURE == _php_ibase_def_trans(ib_link, &trans TSRMLS_CC)
  989. || FAILURE == _php_ibase_alloc_query(&ib_query, ib_link, trans, query, ib_link->dialect,
  990. trans_res_id TSRMLS_CC)) {
  991. return;
  992. }
  993. do {
  994. int bind_n = ZEND_NUM_ARGS() - bind_i,
  995. expected_n = ib_query.in_sqlda ? ib_query.in_sqlda->sqld : 0;
  996. if (bind_n != expected_n) {
  997. php_error_docref(NULL TSRMLS_CC, (bind_n < expected_n) ? E_WARNING : E_NOTICE,
  998. "Statement expects %d arguments, %d given", expected_n, bind_n);
  999. if (bind_n < expected_n) {
  1000. break;
  1001. }
  1002. } else if (bind_n > 0) {
  1003. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "+", &bind_args, &bind_num) == FAILURE) {
  1004. return;
  1005. }
  1006. }
  1007. if (FAILURE == _php_ibase_exec(INTERNAL_FUNCTION_PARAM_PASSTHRU, &result, &ib_query,
  1008. &bind_args[bind_i])) {
  1009. break;
  1010. }
  1011. if (result != NULL) { /* statement returns a result */
  1012. result->type = QUERY_RESULT;
  1013. /* EXECUTE PROCEDURE returns only one row => statement can be released immediately */
  1014. if (ib_query.statement_type != isc_info_sql_stmt_exec_procedure) {
  1015. ib_query.stmt = NULL; /* keep stmt when free query */
  1016. }
  1017. ZEND_REGISTER_RESOURCE(return_value, result, le_result);
  1018. }
  1019. } while (0);
  1020. _php_ibase_free_query(&ib_query TSRMLS_CC);
  1021. if (bind_args) {
  1022. efree(bind_args);
  1023. }
  1024. }
  1025. /* }}} */
  1026. /* {{{ proto int ibase_affected_rows( [ resource link_identifier ] )
  1027. Returns the number of rows affected by the previous INSERT, UPDATE or DELETE statement */
  1028. PHP_FUNCTION(ibase_affected_rows)
  1029. {
  1030. ibase_trans *trans = NULL;
  1031. ibase_db_link *ib_link;
  1032. zval *arg = NULL;
  1033. RESET_ERRMSG;
  1034. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|r", &arg) == FAILURE) {
  1035. return;
  1036. }
  1037. if (!arg) {
  1038. ZEND_FETCH_RESOURCE2(ib_link, ibase_db_link *, NULL, IBG(default_link), LE_LINK, le_link, le_plink);
  1039. if (ib_link->tr_list == NULL || ib_link->tr_list->trans == NULL) {
  1040. RETURN_FALSE;
  1041. }
  1042. trans = ib_link->tr_list->trans;
  1043. } else {
  1044. /* one id was passed, could be db or trans id */
  1045. _php_ibase_get_link_trans(INTERNAL_FUNCTION_PARAM_PASSTHRU, &arg, &ib_link, &trans);
  1046. if (trans == NULL) {
  1047. ZEND_FETCH_RESOURCE2(ib_link, ibase_db_link *, &arg, -1, LE_LINK, le_link, le_plink);
  1048. if (ib_link->tr_list == NULL || ib_link->tr_list->trans == NULL) {
  1049. RETURN_FALSE;
  1050. }
  1051. trans = ib_link->tr_list->trans;
  1052. }
  1053. }
  1054. RETURN_LONG(trans->affected_rows);
  1055. }
  1056. /* }}} */
  1057. /* {{{ proto int ibase_num_rows( resource result_identifier )
  1058. Return the number of rows that are available in a result */
  1059. #if abies_0
  1060. PHP_FUNCTION(ibase_num_rows)
  1061. {
  1062. /**
  1063. * As this function relies on the InterBase API function isc_dsql_sql_info()
  1064. * which has a couple of limitations (which I hope will be fixed in future
  1065. * releases of Firebird), this function is fairly useless. I'm leaving it
  1066. * in place for people who can live with the limitations, which I only
  1067. * found out about after I had implemented it anyway.
  1068. *
  1069. * Currently, there's no way to determine how many rows can be fetched from
  1070. * a cursor. The only number that _can_ be determined is the number of rows
  1071. * that have already been pre-fetched by the client library.
  1072. * This implies the following:
  1073. * - num_rows() always returns zero before the first fetch;
  1074. * - num_rows() for SELECT ... FOR UPDATE is broken -> never returns a
  1075. * higher number than the number of records fetched so far (no pre-fetch);
  1076. * - the result of num_rows() for other statements is merely a lower bound
  1077. * on the number of records => calling ibase_num_rows() again after a couple
  1078. * of fetches will most likely return a new (higher) figure for large result
  1079. * sets.
  1080. */
  1081. zval *result_arg;
  1082. ibase_result *ib_result;
  1083. static char info_count[] = {isc_info_sql_records};
  1084. char result[64];
  1085. RESET_ERRMSG;
  1086. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &result_arg) == FAILURE) {
  1087. return;
  1088. }
  1089. ZEND_FETCH_RESOURCE(ib_result, ibase_result *, &result_arg, -1, LE_RESULT, le_result);
  1090. if (isc_dsql_sql_info(IB_STATUS, &ib_result->stmt, sizeof(info_count), info_count, sizeof(result), result)) {
  1091. _php_ibase_error(TSRMLS_C);
  1092. RETURN_FALSE;
  1093. }
  1094. if (result[0] == isc_info_sql_records) {
  1095. unsigned i = 3, result_size = isc_vax_integer(&result[1],2);
  1096. while (result[i] != isc_info_end && i < result_size) {
  1097. short len = (short)isc_vax_integer(&result[i+1],2);
  1098. if (result[i] == isc_info_req_select_count) {
  1099. RETURN_LONG(isc_vax_integer(&result[i+3],len));
  1100. }
  1101. i += len+3;
  1102. }
  1103. }
  1104. }
  1105. #endif
  1106. /* }}} */
  1107. static int _php_ibase_var_zval(zval *val, void *data, int type, int len, /* {{{ */
  1108. int scale, int flag TSRMLS_DC)
  1109. {
  1110. static ISC_INT64 const scales[] = { 1, 10, 100, 1000,
  1111. 10000,
  1112. 100000,
  1113. 1000000,
  1114. 10000000,
  1115. 100000000,
  1116. 1000000000,
  1117. LL_LIT(10000000000),
  1118. LL_LIT(100000000000),
  1119. LL_LIT(1000000000000),
  1120. LL_LIT(10000000000000),
  1121. LL_LIT(100000000000000),
  1122. LL_LIT(1000000000000000),
  1123. LL_LIT(10000000000000000),
  1124. LL_LIT(100000000000000000),
  1125. LL_LIT(1000000000000000000)
  1126. };
  1127. switch (type & ~1) {
  1128. unsigned short l;
  1129. long n;
  1130. char string_data[255];
  1131. struct tm t;
  1132. char *format;
  1133. case SQL_VARYING:
  1134. len = ((IBVARY *) data)->vary_length;
  1135. data = ((IBVARY *) data)->vary_string;
  1136. /* no break */
  1137. case SQL_TEXT:
  1138. ZVAL_STRINGL(val,(char *) data,len,1);
  1139. break;
  1140. case SQL_SHORT:
  1141. n = *(short *) data;
  1142. goto _sql_long;
  1143. case SQL_INT64:
  1144. #if (SIZEOF_LONG >= 8)
  1145. n = *(long *) data;
  1146. goto _sql_long;
  1147. #else
  1148. if (scale == 0) {
  1149. l = slprintf(string_data, sizeof(string_data), "%" LL_MASK "d", *(ISC_INT64 *) data);
  1150. ZVAL_STRINGL(val,string_data,l,1);
  1151. } else {
  1152. ISC_INT64 n = *(ISC_INT64 *) data, f = scales[-scale];
  1153. if (n >= 0) {
  1154. l = slprintf(string_data, sizeof(string_data), "%" LL_MASK "d.%0*" LL_MASK "d", n / f, -scale, n % f);
  1155. } else if (n <= -f) {
  1156. l = slprintf(string_data, sizeof(string_data), "%" LL_MASK "d.%0*" LL_MASK "d", n / f, -scale, -n % f);
  1157. } else {
  1158. l = slprintf(string_data, sizeof(string_data), "-0.%0*" LL_MASK "d", -scale, -n % f);
  1159. }
  1160. ZVAL_STRINGL(val,string_data,l,1);
  1161. }
  1162. break;
  1163. #endif
  1164. case SQL_LONG:
  1165. n = *(ISC_LONG *) data;
  1166. _sql_long:
  1167. if (scale == 0) {
  1168. ZVAL_LONG(val,n);
  1169. } else {
  1170. long f = (long) scales[-scale];
  1171. if (n >= 0) {
  1172. l = slprintf(string_data, sizeof(string_data), "%ld.%0*ld", n / f, -scale, n % f);
  1173. } else if (n <= -f) {
  1174. l = slprintf(string_data, sizeof(string_data), "%ld.%0*ld", n / f, -scale, -n % f);
  1175. } else {
  1176. l = slprintf(string_data, sizeof(string_data), "-0.%0*ld", -scale, -n % f);
  1177. }
  1178. ZVAL_STRINGL(val,string_data,l,1);
  1179. }
  1180. break;
  1181. case SQL_FLOAT:
  1182. ZVAL_DOUBLE(val, *(float *) data);
  1183. break;
  1184. case SQL_DOUBLE:
  1185. ZVAL_DOUBLE(val, *(double *) data);
  1186. break;
  1187. case SQL_DATE: /* == case SQL_TIMESTAMP: */
  1188. format = INI_STR("ibase.timestampformat");
  1189. isc_decode_timestamp((ISC_TIMESTAMP *) data, &t);
  1190. goto format_date_time;
  1191. case SQL_TYPE_DATE:
  1192. format = INI_STR("ibase.dateformat");
  1193. isc_decode_sql_date((ISC_DATE *) data, &t);
  1194. goto format_date_time;
  1195. case SQL_TYPE_TIME:
  1196. format = INI_STR("ibase.timeformat");
  1197. isc_decode_sql_time((ISC_TIME *) data, &t);
  1198. format_date_time:
  1199. /*
  1200. XXX - Might have to remove this later - seems that isc_decode_date()
  1201. always sets tm_isdst to 0, sometimes incorrectly (InterBase 6 bug?)
  1202. */
  1203. t.tm_isdst = -1;
  1204. #if HAVE_TM_ZONE
  1205. t.tm_zone = tzname[0];
  1206. #endif
  1207. if (flag & PHP_IBASE_UNIXTIME) {
  1208. ZVAL_LONG(val, mktime(&t));
  1209. } else {
  1210. #if HAVE_STRFTIME
  1211. l = strftime(string_data, sizeof(string_data), format, &t);
  1212. #else
  1213. switch (type & ~1) {
  1214. default:
  1215. l = slprintf(string_data, sizeof(string_data), "%02d/%02d/%4d %02d:%02d:%02d", t.tm_mon+1, t.tm_mday,
  1216. t.tm_year + 1900, t.tm_hour, t.tm_min, t.tm_sec);
  1217. break;
  1218. case SQL_TYPE_DATE:
  1219. l = slprintf(string_data, sizeof(string_data), "%02d/%02d/%4d", t.tm_mon + 1, t.tm_mday, t.tm_year+1900);
  1220. break;
  1221. case SQL_TYPE_TIME:
  1222. l = slprintf(string_data, sizeof(string_data), "%02d:%02d:%02d", t.tm_hour, t.tm_min, t.tm_sec);
  1223. break;
  1224. }
  1225. #endif
  1226. ZVAL_STRINGL(val,string_data,l,1);
  1227. break;
  1228. }
  1229. } /* switch (type) */
  1230. return SUCCESS;
  1231. }
  1232. /* }}} */
  1233. static int _php_ibase_arr_zval(zval *ar_zval, char *data, unsigned long data_size, /* {{{ */
  1234. ibase_array *ib_array, int dim, int flag TSRMLS_DC)
  1235. {
  1236. /**
  1237. * Create multidimension array - recursion function
  1238. */
  1239. int
  1240. u_bound = ib_array->ar_desc.array_desc_bounds[dim].array_bound_upper,
  1241. l_bound = ib_array->ar_desc.array_desc_bounds[dim].array_bound_lower,
  1242. dim_len = 1 + u_bound - l_bound;
  1243. unsigned short i;
  1244. if (dim < ib_array->ar_desc.array_desc_dimensions) { /* array again */
  1245. unsigned long slice_size = data_size / dim_len;
  1246. array_init(ar_zval);
  1247. for (i = 0; i < dim_len; ++i) {
  1248. zval *slice_zval;
  1249. ALLOC_INIT_ZVAL(slice_zval);
  1250. /* recursion here */
  1251. if (FAILURE == _php_ibase_arr_zval(slice_zval, data, slice_size, ib_array, dim + 1,
  1252. flag TSRMLS_CC)) {
  1253. return FAILURE;
  1254. }
  1255. data += slice_size;
  1256. add_index_zval(ar_zval,l_bound+i,slice_zval);
  1257. }
  1258. } else { /* data at last */
  1259. if (FAILURE == _php_ibase_var_zval(ar_zval, data, ib_array->el_type,
  1260. ib_array->ar_desc.array_desc_length, ib_array->ar_desc.array_desc_scale, flag TSRMLS_CC)) {
  1261. return FAILURE;
  1262. }
  1263. /* fix for peculiar handling of VARCHAR arrays;
  1264. truncate the field to the cstring length */
  1265. if (ib_array->ar_desc.array_desc_dtype == blr_varying ||
  1266. ib_array->ar_desc.array_desc_dtype == blr_varying2) {
  1267. Z_STRLEN_P(ar_zval) = strlen(Z_STRVAL_P(ar_zval));
  1268. }
  1269. }
  1270. return SUCCESS;
  1271. }
  1272. /* }}} */
  1273. static void _php_ibase_fetch_hash(INTERNAL_FUNCTION_PARAMETERS, int fetch_type) /* {{{ */
  1274. {
  1275. zval *result_arg;
  1276. long i, array_cnt = 0, flag = 0;
  1277. ibase_result *ib_result;
  1278. RESET_ERRMSG;
  1279. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|l", &result_arg, &flag)) {
  1280. return;
  1281. }
  1282. ZEND_FETCH_RESOURCE(ib_result, ibase_result *, &result_arg, -1, LE_RESULT, le_result);
  1283. if (ib_result->out_sqlda == NULL || !ib_result->has_more_rows) {
  1284. RETURN_FALSE;
  1285. }
  1286. if (ib_result->statement_type != isc_info_sql_stmt_exec_procedure) {
  1287. if (isc_dsql_fetch(IB_STATUS, &ib_result->stmt, 1, ib_result->out_sqlda)) {
  1288. ib_result->has_more_rows = 0;
  1289. if (IB_STATUS[0] && IB_STATUS[1]) { /* error in fetch */
  1290. _php_ibase_error(TSRMLS_C);
  1291. }
  1292. RETURN_FALSE;
  1293. }
  1294. } else {
  1295. ib_result->has_more_rows = 0;
  1296. }
  1297. array_init(return_value);
  1298. for (i = 0; i < ib_result->out_sqlda->sqld; ++i) {
  1299. XSQLVAR *var = &ib_result->out_sqlda->sqlvar[i];
  1300. char buf[METADATALENGTH+4], *alias = var->aliasname;
  1301. if (! (fetch_type & FETCH_ROW)) {
  1302. int i = 0;
  1303. char const *base = "FIELD"; /* use 'FIELD' if name is empty */
  1304. /**
  1305. * Ensure no two columns have identical names:
  1306. * keep generating new names until we find one that is unique.
  1307. */
  1308. switch (*alias) {
  1309. void *p;
  1310. default:
  1311. i = 1;
  1312. base = alias;
  1313. while (SUCCESS == zend_symtable_find(
  1314. Z_ARRVAL_P(return_value),alias,strlen(alias)+1,&p)) {
  1315. case '\0':
  1316. snprintf(alias = buf, sizeof(buf), "%s_%02d", base, i++);
  1317. }
  1318. }
  1319. }
  1320. if (((var->sqltype & 1) == 0) || *var->sqlind != -1) {
  1321. zval *result;
  1322. ALLOC_INIT_ZVAL(result);
  1323. switch (var->sqltype & ~1) {
  1324. default:
  1325. _php_ibase_var_zval(result, var->sqldata, var->sqltype, var->sqllen,
  1326. var->sqlscale, flag TSRMLS_CC);
  1327. break;
  1328. case SQL_BLOB:
  1329. if (flag & PHP_IBASE_FETCH_BLOBS) { /* fetch blob contents into hash */
  1330. ibase_blob blob_handle;
  1331. unsigned long max_len = 0;
  1332. static char bl_items[] = {isc_info_blob_total_length};
  1333. char bl_info[20];
  1334. unsigned short i;
  1335. blob_handle.bl_handle = NULL;
  1336. blob_handle.bl_qd = *(ISC_QUAD *) var->sqldata;
  1337. if (isc_open_blob(IB_STATUS, &ib_result->link->handle, &ib_result->trans->handle,
  1338. &blob_handle.bl_handle, &blob_handle.bl_qd)) {
  1339. _php_ibase_error(TSRMLS_C);
  1340. goto _php_ibase_fetch_error;
  1341. }
  1342. if (isc_blob_info(IB_STATUS, &blob_handle.bl_handle, sizeof(bl_items),
  1343. bl_items, sizeof(bl_info), bl_info)) {
  1344. _php_ibase_error(TSRMLS_C);
  1345. goto _php_ibase_fetch_error;
  1346. }
  1347. /* find total length of blob's data */
  1348. for (i = 0; i < sizeof(bl_info); ) {
  1349. unsigned short item_len;
  1350. char item = bl_info[i++];
  1351. if (item == isc_info_end || item == isc_info_truncated ||
  1352. item == isc_info_error || i >= sizeof(bl_info)) {
  1353. _php_ibase_module_error("Could not determine BLOB size (internal error)"
  1354. TSRMLS_CC);
  1355. goto _php_ibase_fetch_error;
  1356. }
  1357. item_len = (unsigned short) isc_vax_integer(&bl_info[i], 2);
  1358. if (item == isc_info_blob_total_length) {
  1359. max_len = isc_vax_integer(&bl_info[i+2], item_len);
  1360. break;
  1361. }
  1362. i += item_len+2;
  1363. }
  1364. if (max_len == 0) {
  1365. ZVAL_STRING(result, "", 1);
  1366. } else if (SUCCESS != _php_ibase_blob_get(result, &blob_handle,
  1367. max_len TSRMLS_CC)) {
  1368. goto _php_ibase_fetch_error;
  1369. }
  1370. if (isc_close_blob(IB_STATUS, &blob_handle.bl_handle)) {
  1371. _php_ibase_error(TSRMLS_C);
  1372. goto _php_ibase_fetch_error;
  1373. }
  1374. } else { /* blob id only */
  1375. ISC_QUAD bl_qd = *(ISC_QUAD *) var->sqldata;
  1376. ZVAL_STRINGL(result,_php_ibase_quad_to_string(bl_qd), BLOB_ID_LEN, 0);
  1377. }
  1378. break;
  1379. case SQL_ARRAY:
  1380. if (flag & PHP_IBASE_FETCH_ARRAYS) { /* array can be *huge* so only fetch if asked */
  1381. ISC_QUAD ar_qd = *(ISC_QUAD *) var->sqldata;
  1382. ibase_array *ib_array = &ib_result->out_array[array_cnt++];
  1383. void *ar_data = emalloc(ib_array->ar_size);
  1384. if (isc_array_get_slice(IB_STATUS, &ib_result->link->handle,
  1385. &ib_result->trans->handle, &ar_qd, &ib_array->ar_desc,
  1386. ar_data, &ib_array->ar_size)) {
  1387. _php_ibase_error(TSRMLS_C);
  1388. efree(ar_data);
  1389. goto _php_ibase_fetch_error;
  1390. }
  1391. if (FAILURE == _php_ibase_arr_zval(result, ar_data, ib_array->ar_size, ib_array,
  1392. 0, flag TSRMLS_CC)) {
  1393. efree(ar_data);
  1394. goto _php_ibase_fetch_error;
  1395. }
  1396. efree(ar_data);
  1397. } else { /* blob id only */
  1398. ISC_QUAD ar_qd = *(ISC_QUAD *) var->sqldata;
  1399. ZVAL_STRINGL(result,_php_ibase_quad_to_string(ar_qd), BLOB_ID_LEN, 0);
  1400. }
  1401. break;
  1402. _php_ibase_fetch_error:
  1403. zval_dtor(result);
  1404. FREE_ZVAL(result);
  1405. RETURN_FALSE;
  1406. } /* switch */
  1407. if (fetch_type & FETCH_ROW) {
  1408. add_index_zval(return_value, i, result);
  1409. } else {
  1410. add_assoc_zval(return_value, alias, result);
  1411. }
  1412. } else {
  1413. if (fetch_type & FETCH_ROW) {
  1414. add_index_null(return_value, i);
  1415. } else {
  1416. add_assoc_null(return_value, alias);
  1417. }
  1418. }
  1419. } /* for field */
  1420. }
  1421. /* }}} */
  1422. /* {{{ proto array ibase_fetch_row(resource result [, int fetch_flags])
  1423. Fetch a row from the results of a query */
  1424. PHP_FUNCTION(ibase_fetch_row)
  1425. {
  1426. _php_ibase_fetch_hash(INTERNAL_FUNCTION_PARAM_PASSTHRU, FETCH_ROW);
  1427. }
  1428. /* }}} */
  1429. /* {{{ proto array ibase_fetch_assoc(resource result [, int fetch_flags])
  1430. Fetch a row from the results of a query */
  1431. PHP_FUNCTION(ibase_fetch_assoc)
  1432. {
  1433. _php_ibase_fetch_hash(INTERNAL_FUNCTION_PARAM_PASSTHRU, FETCH_ARRAY);
  1434. }
  1435. /* }}} */
  1436. /* {{{ proto object ibase_fetch_object(resource result [, int fetch_flags])
  1437. Fetch a object from the results of a query */
  1438. PHP_FUNCTION(ibase_fetch_object)
  1439. {
  1440. _php_ibase_fetch_hash(INTERNAL_FUNCTION_PARAM_PASSTHRU, FETCH_ARRAY);
  1441. if (Z_TYPE_P(return_value) == IS_ARRAY) {
  1442. object_and_properties_init(return_value, ZEND_STANDARD_CLASS_DEF_PTR, Z_ARRVAL_P(return_value));
  1443. }
  1444. }
  1445. /* }}} */
  1446. /* {{{ proto bool ibase_name_result(resource result, string name)
  1447. Assign a name to a result for use with ... WHERE CURRENT OF <name> statements */
  1448. PHP_FUNCTION(ibase_name_result)
  1449. {
  1450. zval *result_arg;
  1451. char *name_arg;
  1452. int name_arg_len;
  1453. ibase_result *ib_result;
  1454. RESET_ERRMSG;
  1455. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rs", &result_arg, &name_arg, &name_arg_len) == FAILURE) {
  1456. return;
  1457. }
  1458. ZEND_FETCH_RESOURCE(ib_result, ibase_result *, &result_arg, -1, LE_RESULT, le_result);
  1459. if (isc_dsql_set_cursor_name(IB_STATUS, &ib_result->stmt, name_arg, 0)) {
  1460. _php_ibase_error(TSRMLS_C);
  1461. RETURN_FALSE;
  1462. }
  1463. RETURN_TRUE;
  1464. }
  1465. /* }}} */
  1466. /* {{{ proto bool ibase_free_result(resource result)
  1467. Free the memory used by a result */
  1468. PHP_FUNCTION(ibase_free_result)
  1469. {
  1470. zval *result_arg;
  1471. ibase_result *ib_result;
  1472. RESET_ERRMSG;
  1473. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &result_arg) == FAILURE) {
  1474. return;
  1475. }
  1476. ZEND_FETCH_RESOURCE(ib_result, ibase_result *, &result_arg, -1, LE_RESULT, le_result);
  1477. zend_list_delete(Z_RESVAL_P(result_arg));
  1478. RETURN_TRUE;
  1479. }
  1480. /* }}} */
  1481. /* {{{ proto resource ibase_prepare(resource link_identifier[, string query [, resource trans_identifier ]])
  1482. Prepare a query for later execution */
  1483. PHP_FUNCTION(ibase_prepare)
  1484. {
  1485. zval *link_arg, *trans_arg;
  1486. ibase_db_link *ib_link;
  1487. ibase_trans *trans = NULL;
  1488. int query_len, trans_res_id = 0;
  1489. ibase_query *ib_query;
  1490. char *query;
  1491. RESET_ERRMSG;
  1492. if (ZEND_NUM_ARGS() == 1) {
  1493. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &query, &query_len) == FAILURE) {
  1494. return;
  1495. }
  1496. ZEND_FETCH_RESOURCE2(ib_link, ibase_db_link *, NULL, IBG(default_link), LE_LINK, le_link, le_plink);
  1497. } else if (ZEND_NUM_ARGS() == 2) {
  1498. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rs", &link_arg, &query, &query_len) == FAILURE) {
  1499. return;
  1500. }
  1501. _php_ibase_get_link_trans(INTERNAL_FUNCTION_PARAM_PASSTHRU, &link_arg, &ib_link, &trans);
  1502. if (trans != NULL) {
  1503. trans_res_id = Z_RESVAL_P(link_arg);
  1504. }
  1505. } else {
  1506. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rrs", &link_arg, &trans_arg, &query, &query_len) == FAILURE) {
  1507. return;
  1508. }
  1509. ZEND_FETCH_RESOURCE2(ib_link, ibase_db_link *, &link_arg, -1, LE_LINK, le_link, le_plink);
  1510. ZEND_FETCH_RESOURCE(trans, ibase_trans *, &trans_arg, -1, LE_TRANS, le_trans);
  1511. trans_res_id = Z_RESVAL_P(trans_arg);
  1512. }
  1513. if (FAILURE == _php_ibase_def_trans(ib_link, &trans TSRMLS_CC)) {
  1514. RETURN_FALSE;
  1515. }
  1516. ib_query = (ibase_query *) emalloc(sizeof(ibase_query));
  1517. if (FAILURE == _php_ibase_alloc_query(ib_query, ib_link, trans, query, ib_link->dialect, trans_res_id TSRMLS_CC)) {
  1518. efree(ib_query);
  1519. RETURN_FALSE;
  1520. }
  1521. ZEND_REGISTER_RESOURCE(return_value, ib_query, le_query);
  1522. }
  1523. /* }}} */
  1524. /* {{{ proto mixed ibase_execute(resource query [, mixed bind_arg [, mixed bind_arg [, ...]]])
  1525. Execute a previously prepared query */
  1526. PHP_FUNCTION(ibase_execute)
  1527. {
  1528. zval *query, ***args = NULL;
  1529. ibase_query *ib_query;
  1530. ibase_result *result = NULL;
  1531. ALLOCA_FLAG(use_heap)
  1532. RESET_ERRMSG;
  1533. RETVAL_FALSE;
  1534. if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS() ? 1 : 0 TSRMLS_CC, "r", &query)) {
  1535. return;
  1536. }
  1537. ZEND_FETCH_RESOURCE(ib_query, ibase_query *, &query, -1, LE_QUERY, le_query);
  1538. do {
  1539. int bind_n = ZEND_NUM_ARGS() - 1,
  1540. expected_n = ib_query->in_sqlda ? ib_query->in_sqlda->sqld : 0;
  1541. if (bind_n != expected_n) {
  1542. php_error_docref(NULL TSRMLS_CC, (bind_n < expected_n) ? E_WARNING : E_NOTICE,
  1543. "Statement expects %d arguments, %d given", expected_n, bind_n);
  1544. if (bind_n < expected_n) {
  1545. break;
  1546. }
  1547. }
  1548. /* have variables to bind */
  1549. args = (zval ***) do_alloca((expected_n + 1) * sizeof(zval **), use_heap);
  1550. if (FAILURE == zend_get_parameters_array_ex((expected_n + 1), args)) {
  1551. break;
  1552. }
  1553. /* Have we used this cursor before and it's still open (exec proc has no cursor) ? */
  1554. if (ib_query->result_res_id != 0
  1555. && ib_query->statement_type != isc_info_sql_stmt_exec_procedure) {
  1556. IBDEBUG("Implicitly closing a cursor");
  1557. if (isc_dsql_free_statement(IB_STATUS, &ib_query->stmt, DSQL_close)) {
  1558. _php_ibase_error(TSRMLS_C);
  1559. break;
  1560. }
  1561. /* invalidate previous results returned by this query (not necessary for exec proc) */
  1562. zend_list_delete(ib_query->result_res_id);
  1563. }
  1564. if (FAILURE == _php_ibase_exec(INTERNAL_FUNCTION_PARAM_PASSTHRU, &result, ib_query,
  1565. &args[1])) {
  1566. break;
  1567. }
  1568. /* free the query if trans handle was released */
  1569. if (ib_query->trans->handle == NULL) {
  1570. zend_list_delete(Z_LVAL_P(query));
  1571. }
  1572. if (result != NULL) {
  1573. result->type = EXECUTE_RESULT;
  1574. if (ib_query->statement_type == isc_info_sql_stmt_exec_procedure) {
  1575. result->stmt = NULL;
  1576. }
  1577. ib_query->result_res_id = zend_list_insert(result, le_result TSRMLS_CC);
  1578. RETVAL_RESOURCE(ib_query->result_res_id);
  1579. }
  1580. } while (0);
  1581. if (args) {
  1582. free_alloca(args, use_heap);
  1583. }
  1584. }
  1585. /* }}} */
  1586. /* {{{ proto bool ibase_free_query(resource query)
  1587. Free memory used by a query */
  1588. PHP_FUNCTION(ibase_free_query)
  1589. {
  1590. zval *query_arg;
  1591. ibase_query *ib_query;
  1592. RESET_ERRMSG;
  1593. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &query_arg) == FAILURE) {
  1594. return;
  1595. }
  1596. ZEND_FETCH_RESOURCE(ib_query, ibase_query *, &query_arg, -1, LE_QUERY, le_query);
  1597. zend_list_delete(Z_RESVAL_P(query_arg));
  1598. RETURN_TRUE;
  1599. }
  1600. /* }}} */
  1601. /* {{{ proto int ibase_num_fields(resource query_result)
  1602. Get the number of fields in result */
  1603. PHP_FUNCTION(ibase_num_fields)
  1604. {
  1605. zval *result;
  1606. int type;
  1607. XSQLDA *sqlda;
  1608. RESET_ERRMSG;
  1609. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &result) == FAILURE) {
  1610. return;
  1611. }
  1612. zend_list_find(Z_RESVAL_P(result), &type);
  1613. if (type == le_query) {
  1614. ibase_query *ib_query;
  1615. ZEND_FETCH_RESOURCE(ib_query, ibase_query *, &result, -1, LE_QUERY, le_query);
  1616. sqlda = ib_query->out_sqlda;
  1617. } else {
  1618. ibase_result *ib_result;
  1619. ZEND_FETCH_RESOURCE(ib_result, ibase_result *, &result, -1, LE_RESULT, le_result);
  1620. sqlda = ib_result->out_sqlda;
  1621. }
  1622. if (sqlda == NULL) {
  1623. RETURN_LONG(0);
  1624. } else {
  1625. RETURN_LONG(sqlda->sqld);
  1626. }
  1627. }
  1628. /* }}} */
  1629. static void _php_ibase_field_info(zval *return_value, XSQLVAR *var) /* {{{ */
  1630. {
  1631. unsigned short len;
  1632. char buf[16], *s = buf;
  1633. array_init(return_value);
  1634. add_index_stringl(return_value, 0, var->sqlname, var->sqlname_length, 1);
  1635. add_assoc_stringl(return_value, "name", var->sqlname, var->sqlname_length, 1);
  1636. add_index_stringl(return_value, 1, var->aliasname, var->aliasname_length, 1);
  1637. add_assoc_stringl(return_value, "alias", var->aliasname, var->aliasname_length, 1);
  1638. add_index_stringl(return_value, 2, var->relname, var->relname_length, 1);
  1639. add_assoc_stringl(return_value, "relation", var->relname, var->relname_length, 1);
  1640. len = slprintf(buf, 16, "%d", var->sqllen);
  1641. add_index_stringl(return_value, 3, buf, len, 1);
  1642. add_assoc_stringl(return_value, "length", buf, len, 1);
  1643. if (var->sqlscale < 0) {
  1644. unsigned short precision = 0;
  1645. switch (var->sqltype & ~1) {
  1646. case SQL_SHORT:
  1647. precision = 4;
  1648. break;
  1649. case SQL_LONG:
  1650. precision = 9;
  1651. break;
  1652. case SQL_INT64:
  1653. precision = 18;
  1654. break;
  1655. }
  1656. len = slprintf(buf, 16, "NUMERIC(%d,%d)", precision, -var->sqlscale);
  1657. add_index_stringl(return_value, 4, s, len, 1);
  1658. add_assoc_stringl(return_value, "type", s, len, 1);
  1659. } else {
  1660. switch (var->sqltype & ~1) {
  1661. case SQL_TEXT:
  1662. s = "CHAR";
  1663. break;
  1664. case SQL_VARYING:
  1665. s = "VARCHAR";
  1666. break;
  1667. case SQL_SHORT:
  1668. s = "SMALLINT";
  1669. break;
  1670. case SQL_LONG:
  1671. s = "INTEGER";
  1672. break;
  1673. case SQL_FLOAT:
  1674. s = "FLOAT"; break;
  1675. case SQL_DOUBLE:
  1676. case SQL_D_FLOAT:
  1677. s = "DOUBLE PRECISION"; break;
  1678. case SQL_INT64:
  1679. s = "BIGINT";
  1680. break;
  1681. case SQL_TIMESTAMP:
  1682. s = "TIMESTAMP";
  1683. break;
  1684. case SQL_TYPE_DATE:
  1685. s = "DATE";
  1686. break;
  1687. case SQL_TYPE_TIME:
  1688. s = "TIME";
  1689. break;
  1690. case SQL_BLOB:
  1691. s = "BLOB";
  1692. break;
  1693. case SQL_ARRAY:
  1694. s = "ARRAY";
  1695. break;
  1696. /* FIXME: provide more detailed information about the field type, field size
  1697. * and array dimensions */
  1698. case SQL_QUAD:
  1699. s = "QUAD";
  1700. break;
  1701. }
  1702. add_index_string(return_value, 4, s, 1);
  1703. add_assoc_string(return_value, "type", s, 1);
  1704. }
  1705. }
  1706. /* }}} */
  1707. /* {{{ proto array ibase_field_info(resource query_result, int field_number)
  1708. Get information about a field */
  1709. PHP_FUNCTION(ibase_field_info)
  1710. {
  1711. zval *result_arg;
  1712. long field_arg;
  1713. int type;
  1714. XSQLDA *sqlda;
  1715. RESET_ERRMSG;
  1716. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl", &result_arg, &field_arg) == FAILURE) {
  1717. return;
  1718. }
  1719. zend_list_find(Z_RESVAL_P(result_arg), &type);
  1720. if (type == le_query) {
  1721. ibase_query *ib_query;
  1722. ZEND_FETCH_RESOURCE(ib_query, ibase_query *, &result_arg, -1, LE_QUERY, le_query);
  1723. sqlda = ib_query->out_sqlda;
  1724. } else {
  1725. ibase_result *ib_result;
  1726. ZEND_FETCH_RESOURCE(ib_result, ibase_result *, &result_arg, -1, LE_RESULT, le_result);
  1727. sqlda = ib_result->out_sqlda;
  1728. }
  1729. if (sqlda == NULL) {
  1730. _php_ibase_module_error("Trying to get field info from a non-select query" TSRMLS_CC);
  1731. RETURN_FALSE;
  1732. }
  1733. if (field_arg < 0 || field_arg >= sqlda->sqld) {
  1734. RETURN_FALSE;
  1735. }
  1736. _php_ibase_field_info(return_value, sqlda->sqlvar + field_arg);
  1737. }
  1738. /* }}} */
  1739. /* {{{ proto int ibase_num_params(resource query)
  1740. Get the number of params in a prepared query */
  1741. PHP_FUNCTION(ibase_num_params)
  1742. {
  1743. zval *result;
  1744. ibase_query *ib_query;
  1745. RESET_ERRMSG;
  1746. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &result) == FAILURE) {
  1747. return;
  1748. }
  1749. ZEND_FETCH_RESOURCE(ib_query, ibase_query *, &result, -1, LE_QUERY, le_query);
  1750. if (ib_query->in_sqlda == NULL) {
  1751. RETURN_LONG(0);
  1752. } else {
  1753. RETURN_LONG(ib_query->in_sqlda->sqld);
  1754. }
  1755. }
  1756. /* }}} */
  1757. /* {{{ proto array ibase_param_info(resource query, int field_number)
  1758. Get information about a parameter */
  1759. PHP_FUNCTION(ibase_param_info)
  1760. {
  1761. zval *result_arg;
  1762. long field_arg;
  1763. ibase_query *ib_query;
  1764. RESET_ERRMSG;
  1765. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl", &result_arg, &field_arg) == FAILURE) {
  1766. return;
  1767. }
  1768. ZEND_FETCH_RESOURCE(ib_query, ibase_query *, &result_arg, -1, LE_QUERY, le_query);
  1769. if (ib_query->in_sqlda == NULL) {
  1770. RETURN_FALSE;
  1771. }
  1772. if (field_arg < 0 || field_arg >= ib_query->in_sqlda->sqld) {
  1773. RETURN_FALSE;
  1774. }
  1775. _php_ibase_field_info(return_value,ib_query->in_sqlda->sqlvar + field_arg);
  1776. }
  1777. /* }}} */
  1778. #endif /* HAVE_IBASE */
  1779. /*
  1780. * Local variables:
  1781. * tab-width: 4
  1782. * c-basic-offset: 4
  1783. * End:
  1784. * vim600: sw=4 ts=4 fdm=marker
  1785. * vim<600: sw=4 ts=4
  1786. */