tripal_core.chado_query.api.inc 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725
  1. <?php
  2. /**
  3. * @file
  4. * Provides an API for querying of chado including inserting, updating, deleting and
  5. * selecting from chado.
  6. */
  7. /**
  8. * @defgroup tripal_chado_query_api Chado Query API
  9. * @ingroup tripal_chado_api
  10. * @{
  11. * Provides an API for querying of chado including inserting, updating, deleting and
  12. * selecting from specific chado tables. There is also a generic function, chado_query(),
  13. * to execute and SQL statement on chado. It is ideal to use these functions to interact
  14. * with chado in order to keep your module compatible with both local & external chado
  15. * databases. Furthermore, it ensures connection to the chado database is taken care
  16. * of for you.
  17. *
  18. * Generic Queries to a specifc chado table:
  19. *
  20. * chado_select_record( [table name], [columns to select], [specify record to select], [options*] )
  21. * This function allows you to select various columns from the specified chado table. Although
  22. * you can only select from a single table, you can specify the record to select using values
  23. * from related tables through use of a nested array. For example, the following code shows
  24. * you how to select the name and uniquename of a feature based on it's type and source
  25. * organism.
  26. * @code
  27. * $values = array(
  28. * 'organism_id' => array(
  29. * 'genus' => 'Citrus',
  30. * 'species' => 'sinensis',
  31. * ),
  32. * 'type_id' => array (
  33. * 'cv_id' => array (
  34. * 'name' => 'sequence',
  35. * ),
  36. * 'name' => 'gene',
  37. * 'is_obsolete' => 0
  38. * ),
  39. * );
  40. * $result = chado_select_record(
  41. * 'feature', // table to select from
  42. * array('name', 'uniquename'), // columns to select
  43. * $values // record to select (see variable defn. above)
  44. * );
  45. * @endcode
  46. *
  47. * chado_insert_record( [table name], [values to insert], [options*] )
  48. * This function allows you to insert a single record into a specific table. The values to
  49. * insert are specified using an associative array where the keys are the column names to
  50. * insert into and they point to the value to be inserted into that column. If the column
  51. * is a foreign key, the key will point to an array specifying the record in the foreign
  52. * table and then the primary key of that record will be inserted in the column. For example,
  53. * the following code will insert a feature and for the type_id, the cvterm.cvterm_id of
  54. * the cvterm record will be inserted and for the organism_id, the organism.organism_id
  55. * of the organism_record will be inserted.
  56. * @code
  57. * $values = array(
  58. * 'organism_id' => array(
  59. * 'genus' => 'Citrus',
  60. * 'species' => 'sinensis',
  61. * ),
  62. * 'name' => 'orange1.1g000034m.g',
  63. * 'uniquename' => 'orange1.1g000034m.g',
  64. * 'type_id' => array (
  65. * 'cv_id' => array (
  66. * 'name' => 'sequence',
  67. * ),
  68. * 'name' => 'gene',
  69. * 'is_obsolete' => 0
  70. * ),
  71. * );
  72. * $result = chado_insert_record(
  73. * 'feature', // table to insert into
  74. * $values // values to insert
  75. * );
  76. * @endcode
  77. *
  78. * chado_update_record( [table name], [specify record to update], [values to change], [options*] )
  79. * This function allows you to update records in a specific chado table. The record(s)
  80. * you wish to update are specified the same as in the select function above and
  81. * the values to be update are specified the same as the values to be inserted were. For
  82. * example, the following code species that a feature with a given uniquename, organism_id,
  83. * and type_id (the unique constraint for the feature table) will be updated with a new name,
  84. * and the type changed from a gene to an mRNA.
  85. * @code
  86. * $umatch = array(
  87. * 'organism_id' => array(
  88. * 'genus' => 'Citrus',
  89. * 'species' => 'sinensis',
  90. * ),
  91. * 'uniquename' => 'orange1.1g000034m.g7',
  92. * 'type_id' => array (
  93. * 'cv_id' => array (
  94. * 'name' => 'sequence',
  95. * ),
  96. * 'name' => 'gene',
  97. * 'is_obsolete' => 0
  98. * ),
  99. * );
  100. * $uvalues = array(
  101. * 'name' => 'orange1.1g000034m.g',
  102. * 'type_id' => array (
  103. * 'cv_id' => array (
  104. * 'name' => 'sequence',
  105. * ),
  106. * 'name' => 'mRNA',
  107. * 'is_obsolete' => 0
  108. * ),
  109. * );
  110. * $result = chado_update_record('feature',$umatch,$uvalues);
  111. * @endcode
  112. *
  113. * chado_delete_record( [table name], [specify records to delete], [options*] )
  114. * This function allows you to delete records from a specific chado table. The record(s)
  115. * to delete are specified the same as the record to select/update was above. For example,
  116. * the following code will delete all genes from the organism Citrus sinensis.
  117. * @code
  118. * $values = array(
  119. * 'organism_id' => array(
  120. * 'genus' => 'Citrus',
  121. * 'species' => 'sinensis',
  122. * ),
  123. * 'type_id' => array (
  124. * 'cv_id' => array (
  125. * 'name' => 'sequence',
  126. * ),
  127. * 'name' => 'gene',
  128. * 'is_obsolete' => 0
  129. * ),
  130. * );
  131. * $result = chado_select_record(
  132. * 'feature', // table to select from
  133. * $values // records to delete (see variable defn. above)
  134. * );
  135. * @endcode
  136. *
  137. * Generic Queries for any SQL:
  138. *
  139. * Often it is necessary to select from more then one table in chado or to execute
  140. * other complex queries that cannot be handled efficiently by the above functions. It is
  141. * for this reason that the chado_query( [sql string], [arguments to sub-in to the sql] )
  142. * function was created. This function allows you to execute any SQL directly on the
  143. * chado database and should be used with care. If any user input will be used in the query
  144. * make sure to put a placeholder in your SQL string and then define the value in the
  145. * arguments array. This will make sure that the user input is santized and safe through
  146. * type-checking and escaping. The following code shows an example of how to use user input
  147. * resulting from a form and would be called withing the form submit function.
  148. * @code
  149. * $sql = "SELECT F.name, CVT.name as type_name, ORG.common_name
  150. * FROM feature F
  151. * LEFT JOIN cvterm CVT ON F.type_id = CVT.cvterm_id
  152. * LEFT JOIN organism ORG ON F.organism_id = ORG.organism_id
  153. * WHERE
  154. * F.uniquename = :feature_uniquename";
  155. * $args = array( ':feature_uniquename' => $form_state['values']['uniquename'] );
  156. * $result = chado_query( $sql, $args );
  157. * foreach ($result as $r) { [Do something with the records here] }
  158. * @endcode
  159. *
  160. * If you are going to need more then a couple fields, you might want to use the
  161. * Chado Variables API (specifically chado_generate_var()) to select all
  162. * of the common fields needed including following foreign keys.
  163. *
  164. * Loading of Variables from chado data:
  165. *
  166. * These functions, chado_generate_var() and chado_expand_var(), generate objects
  167. * containing the full details of a record(s) in chado. These should be used in all
  168. * theme templates.
  169. *
  170. * This differs from the objects returned by chado_select_record in so far as all foreign key
  171. * relationships have been followed meaning you have more complete details. Thus this function
  172. * should be used whenever you need a full variable and chado_select_record should be used if
  173. * you only case about a few columns.
  174. *
  175. * The initial variable is generated by the
  176. * chado_generate_var([table], [filter criteria], [optional options])
  177. * function. An example of how to use this function is:
  178. * @code
  179. $values = array(
  180. 'name' => 'Medtr4g030710'
  181. );
  182. $features = chado_generate_var('feature', $values);
  183. * @endcode
  184. * This will return an object if there is only one feature with the name Medtr4g030710 or it will
  185. * return an array of feature objects if more than one feature has that name.
  186. *
  187. * Some tables and fields are excluded by default. To have those tables & fields added to
  188. * your variable you can use the
  189. * chado_expand_var([chado variable], [type], [what to expand], [optional options])
  190. * function. An example of how to use this function is:
  191. * @code
  192. // Get a chado object to be expanded
  193. $values = array(
  194. 'name' => 'Medtr4g030710'
  195. );
  196. $features = chado_generate_var('feature', $values);
  197. // Expand the organism node
  198. $feature = chado_expand_var($feature, 'node', 'organism');
  199. // Expand the feature.residues field
  200. $feature = chado_expand_var($feature, 'field', 'feature.residues');
  201. // Expand the feature properties (featureprop table)
  202. $feature = chado_expand_var($feature, 'table', 'featureprop');
  203. * @endcode
  204. */
  205. /**
  206. * Provides a generic routine for inserting into any Chado table
  207. *
  208. * Use this function to insert a record into any Chado table. The first
  209. * argument specifies the table for inserting and the second is an array
  210. * of values to be inserted. The array is mutli-dimensional such that
  211. * foreign key lookup values can be specified.
  212. *
  213. * @param $table
  214. * The name of the chado table for inserting
  215. * @param $values
  216. * An associative array containing the values for inserting.
  217. * @param $options
  218. * An array of options such as:
  219. * - skip_validation: TRUE or FALSE. If TRUE will skip all the validation steps and
  220. * just try to insert as is. This is much faster but results in unhandled
  221. * non user-friendly errors if the insert fails.
  222. * - return_record: by default, the function will return the record but with
  223. * the primary keys added after insertion. To simply return TRUE on success
  224. * set this option to FALSE
  225. *
  226. * @return
  227. * On success this function returns the inserted record with the new primary keys
  228. * added to the returned array. On failure, it returns FALSE.
  229. *
  230. * Example usage:
  231. * @code
  232. * $values = array(
  233. * 'organism_id' => array(
  234. * 'genus' => 'Citrus',
  235. * 'species' => 'sinensis',
  236. * ),
  237. * 'name' => 'orange1.1g000034m.g',
  238. * 'uniquename' => 'orange1.1g000034m.g',
  239. * 'type_id' => array (
  240. * 'cv_id' => array (
  241. * 'name' => 'sequence',
  242. * ),
  243. * 'name' => 'gene',
  244. * 'is_obsolete' => 0
  245. * ),
  246. * );
  247. * $result = chado_insert_record('feature',$values);
  248. * @endcode
  249. * The above code inserts a record into the feature table. The $values array is
  250. * nested such that the organism is selected by way of the organism_id foreign
  251. * key constraint by specifying the genus and species. The cvterm is also
  252. * specified using its foreign key and the cv_id for the cvterm is nested as
  253. * well.
  254. *
  255. * @ingroup tripal_chado_query_api
  256. */
  257. function chado_insert_record($table, $values, $options = array()) {
  258. $print_errors = (isset($options['print_errors'])) ? $options['print_errors'] : FALSE;
  259. if (!is_array($values)) {
  260. tripal_report_error('tripal_core', TRIPAL_ERROR,
  261. 'Cannot pass non array as values for inserting.', array(),
  262. array('print' => $print_errors)
  263. );
  264. return FALSE;
  265. }
  266. if (count($values)==0) {
  267. tripal_report_error('tripal_core', TRIPAL_ERROR,
  268. 'Cannot pass an empty array as values for inserting.',
  269. array(),array('print' => $print_errors)
  270. );
  271. return FALSE;
  272. }
  273. // set defaults for options. If we don't set defaults then
  274. // we get memory leaks when we try to access the elements
  275. if (!is_array($options)) {
  276. $options = array();
  277. }
  278. if (!array_key_exists('skip_validation', $options)) {
  279. $options['skip_validation'] = FALSE;
  280. }
  281. if (!array_key_exists('return_record', $options)) {
  282. $options['return_record'] = TRUE;
  283. }
  284. $insert_values = array();
  285. if (array_key_exists('skip_validation', $options)) {
  286. $validate = !$options['skip_validation'];
  287. }
  288. else {
  289. $validate = TRUE;
  290. }
  291. // get the table description
  292. $table_desc = chado_get_schema($table);
  293. if (empty($table_desc)) {
  294. tripal_report_error('tripal_core', TRIPAL_WARNING,
  295. 'chado_insert_record; There is no table description for !table_name',
  296. array('!table_name' => $table), array('print' => $print_errors)
  297. );
  298. }
  299. // iterate through the values array and create a new 'insert_values' array
  300. // that has all the values needed for insert with all foreign relationsihps
  301. // resolved.
  302. foreach ($values as $field => $value) {
  303. // make sure the field is in the table description. If not then return an error
  304. // message
  305. if (!array_key_exists($field, $table_desc['fields'])) {
  306. tripal_report_error('tripal_core', TRIPAL_ERROR,
  307. "chado_insert_record; The field '%field' does not exist " .
  308. "for the table '%table'. Cannot perform insert. Values: %array",
  309. array('%field' => $field, '%table' => $table, '%array' => print_r($values, 1)),
  310. array('print' => $print_errors)
  311. );
  312. return FALSE;
  313. }
  314. if (is_array($value)) {
  315. // select the value from the foreign key relationship for this value
  316. $results = chado_schema_get_foreign_key($table_desc, $field, $value);
  317. if (sizeof($results) > 1) {
  318. tripal_report_error('tripal_core', TRIPAL_ERROR,
  319. 'chado_insert_record: Too many records match the criteria supplied for !foreign_key foreign key constraint (!criteria)',
  320. array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)),
  321. array('print' => $print_errors)
  322. );
  323. return FALSE;
  324. }
  325. elseif (sizeof($results) < 1) {
  326. tripal_report_error('tripal_core', TRIPAL_DEBUG,
  327. 'chado_insert_record: no record matches criteria supplied for !foreign_key foreign key constraint (!criteria)',
  328. array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)),
  329. array('print' => $print_errors)
  330. );
  331. return FALSE;
  332. }
  333. else {
  334. $insert_values[$field] = $results[0];
  335. }
  336. }
  337. else {
  338. $insert_values[$field] = $value;
  339. }
  340. }
  341. if ($validate) {
  342. // check for violation of any unique constraints
  343. $ukeys = array();
  344. if (array_key_exists('unique keys', $table_desc)) {
  345. $ukeys = $table_desc['unique keys'];
  346. }
  347. $ukselect_cols = array();
  348. $ukselect_vals = array();
  349. if ($ukeys) {
  350. foreach ($ukeys as $name => $fields) {
  351. foreach ($fields as $index => $field) {
  352. // build the arrays for performing a select that will check the contraint
  353. $ukselect_cols[] = $field;
  354. if (!array_key_exists($field, $insert_values)) {
  355. if (array_key_exists('default', $table_desc['fields'][$field])) {
  356. $ukselect_vals[$field] = $table_desc['fields'][$field]['default'];
  357. }
  358. }
  359. else {
  360. $ukselect_vals[$field] = $insert_values[$field];
  361. }
  362. }
  363. // now check the constraint
  364. if (chado_select_record($table, $ukselect_cols, $ukselect_vals)) {
  365. tripal_report_error('tripal_core', TRIPAL_ERROR,
  366. "chado_insert_record; Cannot insert duplicate record into $table table: !values",
  367. array('!values' => print_r($values, TRUE)), array('print' => $print_errors)
  368. );
  369. return FALSE;
  370. }
  371. }
  372. }
  373. // If trying to insert a field that is the primary key, make sure it also
  374. // is unique.
  375. if (array_key_exists('primary key', $table_desc)) {
  376. $pkey = $table_desc['primary key'][0];
  377. if (array_key_exists($pkey, $insert_values)) {
  378. $coptions = array();
  379. if (chado_select_record($table, array($pkey), array($pkey => $insert_values[$pkey]), $coptions)) {
  380. tripal_report_error('tripal_core', TRIPAL_ERROR,
  381. 'chado_insert_record; Cannot insert duplicate primary key into !table table: !values',
  382. array('!table' => $table, '!values' => print_r($values, TRUE)),
  383. array('print' => $print_errors)
  384. );
  385. return FALSE;
  386. }
  387. }
  388. }
  389. // Make sure required fields have a value.
  390. if (!is_array($table_desc['fields'])) {
  391. $table_desc['fields'] = array();
  392. tripal_report_error('tripal_core', TRIPAL_WARNING,
  393. "chado_insert_record; %table missing fields: \n %schema",
  394. array('%table' => $table, '%schema' => print_r($table_desc, 1)),
  395. array('print' => $print_errors)
  396. );
  397. }
  398. foreach ($table_desc['fields'] as $field => $def) {
  399. // A field is considered missing if it cannot be NULL and there is no
  400. // default value for it or it is of type 'serial'.
  401. if (array_key_exists('NOT NULL', $def) and
  402. !array_key_exists($field, $insert_values) and
  403. !array_key_exists('default', $def) and
  404. strcmp($def['type'], serial) != 0) {
  405. tripal_report_error('tripal_core', TRIPAL_ERROR,
  406. "chado_insert_record; Field %table.%field cannot be NULL: %values",
  407. array('%table' => $table, '%field' => $field, '%values' => print_r($values, 1)),
  408. array('print' => $print_errors)
  409. );
  410. return FALSE;
  411. }
  412. }
  413. }
  414. // End of validation.
  415. // Now build the insert SQL statement
  416. $ifields = array(); // contains the names of the fields
  417. $itypes = array(); // contains placeholders for the sql query
  418. $ivalues = array(); // contains the values of the fields
  419. $i = 1;
  420. foreach ($insert_values as $field => $value) {
  421. $ifields[] = $field;
  422. $ivalues[":$field"] = $value;
  423. $i++;
  424. if (strcmp($value, '__NULL__')==0) {
  425. $itypes[] = "NULL";
  426. }
  427. // Format the values of datetime fields for insertion.
  428. if ($def['type'] == 'datetime') {
  429. // Convert UNIX timestamps into the format expected by PostgreSQL.
  430. if(is_numeric($value)) {
  431. $ivalues[":$field"] == date("Ymd G:i:s", $value);
  432. }
  433. $itypes[] = ":$field";
  434. }
  435. else {
  436. $itypes[] = ":$field";
  437. }
  438. }
  439. // create the SQL
  440. $sql = 'INSERT INTO {' . $table . '} (' . implode(", ", $ifields) . ") VALUES (" . implode(", ", $itypes) . ")";
  441. $result = chado_query($sql, $ivalues);
  442. // if we have a result then add primary keys to return array
  443. if ($options['return_record'] == TRUE and $result) {
  444. if (array_key_exists('primary key', $table_desc) and is_array($table_desc['primary key'])) {
  445. foreach ($table_desc['primary key'] as $field) {
  446. $sql = "SELECT CURRVAL('{" . $table . "_" . $field . "_seq}')";
  447. $results = chado_query($sql);
  448. $value = $results->fetchField();
  449. if (!$value) {
  450. tripal_report_error('tripal_core', TRIPAL_ERROR,
  451. "chado_insert_record; not able to retrieve primary key after insert: %sql",
  452. array('%sql' => $sql),
  453. array('print' => $print_errors)
  454. );
  455. return FALSE;
  456. }
  457. $values[$field] = $value;
  458. }
  459. }
  460. return $values;
  461. }
  462. elseif ($options['return_record'] == FALSE and $result) {
  463. return TRUE;
  464. }
  465. else {
  466. tripal_report_error('tripal_core', TRIPAL_ERROR,
  467. 'chado_insert_record; Cannot insert record into "%table": %values',
  468. array('%table' => $table, '%values' => print_r($values, 1)),
  469. array('print' => $print_errors)
  470. );
  471. return FALSE;
  472. }
  473. return FALSE;
  474. }
  475. /**
  476. * Provides a generic routine for updating into any Chado table
  477. *
  478. * Use this function to update a record in any Chado table. The first
  479. * argument specifies the table for inserting, the second is an array
  480. * of values to matched for locating the record for updating, and the third
  481. * argument give the values to update. The arrays are mutli-dimensional such
  482. * that foreign key lookup values can be specified.
  483. *
  484. * @param $table
  485. * The name of the chado table for inserting
  486. * @param $match
  487. * An associative array containing the values for locating a record to update.
  488. * @param $values
  489. * An associative array containing the values for updating.
  490. * @param $options
  491. * An array of options such as:
  492. * - return_record: by default, the function will return the TRUE if the record
  493. * was succesfully updated. However, set this option to TRUE to return the
  494. * record that was updated. The returned record will have the fields provided
  495. * but the primary key (if available for the table) will be added to the record.
  496. * @return
  497. * On success this function returns TRUE. On failure, it returns FALSE.
  498. *
  499. * Example usage:
  500. * @code
  501. $umatch = array(
  502. 'organism_id' => array(
  503. 'genus' => 'Citrus',
  504. 'species' => 'sinensis',
  505. ),
  506. 'uniquename' => 'orange1.1g000034m.g7',
  507. 'type_id' => array (
  508. 'cv_id' => array (
  509. 'name' => 'sequence',
  510. ),
  511. 'name' => 'gene',
  512. 'is_obsolete' => 0
  513. ),
  514. );
  515. $uvalues = array(
  516. 'name' => 'orange1.1g000034m.g',
  517. 'type_id' => array (
  518. 'cv_id' => array (
  519. 'name' => 'sequence',
  520. ),
  521. 'name' => 'mRNA',
  522. 'is_obsolete' => 0
  523. ),
  524. );
  525. * $result = chado_update_record('feature',$umatch,$uvalues);
  526. * @endcode
  527. * The above code species that a feature with a given uniquename, organism_id,
  528. * and type_id (the unique constraint for the feature table) will be updated.
  529. * The organism_id is specified as a nested array that uses the organism_id
  530. * foreign key constraint to lookup the specified values to find the exact
  531. * organism_id. The same nested struture is also used for specifying the
  532. * values to update. The function will find the record that matches the
  533. * columns specified and update the record with the avlues in the $uvalues array.
  534. *
  535. * @TODO: Support Complex filtering as is done in chado_select_record();
  536. *
  537. * @ingroup tripal_chado_query_api
  538. */
  539. function chado_update_record($table, $match, $values, $options = NULL) {
  540. $print_errors = (isset($options['print_errors'])) ? $options['print_errors'] : FALSE;
  541. if (!is_array($values)) {
  542. tripal_report_error('tripal_core', TRIPAL_ERROR,
  543. 'Cannot pass non array as values for updating.',
  544. array(), array('print' => $print_errors)
  545. );
  546. return FALSE;
  547. }
  548. if (count($values)==0) {
  549. tripal_report_error('tripal_core', TRIPAL_ERROR,
  550. 'Cannot pass an empty array as values for updating.',
  551. array(), array('print' => $print_errors)
  552. );
  553. return FALSE;
  554. }
  555. if (!is_array($match)) {
  556. tripal_report_error('tripal_core', TRIPAL_ERROR,
  557. 'Cannot pass non array as values for matching.',
  558. array(), array('print' => $print_errors)
  559. );
  560. return FALSE;
  561. }
  562. if (count($match)==0) {
  563. tripal_report_error('tripal_core', TRIPAL_ERROR,
  564. 'Cannot pass an empty array as values for matching.',
  565. array(), array('print' => $print_errors)
  566. );
  567. return FALSE;
  568. }
  569. // set defaults for options. If we don't set defaults then
  570. // we get memory leaks when we try to access the elements
  571. if (!is_array($options)) {
  572. $options = array();
  573. }
  574. if (!array_key_exists('return_record', $options)) {
  575. $options['return_record'] = FALSE;
  576. }
  577. $update_values = array(); // contains the values to be updated
  578. $update_matches = array(); // contains the values for the where clause
  579. // get the table description
  580. $table_desc = chado_get_schema($table);
  581. if (!$table_desc) {
  582. tripal_report_error('tripal_core', TRIPAL_ERROR,
  583. 'The table name, %table, does not exist.',
  584. array('%table', $table), array('print' => $print_errors)
  585. );
  586. return FALSE;
  587. }
  588. // if the user wants us to return the record then we need to get the
  589. // unique primary key if one exists. That way we can add it to the
  590. // values that get returned at the end of the function
  591. $pkeys = array();
  592. if ($options['return_record'] == TRUE) {
  593. if (array_key_exists('primary key', $table_desc) and is_array($table_desc['primary key'])) {
  594. $columns = array();
  595. $stmt_suffix = '';
  596. foreach ($table_desc['primary key'] as $field) {
  597. $columns[] = $field;
  598. $stmt_suffix .= substr($field, 0, 2);
  599. }
  600. $options2 = array();
  601. $results = chado_select_record($table, $columns, $match, $options2);
  602. if (count($results) > 0) {
  603. foreach ($results as $index => $pkey) {
  604. $pkeys[] = $pkey;
  605. }
  606. }
  607. }
  608. }
  609. // get the values needed for matching in the SQL statement
  610. foreach ($match as $field => $value) {
  611. if (is_array($value)) {
  612. $results = chado_schema_get_foreign_key($table_desc, $field, $value);
  613. if (sizeof($results) > 1) {
  614. tripal_report_error('tripal_core', TRIPAL_ERROR,
  615. 'chado_update_record: When trying to find record to update, too many records match the criteria supplied for !foreign_key foreign key constraint (!criteria)',
  616. array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)),
  617. array('print' => $print_errors)
  618. );
  619. return FALSE;
  620. }
  621. elseif (sizeof($results) < 1) {
  622. tripal_report_error('tripal_core', TRIPAL_DEBUG,
  623. 'chado_update_record: When trying to find record to update, no record matches criteria supplied for !foreign_key foreign key constraint (!criteria)',
  624. array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)),
  625. array('print' => $print_errors)
  626. );
  627. return FALSE;
  628. }
  629. else {
  630. $update_matches[$field] = $results[0];
  631. }
  632. }
  633. else {
  634. $update_matches[$field] = $value;
  635. }
  636. }
  637. // get the values used for updating
  638. foreach ($values as $field => &$value) {
  639. if (is_array($value)) {
  640. $foreign_options = array();
  641. // select the value from the foreign key relationship for this value
  642. $results = chado_schema_get_foreign_key($table_desc, $field, $value, $foreign_options);
  643. if (sizeof($results) > 1) {
  644. tripal_report_error('tripal_core', TRIPAL_ERROR,
  645. 'chado_update_record: When trying to find update values, too many records match the criteria supplied for !foreign_key foreign key constraint (!criteria)',
  646. array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)),
  647. array('print' => $print_errors)
  648. );
  649. return FALSE;
  650. }
  651. elseif (sizeof($results) < 1) {
  652. tripal_report_error('tripal_core', TRIPAL_DEBUG,
  653. 'chado_update_record: When trying to find update values, no record matches criteria supplied for !foreign_key foreign key constraint (!criteria)',
  654. array('!foreign_key' => $field, '!criteria' => print_r($value,TRUE)),
  655. array('print' => $print_errors)
  656. );
  657. return FALSE;
  658. }
  659. else {
  660. $update_values[$field] = $results[0];
  661. }
  662. }
  663. else {
  664. $update_values[$field] = $value;
  665. }
  666. }
  667. // now build the SQL statement
  668. $sql = 'UPDATE {' . $table . '} SET ';
  669. $args = array(); // arguments passed to chado_query
  670. foreach ($update_values as $field => $value) {
  671. if (strcmp($value, '__NULL__') == 0) {
  672. $sql .= " $field = NULL, ";
  673. }
  674. else {
  675. $sql .= " $field = :$field, ";
  676. $args[":$field"] = $value;
  677. }
  678. }
  679. $sql = drupal_substr($sql, 0, -2); // get rid of the trailing comma & space
  680. $sql .= " WHERE ";
  681. foreach ($update_matches as $field => $value) {
  682. if (strcmp($value, '__NULL__')==0) {
  683. $sql .= " $field = NULL AND ";
  684. }
  685. else {
  686. $sql .= " $field = :$field AND ";
  687. $args[":$field"] = $value;
  688. }
  689. }
  690. $sql = drupal_substr($sql, 0, -4); // get rid of the trailing 'AND'
  691. $result = chado_query($sql, $args);
  692. // if we have a result then add primary keys to return array
  693. if ($options['return_record'] == TRUE and $result) {
  694. // only if we have a single result do we want to add the primary keys to the values
  695. // array. If the update matched many records we can't add the pkeys
  696. if (count($pkeys) == 1) {
  697. foreach ($pkeys as $index => $pkey) {
  698. foreach ($pkey as $field => $fvalue) {
  699. $values[$field] = $fvalue;
  700. }
  701. }
  702. }
  703. return $values;
  704. }
  705. elseif ($options['return_record'] == FALSE and $result) {
  706. return TRUE;
  707. }
  708. else {
  709. tripal_report_error('tripal_core', TRIPAL_ERROR,
  710. "chado_update_record: Cannot update record in %table table. \nMatch: %match \nValues: %values",
  711. array('%table' => table, '%match' => print_r($match,TRUE), '%values' => print_r($values, 1)),
  712. array('print' => $print_errors)
  713. );
  714. return FALSE;
  715. }
  716. return FALSE;
  717. }
  718. /**
  719. * Provides a generic function for deleting a record(s) from any chado table
  720. *
  721. * Use this function to delete a record(s) in any Chado table. The first
  722. * argument specifies the table to delete from and the second is an array
  723. * of values to match for locating the record(s) to be deleted. The arrays
  724. * are mutli-dimensional such that foreign key lookup values can be specified.
  725. *
  726. * @param $table
  727. * The name of the chado table for inserting
  728. * @param $match
  729. * An associative array containing the values for locating a record to update.
  730. * @param $options
  731. * Currently there are no options
  732. * @return
  733. * On success this function returns TRUE. On failure, it returns FALSE.
  734. *
  735. * Example usage:
  736. * @code
  737. $umatch = array(
  738. 'organism_id' => array(
  739. 'genus' => 'Citrus',
  740. 'species' => 'sinensis',
  741. ),
  742. 'uniquename' => 'orange1.1g000034m.g7',
  743. 'type_id' => array (
  744. 'cv_id' => array (
  745. 'name' => 'sequence',
  746. ),
  747. 'name' => 'gene',
  748. 'is_obsolete' => 0
  749. ),
  750. );
  751. $uvalues = array(
  752. 'name' => 'orange1.1g000034m.g',
  753. 'type_id' => array (
  754. 'cv_id' => array (
  755. 'name' => 'sequence',
  756. ),
  757. 'name' => 'mRNA',
  758. 'is_obsolete' => 0
  759. ),
  760. );
  761. * $result = chado_update_record('feature', $umatch, $uvalues);
  762. * @endcode
  763. * The above code species that a feature with a given uniquename, organism_id,
  764. * and type_id (the unique constraint for the feature table) will be deleted.
  765. * The organism_id is specified as a nested array that uses the organism_id
  766. * foreign key constraint to lookup the specified values to find the exact
  767. * organism_id. The same nested struture is also used for specifying the
  768. * values to update. The function will find all records that match the
  769. * columns specified and delete them.
  770. *
  771. * @TODO: Support Complex filtering as is done in chado_select_record();
  772. *
  773. * @ingroup tripal_chado_query_api
  774. */
  775. function chado_delete_record($table, $match, $options = NULL) {
  776. if (!is_array($match)) {
  777. tripal_report_error('tripal_core', TRIPAL_ERROR,
  778. 'Cannot pass non array as values for matching.', array());
  779. return FALSE;
  780. }
  781. if (count($match)==0) {
  782. tripal_report_error('tripal_core', TRIPAL_ERROR,
  783. 'Cannot pass an empty array as values for matching.', array());
  784. return FALSE;
  785. }
  786. // set defaults for options. If we don't set defaults then
  787. // we get memory leaks when we try to access the elements
  788. if (!is_array($options)) {
  789. $options = array();
  790. }
  791. $delete_matches = array(); // contains the values for the where clause
  792. // get the table description
  793. $table_desc = chado_get_schema($table);
  794. $fields = $table_desc['fields'];
  795. if (empty($table_desc)) {
  796. tripal_report_error('tripal_core', TRIPAL_WARNING,
  797. 'chado_insert_record; There is no table description for !table_name',
  798. array('!table_name' => $table), array('print' => $print_errors)
  799. );
  800. }
  801. // get the values needed for matching in the SQL statement
  802. foreach ($match as $field => $value) {
  803. if (is_array($value)) {
  804. // if the user has specified an array of values to delete rather than
  805. // FK relationships the keep those in our match
  806. if (array_values($value) === $value) {
  807. $delete_matches[$field] = $value;
  808. }
  809. else {
  810. $results = chado_schema_get_foreign_key($table_desc, $field, $value);
  811. if (sizeof($results) > 1) {
  812. tripal_report_error('tripal_core', TRIPAL_ERROR,
  813. 'chado_delete_record: When trying to find record to delete, too many records match the criteria supplied for !foreign_key foreign key constraint (!criteria)',
  814. array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)));
  815. return FALSE;
  816. }
  817. elseif (sizeof($results) < 1) {
  818. //tripal_report_error('tripal_core', TRIPAL_ERROR, 'chado_delete_record: When trying to find record to delete, no record matches criteria supplied for !foreign_key foreign key constraint (!criteria)', array('!foreign_key' => $field, '!criteria' => print_r($value,TRUE)));
  819. }
  820. else {
  821. $delete_matches[$field] = $results[0];
  822. }
  823. }
  824. }
  825. else {
  826. $delete_matches[$field] = $value;
  827. }
  828. }
  829. // now build the SQL statement
  830. $sql = 'DELETE FROM {' . $table . '} WHERE ';
  831. $args = array();
  832. foreach ($delete_matches as $field => $value) {
  833. // if we have an array values then this is an "IN" clasue.
  834. if (count($value) > 1) {
  835. $sql .= "$field IN (";
  836. $index = 0;
  837. foreach ($value as $v) {
  838. $sql .= ":$field" . $index . ", ";
  839. $args[":$field" . $index] = $v;
  840. $index++;
  841. }
  842. $sql = drupal_substr($sql, 0, -2); // get rid of trailing ', '
  843. $sql .= ") AND ";
  844. }
  845. else {
  846. if (strcmp($value, '__NULL__') == 0) {
  847. $sql .= " $field = NULL AND ";
  848. }
  849. else {
  850. $sql .= " $field = :$field AND ";
  851. $args[":$field"] = $value;
  852. }
  853. }
  854. }
  855. $sql = drupal_substr($sql, 0, -4); // get rid of the trailing 'AND'
  856. // finally perform the delete. If successful, return the updated record
  857. $result = chado_query($sql, $args);
  858. if ($result) {
  859. return TRUE;
  860. }
  861. else {
  862. tripal_report_error('tripal_core', TRIPAL_ERROR,
  863. "Cannot delete record in $table table. Match:" . print_r($match, 1) . ". Values: " . print_r($values, 1), array());
  864. return FALSE;
  865. }
  866. return FALSE;
  867. }
  868. /**
  869. * Provides a generic routine for selecting data from a Chado table
  870. *
  871. * Use this function to perform a simple select from any Chado table.
  872. *
  873. * @param $table
  874. * The name of the chado table for inserting
  875. * @param $columns
  876. * An array of column names
  877. * @param $values
  878. * An associative array containing the values for filtering the results. In the
  879. * case where multiple values for the same time are to be selected an additional
  880. * entry for the field should appear for each value. If you need to filter
  881. * results using more complex methods see the 'Complex Filtering' section below.
  882. * @param $options
  883. * An associative array of additional options where the key is the option
  884. * and the value is the value of that option.
  885. *
  886. * Additional Options Include:
  887. * - has_record
  888. * Set this argument to 'TRUE' to have this function return a numeric
  889. * value for the number of records rather than the array of records. this
  890. * can be useful in 'if' statements to check the presence of particula records.
  891. * - return_sql
  892. * Set this to 'TRUE' to have this function return an array where the first
  893. * element is the sql that would have been run and the second is an array of
  894. * arguments.
  895. * - case_insensitive_columns
  896. * An array of columns to do a case insensitive search on.
  897. * - regex_columns
  898. * An array of columns where the value passed in should be treated as a regular expression
  899. * - order_by
  900. * An associative array containing the column names of the table as keys
  901. * and the type of sort (i.e. ASC, DESC) as the values. The results in the
  902. * query will be sorted by the key values in the direction listed by the value
  903. * - is_duplicate: TRUE or FALSE. Checks the values submited to see if
  904. * they violate any of the unique constraints. If so, the record
  905. * is returned, if not, FALSE is returned.
  906. * - pager: Use this option if it is desired to return only a subset of results
  907. * so that they may be shown with in a Drupal-style pager. This should be
  908. * an array with two keys: 'limit' and 'element'. The value of 'limit'
  909. * should specify the number of records to return and 'element' is a
  910. * unique integer to differentiate between pagers when more than one
  911. * appear on a page. The 'element' should start with zero and increment by
  912. * one for each pager.
  913. * -limit: Specifies the number of records to return.
  914. * -offset: Indicates the number of records to skip before returning records.
  915. *
  916. * @return
  917. * An array of results, FALSE if the query was not executed
  918. * correctly, an empty array if no records were matched, or the number of records
  919. * in the dataset if $has_record is set.
  920. * If the option 'is_duplicate' is provided and the record is a duplicate it
  921. * will return the duplicated record. If the 'has_record' option is provided
  922. * a value of TRUE will be returned if a record exists and FALSE will bee
  923. * returned if there are not records.
  924. *
  925. * Example usage:
  926. * @code
  927. * $columns = array('feature_id', 'name');
  928. * $values = array(
  929. * 'organism_id' => array(
  930. * 'genus' => 'Citrus',
  931. * 'species' => array('sinensis', 'clementina'),
  932. * ),
  933. * 'uniquename' => 'orange1.1g000034m.g',
  934. * 'type_id' => array (
  935. * 'cv_id' => array (
  936. * 'name' => 'sequence',
  937. * ),
  938. * 'name' => 'gene',
  939. * 'is_obsolete' => 0
  940. * ),
  941. * );
  942. * $options = array(
  943. * 'order_by' => array(
  944. * 'name' => 'ASC'
  945. * ),
  946. * );
  947. * $result = chado_select_record('feature',$columns,$values,$options);
  948. * @endcode
  949. * The above code selects a record from the feature table using the three fields
  950. * that uniquely identify a feature. The $columns array simply lists the columns
  951. * to select. The $values array is nested such that the organism is identified by
  952. * way of the organism_id foreign key constraint by specifying the genus and
  953. * species. The cvterm is also specified using its foreign key and the cv_id
  954. * for the cvterm is nested as well. In the example above, two different species
  955. * are allowed to match
  956. *
  957. * Complex Filtering:
  958. * All of the documentation above supports filtering based on 'is equal to'
  959. * or 'is NULL'. If your criteria doesn't fall into one of these two categories
  960. * then you need to provide an array with additional details such as the operator
  961. * as well as the value. An example follows and will be discussed in detail.
  962. * @code
  963. $columns = array('feature_id', 'fmin', 'fmax');
  964. // Regular criteria specifying the parent feature to retrieve locations from.
  965. $values = array(
  966. 'srcfeature_id' => array(
  967. 'uniquename' => 'MtChr01'
  968. 'type_id' => array(
  969. 'name' => 'pseudomolecule'
  970. ),
  971. ),
  972. );
  973. // Complex filtering to specify the range to return locations from.
  974. $values['fmin'][] = array(
  975. 'op' => '>',
  976. 'data' => 15
  977. );
  978. $values['fmin'][] = array(
  979. 'op' => '<',
  980. 'data' => 100
  981. );
  982. $results = chado_select_record('featureloc', $columns, $values);
  983. * @endcode
  984. * The above code example will return all of the name, start and end of all
  985. * the features that start within MtChr1:15-100bp. Note that complex filtering
  986. * can be used in conjunction with basic filtering and that multiple criteria,
  987. * even for the same field can be entered.
  988. *
  989. * @ingroup tripal_chado_query_api
  990. */
  991. function chado_select_record($table, $columns, $values, $options = NULL) {
  992. // Set defaults for options. If we don't set defaults then
  993. // we get memory leaks when we try to access the elements.
  994. if (!is_array($options)) {
  995. $options = array();
  996. }
  997. if (!array_key_exists('case_insensitive_columns', $options)) {
  998. $options['case_insensitive_columns'] = array();
  999. }
  1000. if (!array_key_exists('regex_columns', $options)) {
  1001. $options['regex_columns'] = array();
  1002. }
  1003. if (!array_key_exists('order_by', $options)) {
  1004. $options['order_by'] = array();
  1005. }
  1006. if (!array_key_exists('return_sql', $options)) {
  1007. $options['return_sql'] = FALSE;
  1008. }
  1009. if (!array_key_exists('has_record', $options)) {
  1010. $options['has_record'] = FALSE;
  1011. }
  1012. if (!array_key_exists('is_duplicate', $options)) {
  1013. $options['is_duplicate'] = FALSE;
  1014. }
  1015. $pager = array();
  1016. if (array_key_exists('pager', $options)) {
  1017. $pager = $options['pager'];
  1018. }
  1019. $print_errors = FALSE;
  1020. if (isset($options['print_errors'])) {
  1021. $print_errors = $options['print_errors'];
  1022. }
  1023. // Check that our columns and values arguments are proper arrays.
  1024. if (!is_array($columns)) {
  1025. tripal_report_error('tripal_core', TRIPAL_ERROR,
  1026. 'chado_select_record; the $columns argument must be an array. Columns:%columns',
  1027. array('%columns' => print_r($columns, TRUE)),
  1028. array('print' => $print_errors)
  1029. );
  1030. return FALSE;
  1031. }
  1032. if (!is_array($values)) {
  1033. tripal_report_error('tripal_core', TRIPAL_ERROR,
  1034. 'chado_select_record; the $values argument must be an array. Values:%values',
  1035. array('%values' => print_r($values, TRUE)),
  1036. array('print' => $print_errors)
  1037. );
  1038. return FALSE;
  1039. }
  1040. // Get the table description.
  1041. $table_desc = chado_get_schema($table);
  1042. if (empty($table_desc)) {
  1043. tripal_report_error('tripal_core', TRIPAL_WARNING,
  1044. 'chado_insert_record; There is no table description for !table_name',
  1045. array('!table_name' => $table), array('print' => $print_errors)
  1046. );
  1047. }
  1048. $select = '';
  1049. $from = '';
  1050. $where = array();
  1051. $args = array();
  1052. // if the 'is_duplicate' option is turned on then we want to remove all but unique keys
  1053. if ($options['is_duplicate'] and array_key_exists('unique keys', $table_desc)) {
  1054. $ukeys = $table_desc['unique keys'];
  1055. $has_results = 0;
  1056. // iterate through the unique constraints and reset the values and columns
  1057. // arrays to only include these fields
  1058. foreach ($ukeys as $cname => $fields) {
  1059. if ($has_results) {
  1060. continue;
  1061. }
  1062. $new_values = array();
  1063. $new_columns = array();
  1064. $new_options = array();
  1065. $uq_sname = "uq_" . $table . "_";
  1066. $has_pkey = 0;
  1067. // include the primary key in the results returned
  1068. if (array_key_exists('primary key', $table_desc)) {
  1069. $has_pkey = 1;
  1070. $pkeys = $table_desc['primary key'];
  1071. foreach ($pkeys as $index => $key) {
  1072. array_push($new_columns, $key);
  1073. }
  1074. }
  1075. // recreate the $values and $columns arrays
  1076. foreach ($fields as $field) {
  1077. if (array_key_exists($field, $values)) {
  1078. $new_values[$field] = $values[$field];
  1079. $uq_sname .= substr($field, 0, 2);
  1080. // if there is no primary key then use the unique contraint fields
  1081. if (!$has_pkey) {
  1082. array_push($new_columns, $field);
  1083. }
  1084. }
  1085. // if the field doesn't exist in the values array then
  1086. // substitute any default values
  1087. elseif (array_key_exists('default', $table_desc['fields'][$field])) {
  1088. $new_values[$field] = $table_desc['fields'][$field]['default'];
  1089. $uq_sname .= substr($field, 0, 2);
  1090. if (!$has_pkey) {
  1091. array_push($new_columns, $field);
  1092. }
  1093. }
  1094. // if there is no value (default or otherwise) check if this field is
  1095. // allowed to be null
  1096. elseif (!$table_desc['fields'][$field]['not null']) {
  1097. $new_values[$field] = NULL;
  1098. $uq_sname .= "n" . substr($field, 0, 2);
  1099. if (!$has_pkey) {
  1100. array_push($new_columns, $field);
  1101. }
  1102. }
  1103. // if the array key doesn't exist in the values given by the caller
  1104. // and there is no default value then we cannot check if the record
  1105. // is a duplicate so return FALSE
  1106. else {
  1107. tripal_report_error('tripal_core', TRIPAL_ERROR,
  1108. 'chado_select_record: There is no value for %field thus we cannot ' .
  1109. 'check if this record for table, %table, is unique. %values',
  1110. array('%field' => $field, '%table' => $table, '%values' => print_r($values, TRUE)),
  1111. array('print' => $print_errors));
  1112. return FALSE;
  1113. }
  1114. }
  1115. $results = chado_select_record($table, $new_columns, $new_values, $new_options);
  1116. // if we have a duplicate record then return the results
  1117. if (count($results) > 0) {
  1118. $has_results = 1;
  1119. }
  1120. unset($new_columns);
  1121. unset($new_values);
  1122. unset($new_options);
  1123. }
  1124. if ($options['has_record'] and $has_results) {
  1125. return TRUE;
  1126. }
  1127. else {
  1128. return $results;
  1129. }
  1130. }
  1131. // Process the values array into where clauses and retrieve foreign keys. The
  1132. // $where array should always be an integer-indexed array with each value
  1133. // being an array with a 'field', 'op', and 'data' keys with all foreign keys
  1134. // followed.
  1135. foreach ($values as $field => $value) {
  1136. // Require the field be in the table description.
  1137. if (!array_key_exists($field, $table_desc['fields'])) {
  1138. tripal_report_error('tripal_core', TRIPAL_ERROR,
  1139. 'chado_select_record: The field "%field" does not exist for the table "%table". Cannot perform query. Values: %array',
  1140. array('%field' => $field, '%table' => $table, '%array' => print_r($values, 1)),
  1141. array('print' => $print_errors)
  1142. );
  1143. return array();
  1144. }
  1145. $select[] = $field;
  1146. // CASE 1: We have an array for a value.
  1147. if (is_array($value)) {
  1148. // CASE 1a: If there is only one element in the array, treat it the same
  1149. // as a non-array value.
  1150. if (count($value) == 1 AND is_int(key($value))) {
  1151. $value = array_pop($value);
  1152. $op = '=';
  1153. chado_select_record_check_value_type($op, $value, $table_desc['fields'][$field]['type']);
  1154. $where[] = array(
  1155. 'field' => $field,
  1156. 'op' => $op,
  1157. 'data' => $value
  1158. );
  1159. }
  1160. // CASE 1b: If there is a 'data' key in the array then we have the new
  1161. // complex filtering format with a single criteria.
  1162. elseif (isset($value['data']) AND isset($value['op'])) {
  1163. $value['field'] = $field;
  1164. $where[] = $value;
  1165. }
  1166. // CASE 1c: If we have an integer indexed array and the first element is
  1167. // not an array then we have a simple array of values to be used for an IN clause.
  1168. elseif (is_int(key($value)) AND !is_array(current($value))) {
  1169. $where[] = array(
  1170. 'field' => $field,
  1171. 'op' => 'IN',
  1172. 'data' => $value
  1173. );
  1174. }
  1175. // We have a multi-dimensional array: 2 cases...
  1176. else {
  1177. // CASE 1d: If there is a multi-dimensional array with each sub-array
  1178. // containing a data key then we have the new complex filtering format
  1179. // with multiple criteria.
  1180. if (isset($value[0]['data']) AND isset($value[0]['op'])) {
  1181. foreach ($value as $subvalue) {
  1182. $subvalue['field'] = $field;
  1183. $where[] = $subvalue;
  1184. }
  1185. }
  1186. // CASE 1e: We have a multi-dimensional array that doesn't fit any of the
  1187. // above cases then we have a foreign key definition to follow.
  1188. else {
  1189. // Select the value from the foreign key relationship for this value.
  1190. $foreign_options = array(
  1191. 'regex_columns' => $options['regex_columns'],
  1192. );
  1193. $results = chado_schema_get_foreign_key($table_desc, $field, $value, $foreign_options);
  1194. // Ensure that looking up the foreign key didn't fail in an error.
  1195. if ($results === FALSE OR $results === NULL) {
  1196. tripal_report_error('tripal_core', TRIPAL_ERROR,
  1197. 'chado_select_record: could not follow the foreign key definition
  1198. for %field where the definition supplied was %value',
  1199. array('%field' => $field, '%value' => print_r($value, TRUE))
  1200. );
  1201. return array();
  1202. }
  1203. // Ensure that there were results returned.
  1204. elseif (count($results)==0) {
  1205. tripal_report_error('tripal_core', TRIPAL_ERROR,
  1206. 'chado_select_record: the foreign key definition for \'%field\' '.
  1207. 'returned no results where the definition supplied was %value',
  1208. array('%field' => $field, '%value' => print_r($value, TRUE))
  1209. );
  1210. return array();
  1211. }
  1212. // If there was only a single resutlt then add it using an op of =.
  1213. elseif (count($results) == 1) {
  1214. $results = array_pop($results);
  1215. $op = '=';
  1216. chado_select_record_check_value_type($op, $results, $table_desc['fields'][$field]['type']);
  1217. $where[] = array(
  1218. 'field' => $field,
  1219. 'op' => $op,
  1220. 'data' => $results
  1221. );
  1222. }
  1223. // Otherwise multiple results were returned so we want to form an
  1224. // IN (x, y, z) expression.
  1225. else {
  1226. $where[] = array(
  1227. 'field' => $field,
  1228. 'op' => 'IN',
  1229. 'data' => $results
  1230. );
  1231. }
  1232. }
  1233. }
  1234. }
  1235. // CASE 2: We have a single value.
  1236. else {
  1237. $op = '=';
  1238. chado_select_record_check_value_type($op, $value, $table_desc['fields'][$field]['type']);
  1239. $where[] = array(
  1240. 'field' => $field,
  1241. 'op' => $op,
  1242. 'data' => $value
  1243. );
  1244. }
  1245. // Support Deprecated method for regex conditions.
  1246. $current_key = key($where);
  1247. if (in_array($field, $options['regex_columns'])) {
  1248. $where[$current_key]['op'] = '~*';
  1249. }
  1250. }
  1251. // Now build the SQL.
  1252. if (empty($where)) {
  1253. // Sometimes want to select everything.
  1254. $sql = "SELECT " . implode(', ', $columns) . " ";
  1255. $sql .= 'FROM {' . $table . '} ';
  1256. }
  1257. else {
  1258. $sql = "SELECT " . implode(', ', $columns) . " ";
  1259. $sql .= 'FROM {' . $table . '} ';
  1260. // If $values is empty then we want all results so no where clause.
  1261. if (!empty($values)) {
  1262. $sql .= "WHERE ";
  1263. }
  1264. foreach ($where as $clause_num => $value_def) {
  1265. switch ($value_def['op']) {
  1266. // Deal with 'field IN (x, y, z)' where clauses.
  1267. case 'IN':
  1268. $sql .= $value_def['field'] . " IN (";
  1269. $index = 0;
  1270. foreach ($value_def['data'] as $v) {
  1271. $placeholder = ':' . $value_def['field'] . $clause_num .'_' . $index;
  1272. $sql .= $placeholder . ', ';
  1273. $args[$placeholder] = $v;
  1274. $index++;
  1275. }
  1276. $sql = drupal_substr($sql, 0, -2); // remove trailing ', '
  1277. $sql .= ") AND ";
  1278. break;
  1279. // Deal with IS NULL.
  1280. case 'IS NULL':
  1281. $sql .= $value_def['field'] . ' IS NULL AND ';
  1282. break;
  1283. // Default is [field] [op] [data].
  1284. default:
  1285. $placeholder = ':'. $value_def['field'] . $clause_num;
  1286. // Support case insensitive columns.
  1287. if (in_array($value_def['field'], $options['case_insensitive_columns'])) {
  1288. $sql .= 'lower(' . $value_def['field'] .') '. $value_def['op'] .' lower('. $placeholder . ') AND ';
  1289. }
  1290. else {
  1291. $sql .= $value_def['field'] .' '. $value_def['op'] .' '. $placeholder . ' AND ';
  1292. }
  1293. $args[$placeholder] = $value_def['data'];
  1294. }
  1295. } // end foreach item in where clause.
  1296. $sql = drupal_substr($sql, 0, -4); // get rid of the trailing 'AND '
  1297. } // end if (empty($where)){ } else {
  1298. // Add any ordering of the results to the SQL statement.
  1299. if (count($options['order_by']) > 0) {
  1300. $sql .= " ORDER BY ";
  1301. foreach ($options['order_by'] as $field => $dir) {
  1302. $sql .= "$field $dir, ";
  1303. }
  1304. $sql = drupal_substr($sql, 0, -2); // get rid of the trailing ', '
  1305. }
  1306. // Limit the records returned
  1307. if (array_key_exists('limit', $options) and is_numeric($options['limit'])) {
  1308. $sql .= " LIMIT " . $options['limit'];
  1309. if (array_key_exists('offset', $options) and is_numeric($options['offset'])) {
  1310. $sql .= " OFFSET " . $options['offset'];
  1311. }
  1312. }
  1313. // if the caller has requested the SQL rather than the results then do so.
  1314. if ($options['return_sql'] == TRUE) {
  1315. return array('sql' => $sql, 'args' => $args);
  1316. }
  1317. if (array_key_exists('limit', $pager)) {
  1318. $total_records = 0;
  1319. $resource = chado_pager_query($sql, $args, $pager['limit'], $pager['element'], NULL, $total_records);
  1320. }
  1321. else {
  1322. $resource = chado_query($sql, $args);
  1323. }
  1324. // Format results into an array.
  1325. $results = array();
  1326. foreach ($resource as $r) {
  1327. $results[] = $r;
  1328. }
  1329. if ($options['has_record']) {
  1330. return count($results);
  1331. }
  1332. return $results;
  1333. }
  1334. /**
  1335. * Helper Function: check that the value is the correct type.
  1336. *
  1337. * This function is used by chado_select_record() when building the $where
  1338. * clause array to ensure that any single values are the correct type based
  1339. * on the table definition. Furthermore, it ensures that NULL's are caught
  1340. * changing the operator to 'IS NULL'.
  1341. * @code
  1342. $op = '=';
  1343. chado_select_record_check_value_type($op, $value, $table_desc['fields'][$field]['type']);
  1344. $where[] = array(
  1345. 'field' => $field,
  1346. 'op' => $op,
  1347. 'data' => $value
  1348. );
  1349. * @endcode
  1350. *
  1351. * @param $op
  1352. * The operator being used. This is mostly passed in to allow it to be changed
  1353. * if a NULL value is detected.
  1354. * @param $value
  1355. * The value to be checked and adjusted.
  1356. * @param $type
  1357. * The type from the table definition that's used to determine the type of
  1358. * value.
  1359. */
  1360. function chado_select_record_check_value_type(&$op, &$value, $type) {
  1361. if ($value === NULL) {
  1362. $op = 'IS NULL';
  1363. }
  1364. elseif ($type == 'int') {
  1365. $value = (int) $value;
  1366. }
  1367. }
  1368. /**
  1369. * Use this function instead of db_query() to avoid switching databases
  1370. * when making query to the chado database
  1371. *
  1372. * Will use a chado persistent connection if it already exists
  1373. *
  1374. * @param $sql
  1375. * The sql statement to execute
  1376. *
  1377. * @param $args
  1378. * The array of arguments, with the same structure as passed to
  1379. * the db_query() function of Drupal.
  1380. *
  1381. * @return
  1382. * DatabaseStatementInterface A prepared statement object, already executed.
  1383. *
  1384. * Example usage:
  1385. * @code
  1386. * $sql = "SELECT F.name, CVT.name as type_name, ORG.common_name
  1387. * FROM {feature} F
  1388. * LEFT JOIN {cvterm} CVT ON F.type_id = CVT.cvterm_id
  1389. * LEFT JOIN {organism} ORG ON F.organism_id = ORG.organism_id
  1390. * WHERE
  1391. * F.uniquename = :feature_uniquename";
  1392. * $args = array( ':feature_uniquename' => $form_state['values']['uniquename'] );
  1393. * $result = chado_query( $sql, $args );
  1394. * foreach ($result as $r) { [Do something with the records here] }
  1395. * @endcode
  1396. *
  1397. * @ingroup tripal_chado_query_api
  1398. */
  1399. function chado_query($sql, $args = array()) {
  1400. $is_local = $GLOBALS["chado_is_local"];
  1401. // Args should be an array
  1402. if (!is_array($args)) {
  1403. tripal_report_error('tripal_core', TRIPAL_ERROR,
  1404. 'chado_query; Need to pass an array to chado_query, "%value" passed instead. Query: %query',
  1405. array('%value' => $args, '%query' => $sql)
  1406. );
  1407. return FALSE;
  1408. }
  1409. // if Chado is local to the database then prefix the Chado table
  1410. // names with 'chado'.
  1411. if ($is_local) {
  1412. $sql = preg_replace('/\n/', '', $sql); // remove carriage returns
  1413. $sql = preg_replace('/\{(.*?)\}/', 'chado.$1', $sql);
  1414. // the featureloc table has some indexes that use function that call other functions
  1415. // and those calls do not reference a schema, therefore, any tables with featureloc
  1416. // must automaticaly have the chado schema set as active to find
  1417. if (preg_match('/chado.featureloc/i', $sql) or preg_match('/chado.feature/i', $sql)) {
  1418. $previous_db = chado_set_active('chado') ;
  1419. $results = db_query($sql, $args);
  1420. chado_set_active($previous_db);
  1421. }
  1422. // for all other tables we should have everything in scope so just run the query
  1423. else {
  1424. $results = db_query($sql, $args);
  1425. }
  1426. }
  1427. // if Chado is not local to the Drupal database then we have to
  1428. // switch to another database
  1429. else {
  1430. $previous_db = chado_set_active('chado') ;
  1431. $results = db_query($sql, $args);
  1432. chado_set_active($previous_db);
  1433. }
  1434. return $results;
  1435. }
  1436. /**
  1437. * Use this function instead of pager_query() when selecting a
  1438. * subset of records from a Chado table.
  1439. *
  1440. * @param $query
  1441. * The SQL statement to execute, this is followed by a variable number of args
  1442. * used as substitution values in the SQL statement.
  1443. * @param $args
  1444. * The array of arguments for the query. They keys are the placeholders
  1445. * @param $limit
  1446. * The number of query results to display per page.
  1447. * @param $element
  1448. * An numeric identifier used to distinguish between multiple pagers on one page.
  1449. * @param $count_query
  1450. * An SQL query used to count matching records.
  1451. *
  1452. * @returns
  1453. * A database query result resource or FALSE if the query was not
  1454. * executed correctly
  1455. *
  1456. * @ingroup tripal_chado_query_api
  1457. */
  1458. function chado_pager_query($query, $args, $limit, $element, $count_query = '') {
  1459. // get the page and offset for the pager
  1460. $page = isset($_GET['page']) ? $_GET['page'] : '0';
  1461. $offset = $limit * $page;
  1462. $q = $_GET['q'];
  1463. // Construct a count query if none was given.
  1464. if (!isset($count_query)) {
  1465. $count_query = preg_replace(array('/SELECT.*?FROM /As', '/ORDER BY .*/'),
  1466. array('SELECT COUNT(*) FROM ', ''), $query);
  1467. }
  1468. // We calculate the total of pages as ceil(items / limit).
  1469. $results = chado_query($count_query, $args);
  1470. if (!$results) {
  1471. tripal_report_error('tripal_core', TRIPAL_ERROR,
  1472. "chado_pager_query(): Query failed: %cq", array('%cq' => $count_query));
  1473. return;
  1474. }
  1475. $total_records = $results->fetchField();
  1476. // set a session variable for storing the total number of records
  1477. $GLOBALS['chado_pager'][$q][$element]['total_records'] = $total_records;
  1478. pager_default_initialize($total_records, $limit, $element);
  1479. $query .= ' LIMIT ' . (int) $limit . ' OFFSET ' . (int) $offset;
  1480. $results = chado_query($query, $args);
  1481. return $results;
  1482. }
  1483. /**
  1484. * A function to retrieve the total number of records for a pager that
  1485. * was generated using the chado_pager_query() function
  1486. *
  1487. * @param $element
  1488. * The $element argument that was passed to the chado_pager_query function
  1489. *
  1490. * @ingroup tripal_chado_query_api
  1491. */
  1492. function chado_pager_get_count($element) {
  1493. $q = $_GET['q'];
  1494. if (array_key_exists($q, $GLOBALS['chado_pager']) and
  1495. array_key_exists($element, $GLOBALS['chado_pager'][$q])) {
  1496. return $GLOBALS['chado_pager'][$q][$element]['total_records'];
  1497. }
  1498. else {
  1499. return 0;
  1500. }
  1501. }
  1502. /**
  1503. * Gets the value of a foreign key relationship
  1504. *
  1505. * This function is used by chado_select_record, chado_insert_record,
  1506. * and chado_update_record to iterate through the associate array of
  1507. * values that gets passed to each of those routines. The values array
  1508. * is nested where foreign key contraints are used to specify a value that. See
  1509. * documentation for any of those functions for further information.
  1510. *
  1511. * @param $table_desc
  1512. * A table description for the table with the foreign key relationship to be identified generated by
  1513. * hook_chado_<table name>_schema()
  1514. * @param $field
  1515. * The field in the table that is the foreign key.
  1516. * @param $values
  1517. * An associative array containing the values
  1518. * @param $options
  1519. * An associative array of additional options where the key is the option
  1520. * and the value is the value of that option. These options are passed on to chado_select_record.
  1521. *
  1522. * Additional Options Include:
  1523. * - case_insensitive_columns
  1524. * An array of columns to do a case insensitive search on.
  1525. * - regex_columns
  1526. * An array of columns where the value passed in should be treated as a regular expression
  1527. *
  1528. * @return
  1529. * A string containg the results of the foreign key lookup, or FALSE if failed.
  1530. *
  1531. * Example usage:
  1532. * @code
  1533. *
  1534. * $values = array(
  1535. * 'genus' => 'Citrus',
  1536. * 'species' => 'sinensis',
  1537. * );
  1538. * $value = chado_schema_get_foreign_key('feature', 'organism_id',$values);
  1539. *
  1540. * @endcode
  1541. * The above code selects a record from the feature table using the three fields
  1542. * that uniquely identify a feature. The $columns array simply lists the columns
  1543. * to select. The $values array is nested such that the organism is identified by
  1544. * way of the organism_id foreign key constraint by specifying the genus and
  1545. * species. The cvterm is also specified using its foreign key and the cv_id
  1546. * for the cvterm is nested as well.
  1547. *
  1548. * @ingroup tripal_core
  1549. */
  1550. function chado_schema_get_foreign_key($table_desc, $field, $values, $options = NULL) {
  1551. // set defaults for options. If we don't set defaults then
  1552. // we get memory leaks when we try to access the elements
  1553. if (!is_array($options)) {
  1554. $options = array();
  1555. }
  1556. if (!array_key_exists('case_insensitive_columns', $options)) {
  1557. $options['case_insensitive_columns'] = array();
  1558. }
  1559. if (!array_key_exists('regex_columns', $options)) {
  1560. $options['regex_columns'] = array();
  1561. }
  1562. // get the list of foreign keys for this table description and
  1563. // iterate through those until we find the one we're looking for
  1564. $fkeys = '';
  1565. if (array_key_exists('foreign keys', $table_desc)) {
  1566. $fkeys = $table_desc['foreign keys'];
  1567. }
  1568. if ($fkeys) {
  1569. foreach ($fkeys as $name => $def) {
  1570. if (is_array($def['table'])) {
  1571. //foreign key was described 2X
  1572. $message = "The foreign key " . $name . " was defined twice. Please check modules "
  1573. . "to determine if hook_chado_schema_<version>_" . $table_desc['table'] . "() was "
  1574. . "implemented and defined this foreign key when it wasn't supposed to. Modules "
  1575. . "this hook was implemented in: " . implode(', ',
  1576. module_implements("chado_" . $table_desc['table'] . "_schema")) . ".";
  1577. tripal_report_error('tripal_core', $message);
  1578. drupal_set_message(check_plain($message), 'error');
  1579. continue;
  1580. }
  1581. $table = $def['table'];
  1582. $columns = $def['columns'];
  1583. // iterate through the columns of the foreign key relationship
  1584. foreach ($columns as $left => $right) {
  1585. // does the left column in the relationship match our field?
  1586. if (strcmp($field, $left) == 0) {
  1587. // the column name of the foreign key matches the field we want
  1588. // so this is the right relationship. Now we want to select
  1589. $select_cols = array($right);
  1590. $result = chado_select_record($table, $select_cols, $values, $options);
  1591. $fields = array();
  1592. if ($result and count($result) > 0) {
  1593. foreach ($result as $obj) {
  1594. $fields[] = $obj->$right;
  1595. }
  1596. return $fields;
  1597. }
  1598. }
  1599. }
  1600. }
  1601. }
  1602. else {
  1603. // @todo: what do we do if we get to this point and we have a fk
  1604. // relationship expected but we don't have any definition for one in the
  1605. // table schema??
  1606. $version = $GLOBALS["chado_version"];
  1607. $message = t("There is no foreign key relationship defined for " . $field . " .
  1608. To define a foreign key relationship, determine the table this foreign
  1609. key referrs to (<foreign table>) and then implement
  1610. hook_chado_chado_schema_v<version>_<foreign table>(). See
  1611. tripal_feature_chado_v1_2_schema_feature for an example. Chado version: $version");
  1612. tripal_report_error('tripal_core', $message);
  1613. drupal_set_message(check_plain($message), 'error');
  1614. }
  1615. return array();
  1616. }