tripal_core.api.inc 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453
  1. <?php
  2. require_once "tripal_core.schema_v1.2.api.inc";
  3. require_once "tripal_core.schema_v1.11.api.inc";
  4. /**
  5. * @file
  6. * The Tripal Core API
  7. *
  8. * This file provides the API needed for all other Tripal and Tripal dependent
  9. * modules.
  10. *
  11. * @defgroup tripal_api Tripal API
  12. * @{
  13. * Provides an application programming interface (API) for Tripal
  14. *
  15. * The Tripal API currently provides generic insert/update/select functions for all chado content as
  16. * well as some module specific functions that insert/update/delete/select specific chado content.
  17. *
  18. * This API is currently in its infancy and some necessary functions might be missing. If you find
  19. * a missing function that you think should be included go to the sourceforge feature request
  20. * page and request it's inclusion in the API. Such feature requests with a working function
  21. * definition will be given priority.
  22. * @}
  23. *
  24. * @defgroup tripal_chado_api Core Module Chado API
  25. * @{
  26. * Provides an application programming interface (API) to manage data withing the Chado database.
  27. * This includes functions for selecting, inserting, updating and deleting records
  28. * in Chado tables. The functions will ensure proper integrity contraints are met
  29. * for inserts and updates.
  30. *
  31. * Also, a set of functions is provided for creating template variables. First,
  32. * is the tripal_core_generate_chado_vars which is used to select one ore more
  33. * records from a table and return an array with foreign key relationships fully
  34. * populated. For example, if selecting a feature, the organism_id and type_id
  35. * would be present in the returned array as a nested array with their respective
  36. * foreign keys also nested. The only fields that are not included are text
  37. * fields (which may be very large) or many-to-many foreign key relationships.
  38. * However, these fields and relationships can be expanded using the
  39. * tripal_core_expand_chado_vars.
  40. *
  41. * When a row from a chado table is selected using these two functions, it provides
  42. * a way for users who want to cutomize Drupal template files to access all data
  43. * associate with a specific record.
  44. *
  45. * Finally, the property tables in Chado generally follow the same format. Therefore
  46. * there is a set of functions for inserting, updating and deleting properties for
  47. * any table. This provides quick lookup of properties (provided the CV term is
  48. * known).
  49. *
  50. * @}
  51. * @ingroup tripal_api
  52. *
  53. * @defgroup tripal_files_api Core Module Files API
  54. * @{
  55. * Provides an application programming interface (API) for managing files within
  56. * the Tripal data directory structure.
  57. *
  58. * @}
  59. * @ingroup tripal_api
  60. /**
  61. * Provides a generic routine for inserting into any Chado table
  62. *
  63. * Use this function to insert a record into any Chado table. The first
  64. * argument specifies the table for inserting and the second is an array
  65. * of values to be inserted. The array is mutli-dimensional such that
  66. * foreign key lookup values can be specified.
  67. *
  68. * @param $table
  69. * The name of the chado table for inserting
  70. * @param $values
  71. * An associative array containing the values for inserting.
  72. * @param $options
  73. * An array of options such as:
  74. * - statement_name: the name of the prepared statement to use. If the statement
  75. * has not yet been prepared it will be prepared automatically. On subsequent
  76. * calls with the same statement_name only an execute on the previously
  77. * prepared statement will occur.
  78. * - is_prepared: TRUE or FALSE. Whether or not the statement is prepared. By
  79. * default if the statement is not prepared it will be automatically.
  80. * However to avoid this check, which requires a database query you can
  81. * set this value to true and the check will not be performed.
  82. * - skip_validation: TRUE or FALSE. If TRUE will skip all the validation steps and
  83. * just try to insert as is. This is much faster but results in unhandled
  84. * non user-friendly errors if the insert fails.
  85. * - return_record: by default, the function will return the record but with
  86. * the primary keys added after insertion. To simply return TRUE on success
  87. * set this option to FALSE
  88. *
  89. * @return
  90. * On success this function returns the inserted record with the new primary keys
  91. * add to the returned array. On failure, it returns FALSE.
  92. *
  93. * Example usage:
  94. * @code
  95. * $values = array(
  96. * 'organism_id' => array(
  97. * 'genus' => 'Citrus',
  98. * 'species' => 'sinensis',
  99. * ),
  100. * 'name' => 'orange1.1g000034m.g',
  101. * 'uniquename' => 'orange1.1g000034m.g',
  102. * 'type_id' => array (
  103. * 'cv_id' => array (
  104. * 'name' => 'sequence',
  105. * ),
  106. * 'name' => 'gene',
  107. * 'is_obsolete' => 0
  108. * ),
  109. * );
  110. * $result = tripal_core_chado_insert('feature',$values);
  111. * @endcode
  112. * The above code inserts a record into the feature table. The $values array is
  113. * nested such that the organism is selected by way of the organism_id foreign
  114. * key constraint by specifying the genus and species. The cvterm is also
  115. * specified using its foreign key and the cv_id for the cvterm is nested as
  116. * well.
  117. *
  118. * @ingroup tripal_chado_api
  119. */
  120. function tripal_core_chado_insert($table, $values, $options = array()) {
  121. // set defaults for options. If we don't set defaults then
  122. // we get memory leaks when we try to access the elements
  123. if (!is_array($options)) {
  124. $options = array();
  125. }
  126. if (!array_key_exists('is_prepared', $options)) {
  127. $options['is_prepared'] = FALSE;
  128. }
  129. if (!array_key_exists('statement_name', $options)) {
  130. $options['statement_name'] = FALSE;
  131. }
  132. if (!array_key_exists('skip_validation', $options)) {
  133. $options['skip_validation'] = FALSE;
  134. }
  135. if (!array_key_exists('return_record', $options)) {
  136. $options['return_record'] = TRUE;
  137. }
  138. $insert_values = array();
  139. // Determine plan of action
  140. if ($options['statement_name']) {
  141. // we have a prepared statment (or want to create one) so set $prepared = TRUE
  142. $prepared = TRUE;
  143. // we need to get a persistent connection. If one exists this function
  144. // will not recreate it, but if not it will create one and store it in
  145. // a Drupal variable for reuse later.
  146. $connection = tripal_db_persistent_chado();
  147. // if we cannot get a connection the abandon the prepared statement
  148. if (!$connection) {
  149. $prepared = FALSE;
  150. unset($options['statement_name']);
  151. }
  152. }
  153. else {
  154. //print "NO STATEMENT (insert): $table\n";
  155. //debug_print_backtrace();
  156. }
  157. if (array_key_exists('skip_validation', $options)) {
  158. $validate = !$options['skip_validation'];
  159. }
  160. else {
  161. $validate = TRUE;
  162. }
  163. // get the table description
  164. $table_desc = tripal_core_get_chado_table_schema($table);
  165. if (empty($table_desc)) {
  166. watchdog('tripal_core', 'tripal_core_chado_insert: There is no table description for !table_name', array('!table_name' => $table), WATCHDOG_WARNING);
  167. }
  168. // iterate through the values array and create a new 'insert_values' array
  169. // that has all the values needed for insert with all foreign relationsihps
  170. // resolved.
  171. foreach ($values as $field => $value) {
  172. // make sure the field is in the table description. If not then return an error
  173. // message
  174. if (!array_key_exists($field, $table_desc['fields'])) {
  175. watchdog('tripal_core', "tripal_core_chado_insert: The field '%field' does not exist ".
  176. "for the table '%table'. Cannot perform insert. Values: %array",
  177. array('%field' => $field, '%table' => $table, '%array' => print_r($values, 1)), WATCHDOG_ERROR);
  178. return FALSE;
  179. }
  180. if (is_array($value)) {
  181. $foreign_options = array();
  182. if ($options['statement_name']) {
  183. // add the fk relationship info to the prepared statement name so that
  184. // we can prepare the selects run by the recrusive tripal_core_chado_get_foreign_key
  185. // function.
  186. $fk_sname = "fk_" . $table . "_" . $field;
  187. foreach ($value as $k => $v) {
  188. $fk_sname .= substr($k, 0, 2);
  189. }
  190. $foreign_options['statement_name'] = $fk_sname;
  191. }
  192. // select the value from the foreign key relationship for this value
  193. $results = tripal_core_chado_get_foreign_key($table_desc, $field, $value, $foreign_options);
  194. if (sizeof($results) > 1) {
  195. watchdog('tripal_core', 'tripal_core_chado_insert: Too many records match the criteria supplied for !foreign_key foreign key constraint (!criteria)', array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)), WATCHDOG_ERROR);
  196. }
  197. elseif (sizeof($results) < 1) {
  198. //watchdog('tripal_core', 'tripal_core_chado_insert: no record matches criteria supplied for !foreign_key foreign key constraint (!criteria)', array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)), WATCHDOG_ERROR);
  199. }
  200. else {
  201. $insert_values[$field] = $results[0];
  202. }
  203. }
  204. else {
  205. $insert_values[$field] = $value;
  206. }
  207. }
  208. if ($validate) {
  209. // check for violation of any unique constraints
  210. $ukeys = array();
  211. if (array_key_exists('unique keys', $table_desc)) {
  212. $ukeys = $table_desc['unique keys'];
  213. }
  214. $ukselect_cols = array();
  215. $ukselect_vals = array();
  216. if ($ukeys) {
  217. foreach ($ukeys as $name => $fields) {
  218. foreach ($fields as $index => $field) {
  219. // build the arrays for performing a select that will check the contraint
  220. $ukselect_cols[] = $field;
  221. if (!array_key_exists($field, $insert_values)) {
  222. if (array_key_exists('default', $table_desc['fields'][$field])) {
  223. $ukselect_vals[$field] = $table_desc['fields'][$field]['default'];
  224. }
  225. }
  226. else {
  227. $ukselect_vals[$field] = $insert_values[$field];
  228. }
  229. }
  230. // now check the constraint
  231. $coptions = array();
  232. if ($options['statement_name']) {
  233. $coptions = array('statement_name' => 'uqsel_' . $table . '_' . $name);
  234. }
  235. if (tripal_core_chado_select($table, $ukselect_cols, $ukselect_vals, $coptions)) {
  236. watchdog('tripal_core', "tripal_core_chado_insert: Cannot insert duplicate record into $table table: " .
  237. print_r($values, 1), array(), 'WATCHDOG_ERROR');
  238. return FALSE;
  239. }
  240. }
  241. }
  242. // if trying to insert a field that is the primary key, make sure it also is unique
  243. if (array_key_exists('primary key', $table_desc)) {
  244. $pkey = $table_desc['primary key'][0];
  245. if (array_key_exists($pkey, $insert_values)) {
  246. $coptions = array('statement_name' => 'pqsel_' . $table . '_' . $pkey);
  247. if (tripal_core_chado_select($table, array($pkey), array($pkey => $insert_values[$pkey]), $coptions)) {
  248. watchdog('tripal_core', "tripal_core_chado_insert: Cannot insert duplicate primary key into $table table: " . print_r($values, 1), array(), 'WATCHDOG_ERROR');
  249. return FALSE;
  250. }
  251. }
  252. }
  253. // make sure required fields have a value
  254. if (!is_array($table_desc['fields'])) {
  255. $table_desc['fields'] = array();
  256. watchdog('tripal_core', "tripal_core_chado_insert: %table missing fields: \n %schema",
  257. array('%table' => $table, '%schema' => print_r($table_desc, 1)), WATCHDOG_WARNING);
  258. }
  259. foreach ($table_desc['fields'] as $field => $def) {
  260. // a field is considered missing if it cannot be NULL and there is no default
  261. // value for it or it is of type 'serial'
  262. if (array_key_exists('NOT NULL', $def) and
  263. !array_key_exists($field, $insert_values) and
  264. !array_key_exists('default', $def) and
  265. strcmp($def['type'], serial) != 0) {
  266. watchdog('tripal_core', "tripal_core_chado_insert: Field $table.$field cannot be NULL: " .
  267. print_r($values, 1), array(), 'WATCHDOG_ERROR');
  268. return FALSE;
  269. }
  270. }
  271. } //end of validation
  272. // Now build the insert SQL statement
  273. $ifields = array(); // contains the names of the fields
  274. $ivalues = array(); // contains the values of the fields
  275. $itypes = array(); // contains %d/%s placeholders for the sql query
  276. $iplaceholders = array(); // contains $1/$2 placeholders for the prepare query
  277. $idatatypes = array(); // contains the data type of the fields (int, text, etc.)
  278. $i = 1;
  279. foreach ($insert_values as $field => $value) {
  280. $ifields[] = $field;
  281. $ivalues[] = $value;
  282. $iplaceholders[] = '$' . $i;
  283. $i++;
  284. if (strcmp($value, '__NULL__')==0) {
  285. $itypes[] = "NULL";
  286. $idatatypes[] = "NULL";
  287. }
  288. elseif (strcasecmp($table_desc['fields'][$field]['type'], 'serial')==0 OR
  289. strcasecmp($table_desc['fields'][$field]['type'], 'int')==0 OR
  290. strcasecmp($table_desc['fields'][$field]['type'], 'integer')==0) {
  291. $itypes[] = "%d";
  292. $idatatypes[] = 'int';
  293. }
  294. elseif (strcasecmp($table_desc['fields'][$field]['type'], 'boolean')==0) {
  295. $itypes[] = "%s";
  296. $idatatypes[] = 'bool';
  297. }
  298. elseif (strcasecmp($table_desc['fields'][$field]['type'], 'float')==0) {
  299. $itypes[] = "%s";
  300. $idatatypes[] = 'numeric';
  301. }
  302. else {
  303. $itypes[] = "'%s'";
  304. $idatatypes[] = 'text';
  305. }
  306. }
  307. // create the SQL
  308. $sql = "INSERT INTO {$table} (" . implode(", ", $ifields) . ") VALUES (" . implode(", ", $itypes) . ")";
  309. // if this is a prepared statement then execute it
  310. if ($prepared) {
  311. // if this is the first time we've run this query
  312. // then we need to do the prepare, otherwise just execute
  313. if ($options['is_prepared'] != TRUE) {
  314. // prepare the statement
  315. $psql = "PREPARE " . $options['statement_name'] . " (" . implode(', ', $idatatypes) . ") AS INSERT INTO {$table} (" . implode(", ", $ifields) . ") VALUES (" . implode(", ", $iplaceholders) . ")";
  316. $status = tripal_core_chado_prepare($options['statement_name'], $psql, $idatatypes);
  317. if (!$status) {
  318. watchdog('tripal_core', "tripal_core_chado_insert: not able to prepare '%name' statement for: %sql", array('%name' => $options['statement_name'], '%sql' => $sql), 'WATCHDOG ERROR');
  319. return FALSE;
  320. }
  321. }
  322. $sql = "EXECUTE " . $options['statement_name'] . "(" . implode(", ", $itypes) . ")";
  323. $result = tripal_core_chado_execute_prepared($options['statement_name'], $sql, $ivalues);
  324. }
  325. // if it's not a prepared statement then insert normally
  326. else {
  327. $result = chado_query($sql, $ivalues);
  328. }
  329. // if we have a result then add primary keys to return array
  330. if ($options['return_record'] == TRUE and $result) {
  331. if (array_key_exists('primary key', $table_desc) and is_array($table_desc['primary key'])) {
  332. foreach ($table_desc['primary key'] as $field) {
  333. $psql = "PREPARE currval_" . $table . "_" . $field . " AS SELECT CURRVAL('" . $table . "_" . $field . "_seq')";
  334. $is_prepared = tripal_core_chado_prepare("currval_" . $table . "_" . $field, $psql, array());
  335. if ($is_prepared) {
  336. $value = db_result(chado_query("EXECUTE currval_". $table . "_" . $field));
  337. }
  338. else {
  339. $sql = "SELECT CURRVAL('" . $table . "_" . $field . "_seq')";
  340. $value = db_result(chado_query($sql));
  341. }
  342. $values[$field] = $value;
  343. }
  344. }
  345. return $values;
  346. }
  347. elseif ($options['return_record'] == FALSE and $result) {
  348. return TRUE;
  349. }
  350. else {
  351. watchdog('tripal_core', "tripal_core_chado_insert: Cannot insert record into $table table: " . print_r($values, 1), array(), 'WATCHDOG_ERROR');
  352. return FALSE;
  353. }
  354. return FALSE;
  355. }
  356. /**
  357. * Provides a generic routine for updating into any Chado table
  358. *
  359. * Use this function to update a record in any Chado table. The first
  360. * argument specifies the table for inserting, the second is an array
  361. * of values to matched for locating the record for updating, and the third
  362. * argument give the values to update. The arrays are mutli-dimensional such
  363. * that foreign key lookup values can be specified.
  364. *
  365. * @param $table
  366. * The name of the chado table for inserting
  367. * @param $match
  368. * An associative array containing the values for locating a record to update.
  369. * @param $values
  370. * An associative array containing the values for updating.
  371. * @param $options
  372. * An array of options such as:
  373. * - statement_name: the name of the prepared statement to use. If the statement
  374. * has not yet been prepared it will be prepared automatically. On subsequent
  375. * calls with the same statement_name only an execute on the previously
  376. * prepared statement will occur.
  377. * - is_prepared: TRUE or FALSE. Whether or not the statement is prepared. By
  378. * default if the statement is not prepared it will be automatically.
  379. * However to avoid this check, which requires a database query you can
  380. * set this value to true and the check will not be performed.
  381. * @return
  382. * On success this function returns TRUE. On failure, it returns FALSE.
  383. *
  384. * Example usage:
  385. * @code
  386. $umatch = array(
  387. 'organism_id' => array(
  388. 'genus' => 'Citrus',
  389. 'species' => 'sinensis',
  390. ),
  391. 'uniquename' => 'orange1.1g000034m.g7',
  392. 'type_id' => array (
  393. 'cv_id' => array (
  394. 'name' => 'sequence',
  395. ),
  396. 'name' => 'gene',
  397. 'is_obsolete' => 0
  398. ),
  399. );
  400. $uvalues = array(
  401. 'name' => 'orange1.1g000034m.g',
  402. 'type_id' => array (
  403. 'cv_id' => array (
  404. 'name' => 'sequence',
  405. ),
  406. 'name' => 'mRNA',
  407. 'is_obsolete' => 0
  408. ),
  409. );
  410. * $result = tripal_core_chado_update('feature',$umatch,$uvalues);
  411. * @endcode
  412. * The above code species that a feature with a given uniquename, organism_id,
  413. * and type_id (the unique constraint for the feature table) will be updated.
  414. * The organism_id is specified as a nested array that uses the organism_id
  415. * foreign key constraint to lookup the specified values to find the exact
  416. * organism_id. The same nested struture is also used for specifying the
  417. * values to update. The function will find the record that matches the
  418. * columns specified and update the record with the avlues in the $uvalues array.
  419. *
  420. * @ingroup tripal_chado_api
  421. */
  422. function tripal_core_chado_update($table, $match, $values, $options = NULL) {
  423. // set defaults for options. If we don't set defaults then
  424. // we get memory leaks when we try to access the elements
  425. if (!is_array($options)) {
  426. $options = array();
  427. }
  428. if (!array_key_exists('is_prepared', $options)) {
  429. $options['is_prepared'] = FALSE;
  430. }
  431. if (!array_key_exists('statement_name', $options)) {
  432. $options['statement_name'] = FALSE;
  433. }
  434. $update_values = array(); // contains the values to be updated
  435. $update_matches = array(); // contains the values for the where clause
  436. // Determine plan of action
  437. if ($options['statement_name']) {
  438. // we have a prepared statment (or want to create one) so set $prepared = TRUE
  439. $prepared = TRUE;
  440. // we need to get a persistent connection. If one exists this function
  441. // will not recreate it, but if not it will create one and store it in
  442. // a Drupal variable for reuse later.
  443. $connection = tripal_db_persistent_chado();
  444. // if we cannot get a connection the abandon the prepared statement
  445. if (!$connection ) {
  446. $prepared = FALSE;
  447. unset($options['statement_name']);
  448. }
  449. }
  450. else {
  451. //print "NO STATEMENT (update): $table\n";
  452. //debug_print_backtrace();
  453. }
  454. // get the table description
  455. $table_desc = tripal_core_get_chado_table_schema($table);
  456. // get the values needed for matching in the SQL statement
  457. foreach ($match as $field => $value) {
  458. if (is_array($value)) {
  459. $foreign_options = array();
  460. if ($options['statement_name']) {
  461. // add the fk relationship info to the prepared statement name so that
  462. // we can prepare the selects run by the recrusive tripal_core_chado_get_foreign_key
  463. // function.
  464. $fk_sname = "fk_" . $table . "_" . $field;
  465. foreach ($value as $k => $v) {
  466. $fk_sname .= substr($k, 0, 2);
  467. }
  468. $foreign_options['statement_name'] = $fk_sname;
  469. }
  470. $results = tripal_core_chado_get_foreign_key($table_desc, $field, $value, $foreign_options);
  471. if (sizeof($results) > 1) {
  472. watchdog('tripal_core', 'tripal_core_chado_update: When trying to find record to update, too many records match the criteria supplied for !foreign_key foreign key constraint (!criteria)', array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)), WATCHDOG_ERROR);
  473. }
  474. elseif (sizeof($results) < 1) {
  475. //watchdog('tripal_core', 'tripal_core_chado_update: When trying to find record to update, no record matches criteria supplied for !foreign_key foreign key constraint (!criteria)', array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)), WATCHDOG_ERROR);
  476. }
  477. else {
  478. $update_matches[$field] = $results[0];
  479. }
  480. }
  481. else {
  482. $update_matches[$field] = $value;
  483. }
  484. }
  485. // get the values used for updating
  486. foreach ($values as $field => $value) {
  487. if (is_array($value)) {
  488. $foreign_options = array();
  489. // select the value from the foreign key relationship for this value
  490. if ($options['statement_name']) {
  491. // add the fk relationship info to the prepared statement name so that
  492. // we can prepare the selects run by the recrusive tripal_core_chado_get_foreign_key
  493. // function.
  494. $fk_sname = "fk_" . $table . "_" . $field;
  495. foreach ($value as $k => $v) {
  496. $fk_sname .= substr($k, 0, 2);
  497. }
  498. $foreign_options['statement_name'] = $fk_sname;
  499. }
  500. $results = tripal_core_chado_get_foreign_key($table_desc, $field, $value, $foreign_options);
  501. if (sizeof($results) > 1) {
  502. watchdog('tripal_core', 'tripal_core_chado_update: When trying to find update values, too many records match the criteria supplied for !foreign_key foreign key constraint (!criteria)', array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)), WATCHDOG_ERROR);
  503. }
  504. elseif (sizeof($results) < 1) {
  505. //watchdog('tripal_core', 'tripal_core_chado_update: When trying to find update values, no record matches criteria supplied for !foreign_key foreign key constraint (!criteria)', array('!foreign_key' => $field, '!criteria' => print_r($value,TRUE)), WATCHDOG_ERROR);
  506. }
  507. else {
  508. $update_values[$field] = $results[0];
  509. }
  510. }
  511. else {
  512. $update_values[$field] = $value;
  513. }
  514. }
  515. // now build the SQL statement
  516. $sql = "UPDATE {$table} SET ";
  517. $psql = "UPDATE {$table} SET ";
  518. $uargs = array();
  519. $idatatypes = array();
  520. $pvalues = array();
  521. $ivalues = array();
  522. $i = 1;
  523. foreach ($update_values as $field => $value) {
  524. if (strcasecmp($table_desc['fields'][$field]['type'], 'serial')==0 OR
  525. strcasecmp($table_desc['fields'][$field]['type'], 'int')==0 OR
  526. strcasecmp($table_desc['fields'][$field]['type'], 'integer')==0) {
  527. if (strcmp($value, '__NULL__') == 0) {
  528. $sql .= " $field = %s, ";
  529. $ivalues[] = 'NULL';
  530. $pvalues[] = '%s';
  531. $uargs[] = 'NULL';
  532. }
  533. else {
  534. $sql .= " $field = %d, ";
  535. $ivalues[] = $value;
  536. $pvalues[] = '%d';
  537. $uargs[] = $value;
  538. }
  539. $idatatypes[] = 'int';
  540. }
  541. elseif (strcasecmp($table_desc['fields'][$field]['type'], 'boolean')==0) {
  542. $sql .= " $field = %s, ";
  543. $pvalues[] = '%s';
  544. if (strcmp($value, '__NULL__')==0) {
  545. $ivalues[] = 'NULL';
  546. $uargs[] = 'NULL';
  547. }
  548. else {
  549. $ivalues[] = $value;
  550. $uargs[] = $value;
  551. }
  552. $idatatypes[] = 'bool';
  553. }
  554. elseif (strcasecmp($table_desc['fields'][$field]['type'], 'float')==0) {
  555. $sql .= " $field = %s, ";
  556. $pvalues[] = '%s';
  557. if (strcmp($value, '__NULL__')==0) {
  558. $ivalues[] = 'NULL';
  559. $uargs[] = 'NULL';
  560. }
  561. else {
  562. $ivalues[] = $value;
  563. $uargs[] = $value;
  564. }
  565. $idatatypes[] = 'numeric';
  566. }
  567. else {
  568. if (strcmp($value, '__NULL__') == 0) {
  569. $sql .= " $field = %s, ";
  570. $ivalues[] = 'NULL';
  571. $uargs[] = 'NULL';
  572. $pvalues[] = '%s';
  573. }
  574. else {
  575. $sql .= " $field = '%s', ";
  576. $ivalues[] = $value;
  577. $uargs[] = $value;
  578. $pvalues[] = "'%s'";
  579. }
  580. $idatatypes[] = 'text';
  581. }
  582. $psql .= "$field = \$" . $i . ", ";
  583. $i++;
  584. }
  585. $sql = drupal_substr($sql, 0, -2); // get rid of the trailing comma & space
  586. $psql = drupal_substr($psql, 0, -2); // get rid of the trailing comma & space
  587. $sql .= " WHERE ";
  588. $psql .= " WHERE ";
  589. foreach ($update_matches as $field => $value) {
  590. if (strcasecmp($table_desc['fields'][$field]['type'], 'serial')==0 OR
  591. strcasecmp($table_desc['fields'][$field]['type'], 'int')==0 OR
  592. strcasecmp($table_desc['fields'][$field]['type'], 'integer')==0) {
  593. if (strcmp($value, '__NULL__')==0) {
  594. $sql .= " $field = %s AND ";
  595. $ivalues[] = 'NULL';
  596. $uargs[] = 'NULL';
  597. $pvalues[] = '%s';
  598. }
  599. else {
  600. $sql .= " $field = %d AND ";
  601. $ivalues[] = $value;
  602. $uargs[] = $value;
  603. $pvalues[] = '%s';
  604. }
  605. $idatatypes[] = 'int';
  606. }
  607. elseif (strcasecmp($table_desc['fields'][$field]['type'], 'boolean')==0) {
  608. $sql .= " $field = %s AND ";
  609. $pvalues[] = '%s';
  610. if (strcmp($value, '__NULL__')==0) {
  611. $ivalues[] = 'NULL';
  612. $uargs[] = 'NULL';
  613. }
  614. else {
  615. $ivalues[] = $value;
  616. $uargs[] = $value;
  617. }
  618. $idatatypes[] = 'bool';
  619. }
  620. elseif (strcasecmp($table_desc['fields'][$field]['type'], 'float')==0) {
  621. $sql .= " $field = %s AND ";
  622. $pvalues[] = '%s';
  623. if (strcmp($value, '__NULL__')==0) {
  624. $ivalues[] = 'NULL';
  625. $uargs[] = 'NULL';
  626. }
  627. else {
  628. $ivalues[] = $value;
  629. $uargs[] = $value;
  630. }
  631. $idatatypes[] = 'numeric';
  632. }
  633. else {
  634. if (strcmp($value, '__NULL__')==0) {
  635. $sql .= " $field = %s AND ";
  636. $ivalues[] = 'NULL';
  637. $uargs[] = 'NULL';
  638. $pvalues[] = '%s';
  639. }
  640. else {
  641. $sql .= " $field = '%s' AND ";
  642. $ivalues[] = $value;
  643. $uargs[] = $value;
  644. $pvalues[] = "'%s'";
  645. }
  646. $idatatypes[] = 'text';
  647. }
  648. $psql .= "$field = \$" . $i . " AND ";
  649. $i++;
  650. }
  651. $sql = drupal_substr($sql, 0, -4); // get rid of the trailing 'AND'
  652. $psql = drupal_substr($psql, 0, -4); // get rid of the trailing 'AND'
  653. // finish constructing the prepared SQL statement
  654. $psql = "PREPARE " . $options['statement_name'] . " (" . implode(', ', $idatatypes) . ") AS " . $psql;
  655. // finally perform the update. If successful, return the updated record
  656. if ($prepared) {
  657. // if this is the first time we've run this query
  658. // then we need to do the prepare, otherwise just execute
  659. if ($options['is_prepared'] != TRUE and
  660. !tripal_core_is_sql_prepared($options['statement_name'])) {
  661. $status = chado_query($psql);
  662. if (!$status) {
  663. watchdog('tripal_core', "tripal_core_chado_update: not able to prepare '%name' statement for: %sql", array('%name' => $options['statement_name'], '%sql' => $sql), 'WATCHDOG ERROR');
  664. return FALSE;
  665. }
  666. }
  667. $sql = "EXECUTE " . $options['statement_name'] . "(" . implode(", ", $pvalues) . ")";
  668. $resource = chado_query($sql, $ivalues);
  669. }
  670. // if it's not a prepared statement then insert normally
  671. else {
  672. $resource = chado_query($sql, $uargs);
  673. }
  674. if ($resource) {
  675. return TRUE;
  676. }
  677. else {
  678. watchdog('tripal_core', "Cannot update record in $table table. \nMatch:" . print_r($match, 1) . "\nValues: ". print_r($values, 1), array(), 'WATCHDOG_ERROR');
  679. return FALSE;
  680. }
  681. return FALSE;
  682. }
  683. /**
  684. * Provides a generic function for deleting a record(s) from any chado table
  685. *
  686. * Use this function to delete a record(s) in any Chado table. The first
  687. * argument specifies the table to delete from and the second is an array
  688. * of values to match for locating the record(s) to be deleted. The arrays
  689. * are mutli-dimensional such that foreign key lookup values can be specified.
  690. *
  691. * @param $table
  692. * The name of the chado table for inserting
  693. * @param $match
  694. * An associative array containing the values for locating a record to update.
  695. * @param $options
  696. * An array of options such as:
  697. * - statement_name: the name of the prepared statement to use. If the statement
  698. * has not yet been prepared it will be prepared automatically. On subsequent
  699. * calls with the same statement_name only an execute on the previously
  700. * prepared statement will occur.
  701. * - is_prepared: TRUE or FALSE. Whether or not the statement is prepared. By
  702. * default if the statement is not prepared it will be automatically.
  703. * However to avoid this check, which requires a database query you can
  704. * set this value to true and the check will not be performed.
  705. * @return
  706. * On success this function returns TRUE. On failure, it returns FALSE.
  707. *
  708. * Example usage:
  709. * @code
  710. $umatch = array(
  711. 'organism_id' => array(
  712. 'genus' => 'Citrus',
  713. 'species' => 'sinensis',
  714. ),
  715. 'uniquename' => 'orange1.1g000034m.g7',
  716. 'type_id' => array (
  717. 'cv_id' => array (
  718. 'name' => 'sequence',
  719. ),
  720. 'name' => 'gene',
  721. 'is_obsolete' => 0
  722. ),
  723. );
  724. $uvalues = array(
  725. 'name' => 'orange1.1g000034m.g',
  726. 'type_id' => array (
  727. 'cv_id' => array (
  728. 'name' => 'sequence',
  729. ),
  730. 'name' => 'mRNA',
  731. 'is_obsolete' => 0
  732. ),
  733. );
  734. * $result = tripal_core_chado_update('feature',$umatch,$uvalues);
  735. * @endcode
  736. * The above code species that a feature with a given uniquename, organism_id,
  737. * and type_id (the unique constraint for the feature table) will be deleted.
  738. * The organism_id is specified as a nested array that uses the organism_id
  739. * foreign key constraint to lookup the specified values to find the exact
  740. * organism_id. The same nested struture is also used for specifying the
  741. * values to update. The function will find all records that match the
  742. * columns specified and delete them.
  743. *
  744. * @ingroup tripal_chado_api
  745. */
  746. function tripal_core_chado_delete($table, $match, $options = NULL) {
  747. // set defaults for options. If we don't set defaults then
  748. // we get memory leaks when we try to access the elements
  749. if (!is_array($options)) {
  750. $options = array();
  751. }
  752. if (!array_key_exists('is_prepared', $options)) {
  753. $options['is_prepared'] = FALSE;
  754. }
  755. if (!array_key_exists('statement_name', $options)) {
  756. $options['statement_name'] = FALSE;
  757. }
  758. // Determine plan of action
  759. if ($options['statement_name']) {
  760. // we have a prepared statment (or want to create one) so set $prepared = TRUE
  761. $prepared = TRUE;
  762. // we need to get a persistent connection. If one exists this function
  763. // will not recreate it, but if not it will create one and store it in
  764. // a Drupal variable for reuse later.
  765. $connection = tripal_db_persistent_chado();
  766. // if we cannot get a connection the abandon the prepared statement
  767. if (!$connection ) {
  768. $prepared = FALSE;
  769. unset($options['statement_name']);
  770. }
  771. }
  772. else {
  773. //print "NO STATEMENT (update): $table\n";
  774. //debug_print_backtrace();
  775. }
  776. $delete_matches = array(); // contains the values for the where clause
  777. // get the table description
  778. $table_desc = tripal_core_get_chado_table_schema($table);
  779. $fields = $table_desc['fields'];
  780. // get the values needed for matching in the SQL statement
  781. foreach ($match as $field => $value) {
  782. if (is_array($value)) {
  783. // if the user has specified an array of values to delete rather than
  784. // FK relationships the keep those in our match
  785. if (array_values($value) === $value) {
  786. $delete_matches[$field] = $value;
  787. }
  788. else {
  789. $results = tripal_core_chado_get_foreign_key($table_desc, $field, $value);
  790. if (sizeof($results) > 1) {
  791. watchdog('tripal_core', 'tripal_core_chado_delete: When trying to find record to delete, too many records match the criteria supplied for !foreign_key foreign key constraint (!criteria)', array('!foreign_key' => $field, '!criteria' => print_r($value, TRUE)), WATCHDOG_ERROR);
  792. }
  793. elseif (sizeof($results) < 1) {
  794. //watchdog('tripal_core', 'tripal_core_chado_delete: 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)), WATCHDOG_ERROR);
  795. }
  796. else {
  797. $delete_matches[$field] = $results[0];
  798. }
  799. }
  800. }
  801. else {
  802. $delete_matches[$field] = $value;
  803. }
  804. }
  805. // now build the SQL statement
  806. $sql = "DELETE FROM {$table} WHERE ";
  807. $psql = $sql;
  808. $uargs = array();
  809. $idatatypes = array();
  810. $pvalues = array();
  811. $ivalues = array();
  812. $dargs = array();
  813. $void_prepared = 0;
  814. $i = 1;
  815. foreach ($delete_matches as $field => $value) {
  816. // if we have an array values then this is an "IN" clasue.
  817. // we cannot use prepared statements with these
  818. if (count($value) > 1) {
  819. $sql .= "$field IN (" . db_placeholders($value, 'varchar') . ") AND ";
  820. foreach ($value as $v) {
  821. $dargs[] = $v;
  822. }
  823. $void_prepared = 1;
  824. continue;
  825. }
  826. if (strcasecmp($table_desc['fields'][$field]['type'], 'serial') == 0 OR
  827. strcasecmp($table_desc['fields'][$field]['type'], 'int') == 0 OR
  828. strcasecmp($table_desc['fields'][$field]['type'], 'integer') == 0) {
  829. if (strcmp($value, '__NULL__') == 0) {
  830. $sql .= " $field = NULL AND ";
  831. $ivalues[] = 'NULL';
  832. $pvalues[] = '%s';
  833. $uargs[] = 'NULL';
  834. }
  835. else {
  836. $sql .= " $field = %d AND ";
  837. $ivalues[] = $value;
  838. $pvalues[] = '%d';
  839. $uargs[] = $value;
  840. }
  841. $idatatypes[] = 'int';
  842. }
  843. elseif (strcasecmp($table_desc['fields'][$field]['type'], 'boolean')==0) {
  844. $sql .= " $field = %s AND ";
  845. $pvalues[] = '%s';
  846. if (strcmp($value, '__NULL__')==0) {
  847. $ivalues[] = 'NULL';
  848. $uargs[] = 'NULL';
  849. }
  850. else {
  851. $ivalues[] = $value;
  852. $uargs[] = $value;
  853. }
  854. $idatatypes[] = 'bool';
  855. }
  856. elseif (strcasecmp($table_desc['fields'][$field]['type'], 'float')==0) {
  857. $sql .= " $field = %s AND ";
  858. $pvalues[] = '%s';
  859. if (strcmp($value, '__NULL__')==0) {
  860. $ivalues[] = 'NULL';
  861. $uargs[] = 'NULL';
  862. }
  863. else {
  864. $ivalues[] = $value;
  865. $uargs[] = $value;
  866. }
  867. $idatatypes[] = 'numeric';
  868. }
  869. else {
  870. if (strcmp($value, '__NULL__')==0) {
  871. $sql .= " $field = %s AND ";
  872. $ivalues[] = 'NULL';
  873. $uargs[] = 'NULL';
  874. $pvalues[] = '%s';
  875. }
  876. else {
  877. $sql .= " $field = '%s' AND ";
  878. $ivalues[] = $value;
  879. $uargs[] = $value;
  880. $pvalues[] = "'%s'";
  881. }
  882. $idatatypes[] = 'text';
  883. }
  884. array_push($dargs, $value);
  885. $psql .= "$field = \$" . $i . " AND ";
  886. $i++;
  887. }
  888. $sql = drupal_substr($sql, 0, -4); // get rid of the trailing 'AND'
  889. $psql = drupal_substr($psql, 0, -4); // get rid of the trailing 'AND'
  890. // finish constructing the prepared SQL statement
  891. $psql = "PREPARE " . $options['statement_name'] . " (" . implode(', ', $idatatypes) . ") AS " . $psql;
  892. // finally perform the update. If successful, return the updated record
  893. if ($prepared and !$void_prepared) {
  894. // if this is the first time we've run this query
  895. // then we need to do the prepare, otherwise just execute
  896. if ($options['is_prepared'] != TRUE and
  897. !tripal_core_is_sql_prepared($options['statement_name'])) {
  898. $status = chado_query($psql);
  899. if (!$status) {
  900. watchdog('tripal_core', "tripal_core_chado_delete: not able to prepare '%name' statement for: %sql", array('%name' => $options['statement_name'], '%sql' => $sql), 'WATCHDOG ERROR');
  901. return FALSE;
  902. }
  903. }
  904. $sql = "EXECUTE " . $options['statement_name'] . "(" . implode(", ", $pvalues) . ")";
  905. $resource = chado_query($sql, $ivalues);
  906. }
  907. // if it's not a prepared statement then insert normally
  908. else {
  909. $resource = chado_query($sql, $uargs);
  910. }
  911. // finally perform the delete. If successful, return the updated record
  912. $result = chado_query($sql, $dargs);
  913. if ($result) {
  914. return TRUE;
  915. }
  916. else {
  917. watchdog('tripal_core', "Cannot delete record in $table table. Match:" . print_r($match, 1) . ". Values: ". print_r($values, 1), array(), 'WATCHDOG_ERROR');
  918. return FALSE;
  919. }
  920. return FALSE;
  921. }
  922. /**
  923. * Provides a generic routine for selecting data from a Chado table
  924. *
  925. * Use this function to perform a simple select from any Chado table.
  926. *
  927. * @param $table
  928. * The name of the chado table for inserting
  929. * @param $columns
  930. * An array of column names
  931. * @param $values
  932. * An associative array containing the values for filtering the results. In the
  933. * case where multiple values for the same time are to be selected an additional
  934. * entry for the field should appear for each value
  935. * @param $options
  936. * An associative array of additional options where the key is the option
  937. * and the value is the value of that option.
  938. *
  939. * Additional Options Include:
  940. * - has_record
  941. * Set this argument to 'TRUE' to have this function return a numeric
  942. * value for the number of recrods rather than the array of records. this
  943. * can be useful in 'if' statements to check the presence of particula records.
  944. * - return_sql
  945. * Set this to 'TRUE' to have this function return an array where the first
  946. * element is the sql that would have been run and the second is an array of
  947. * arguments.
  948. * - case_insensitive_columns
  949. * An array of columns to do a case insensitive search on.
  950. * - regex_columns
  951. * An array of columns where the value passed in should be treated as a regular expression
  952. * - order_by
  953. * An associative array containing the column names of the table as keys
  954. * and the type of sort (i.e. ASC, DESC) as the values. The results in the
  955. * query will be sorted by the key values in the direction listed by the value
  956. * - statement_name: the name of the prepared statement to use. If the statement
  957. * has not yet been prepared it will be prepared automatically. On subsequent
  958. * calls with the same statement_name only an execute on the previously
  959. * prepared statement will occur.
  960. * - is_prepared: TRUE or FALSE. Whether or not the statement is prepared. By
  961. * default if the statement is not prepared it will be automatically.
  962. * However to avoid this check, which requires a database query you can
  963. * set this value to true and the check will not be performed.
  964. * - is_duplicate: TRUE or FALSE. Checks the values submited to see if
  965. * they violate any of the unique constraints. If so, the record
  966. * is returned, if not, FALSE is returned.
  967. *
  968. *
  969. * @return
  970. * A database query result resource, FALSE if the query was not executed
  971. * correctly, an empty array if no records were matched, or the number of records
  972. * in the dataset if $has_record is set.
  973. * If the option 'is_duplicate' is provided and the record is a duplicate it
  974. * will return the duplicated record. If the 'has_record' option is provided
  975. * a value of TRUE will be returned if a record exists and FALSE will bee
  976. * returned if there are not records.
  977. *
  978. * Example usage:
  979. * @code
  980. * $columns = array('feature_id', 'name');
  981. * $values = array(
  982. * 'organism_id' => array(
  983. * 'genus' => 'Citrus',
  984. * 'species' => array('sinensis', 'clementina'),
  985. * ),
  986. * 'uniquename' => 'orange1.1g000034m.g',
  987. * 'type_id' => array (
  988. * 'cv_id' => array (
  989. * 'name' => 'sequence',
  990. * ),
  991. * 'name' => 'gene',
  992. * 'is_obsolete' => 0
  993. * ),
  994. * );
  995. * $options = array(
  996. * 'statement_name' => 'sel_feature_genus_species_cvname'
  997. * 'order_by' => array(
  998. * 'name' => 'ASC'
  999. * ),
  1000. * );
  1001. * $result = tripal_core_chado_select('feature',$columns,$values,$options);
  1002. * @endcode
  1003. * The above code selects a record from the feature table using the three fields
  1004. * that uniquely identify a feature. The $columns array simply lists the columns
  1005. * to select. The $values array is nested such that the organism is identified by
  1006. * way of the organism_id foreign key constraint by specifying the genus and
  1007. * species. The cvterm is also specified using its foreign key and the cv_id
  1008. * for the cvterm is nested as well. In the example above, two different species
  1009. * are allowed to match
  1010. *
  1011. * @ingroup tripal_chado_api
  1012. */
  1013. function tripal_core_chado_select($table, $columns, $values, $options = NULL) {
  1014. // set defaults for options. If we don't set defaults then
  1015. // we get memory leaks when we try to access the elements
  1016. if (!is_array($options)) {
  1017. $options = array();
  1018. }
  1019. if (!array_key_exists('case_insensitive_columns', $options)) {
  1020. $options['case_insensitive_columns'] = array();
  1021. }
  1022. if (!array_key_exists('regex_columns', $options)) {
  1023. $options['regex_columns'] = array();
  1024. }
  1025. if (!array_key_exists('order_by', $options)) {
  1026. $options['order_by'] = array();
  1027. }
  1028. if (!array_key_exists('is_prepared', $options)) {
  1029. $options['is_prepared'] = FALSE;
  1030. }
  1031. if (!array_key_exists('return_sql', $options)) {
  1032. $options['return_sql'] = FALSE;
  1033. }
  1034. if (!array_key_exists('has_record', $options)) {
  1035. $options['has_record'] = FALSE;
  1036. }
  1037. if (!array_key_exists('statement_name', $options)) {
  1038. $options['statement_name'] = FALSE;
  1039. }
  1040. if (!array_key_exists('is_duplicate', $options)) {
  1041. $options['is_duplicate'] = FALSE;
  1042. }
  1043. // if this is a prepared statement check to see if it has already been prepared
  1044. $prepared = FALSE;
  1045. if ($options['statement_name']) {
  1046. $prepared = TRUE;
  1047. // we need to get a persistent connection. If one exists this function
  1048. // will not recreate it, but if not it will create one and store it in
  1049. // a Drupal variable for reuse later.
  1050. $connection = tripal_db_persistent_chado();
  1051. // if we cannot get a connection the abandon the prepared statement
  1052. if (!$connection) {
  1053. $prepared = FALSE;
  1054. unset($options['statement_name']);
  1055. }
  1056. }
  1057. else {
  1058. //print "NO STATEMENT (select): $table\n";
  1059. //debug_print_backtrace();
  1060. }
  1061. // check that our columns and values arguments are proper arrays
  1062. if (!is_array($columns)) {
  1063. watchdog('tripal_core', 'the $columns argument for tripal_core_chado_select must be an array.');
  1064. return FALSE;
  1065. }
  1066. if (!is_array($values)) {
  1067. watchdog('tripal_core', 'the $values argument for tripal_core_chado_select must be an array.');
  1068. return FALSE;
  1069. }
  1070. // get the table description
  1071. $table_desc = tripal_core_get_chado_table_schema($table);
  1072. $select = '';
  1073. $from = '';
  1074. $where = '';
  1075. $args = array();
  1076. // if the 'use_unique' option is turned on then we want
  1077. // to remove all but unique keys
  1078. if ($options['is_duplicate'] and array_key_exists('unique keys', $table_desc)) {
  1079. $ukeys = $table_desc['unique keys'];
  1080. $has_results = 0;
  1081. // iterate through the unique constraints and reset the values and columns
  1082. // arrays to only include these fields
  1083. foreach ($ukeys as $cname => $fields) {
  1084. if ($has_results) {
  1085. continue;
  1086. }
  1087. $new_values = array();
  1088. $new_columns = array();
  1089. $new_options = array();
  1090. $uq_sname = "uq_" . $table . "_";
  1091. $has_pkey = 0;
  1092. // include the primary key in the results returned
  1093. if (array_key_exists('primary key', $table_desc)) {
  1094. $has_pkey = 1;
  1095. $pkeys = $table_desc['primary key'];
  1096. foreach ($pkeys as $index => $key) {
  1097. array_push($new_columns, $key);
  1098. }
  1099. }
  1100. // recreate the $values and $columns arrays
  1101. foreach ($fields as $field) {
  1102. if (array_key_exists($field, $values)) {
  1103. $new_values[$field] = $values[$field];
  1104. $uq_sname .= substr($field, 0, 2);
  1105. // if there is no primary key then use the unique contraint fields
  1106. if (!$has_pkey) {
  1107. array_push($new_columns, $field);
  1108. }
  1109. }
  1110. // if the field doesn't exist in the values array then
  1111. // substitute any default values
  1112. elseif (array_key_exists('default', $table_desc['fields'][$field])) {
  1113. $new_values[$field] = $table_desc['fields'][$field]['default'];
  1114. $uq_sname .= substr($field, 0, 2);
  1115. if (!$has_pkey) {
  1116. array_push($new_columns, $field);
  1117. }
  1118. }
  1119. // if there is no value (default or otherwise) check if this field is
  1120. // allowed to be null
  1121. elseif (!$table_desc['fields'][$field]['not null']) {
  1122. $new_values[$field] = NULL;
  1123. $uq_sname .= "n".substr($field, 0, 2);
  1124. if (!$has_pkey) {
  1125. array_push($new_columns, $field);
  1126. }
  1127. }
  1128. // if the array key doesn't exist in the values given by the caller
  1129. // and there is no default value then we cannot check if the record
  1130. // is a duplicate so return FALSE
  1131. else {
  1132. watchdog('tripal_core', "tripal_core_chado_select: There is no value for %field"
  1133. ." thus we cannot check if this record is unique",
  1134. array('%field' => $field), WATCHDOG_ERROR);
  1135. return FALSE;
  1136. }
  1137. }
  1138. $new_options['statement_name'] = $uq_sname;
  1139. $results = tripal_core_chado_select($table, $new_columns, $new_values, $new_options);
  1140. // if we have a duplicate record then return the results
  1141. if (count($results) > 0) {
  1142. $has_results = 1;
  1143. }
  1144. unset($new_columns);
  1145. unset($new_values);
  1146. unset($new_options);
  1147. }
  1148. if ($options['has_record'] and $has_results) {
  1149. return TRUE;
  1150. }
  1151. else {
  1152. return $results;
  1153. }
  1154. }
  1155. foreach ($values as $field => $value) {
  1156. // make sure the field is in the table description. If not then return an error
  1157. // message
  1158. if (!array_key_exists($field, $table_desc['fields'])) {
  1159. watchdog('tripal_core', "tripal_core_chado_select: The field '%field' does not exist ".
  1160. "for the table '%table'. Cannot perform query. Values: %array",
  1161. array('%field' => $field, '%table' => $table, '%array' => print_r($values, 1)), WATCHDOG_ERROR);
  1162. return array();
  1163. }
  1164. $select[] = $field;
  1165. if (is_array($value)) {
  1166. // if the user has specified multiple values for matching then this we
  1167. // want to catch that and save them in our $where array, otherwise
  1168. // we'll descend for a foreign key relationship
  1169. if (array_values($value) === $value) {
  1170. $where[$field] = $value;
  1171. }
  1172. else {
  1173. // select the value from the foreign key relationship for this value
  1174. $foreign_options = array(
  1175. 'regex_columns' => $options['regex_columns'],
  1176. 'case_insensitive_columns' => $options['case_insensitive_columns']
  1177. );
  1178. if (array_key_exists('statement_name', $options) and $options['statement_name']) {
  1179. // add the fk relationship info to the prepared statement name so that
  1180. // we can prepare the selects run by the recrusive tripal_core_chado_get_foreign_key
  1181. // function. we need the statement name to be unique so take the first two characters of each column
  1182. $fk_sname = "fk_" . $table . "_" . $field;
  1183. foreach ($value as $k => $v) {
  1184. $fk_sname .= substr($k, 0, 2);
  1185. }
  1186. $foreign_options['statement_name'] = $fk_sname;
  1187. }
  1188. $results = tripal_core_chado_get_foreign_key($table_desc, $field, $value, $foreign_options);
  1189. if (!$results or count($results)==0) {
  1190. // foreign key records are required
  1191. // thus if none matched then return FALSE and alert the admin through watchdog
  1192. /*watchdog('tripal_core',
  1193. 'tripal_core_chado_select: no record in the table referenced by the foreign key (!field) exists. tripal_core_chado_select table=!table, columns=!columns, values=!values',
  1194. array('!table' => $table,
  1195. '!columns' => '<pre>' . print_r($columns, TRUE) . '</pre>',
  1196. '!values' => '<pre>' . print_r($values, TRUE) . '</pre>',
  1197. '!field' => $field,
  1198. ),
  1199. WATCHDOG_WARNING);*/
  1200. return array();
  1201. }
  1202. else {
  1203. $where[$field] = $results;
  1204. }
  1205. }
  1206. }
  1207. else {
  1208. // need to catch a 0 and make int if integer field
  1209. // but we don't want to catch a NULL
  1210. if ($value === NULL) {
  1211. $where[$field] = NULL;
  1212. }
  1213. elseif ($table_desc['fields'][$field]['type'] == 'int') {
  1214. $where[$field][] = (int) $value;
  1215. }
  1216. else {
  1217. $where[$field][] = $value;
  1218. }
  1219. }
  1220. }
  1221. // now build the SQL and prepared SQL statements. We may not use
  1222. // the prepared statement if it wasn't requested in the options of if the
  1223. // argument in a where statement has multiple values.
  1224. if (empty($where)) {
  1225. // sometimes want to select everything
  1226. $sql = "SELECT " . implode(', ', $columns) . " ";
  1227. $sql .= "FROM {$table} ";
  1228. // we don't prepare a statement if there is no where clause
  1229. $prepared = FALSE;
  1230. }
  1231. else {
  1232. $sql = "SELECT " . implode(', ', $columns) . " ";
  1233. $sql .= "FROM {$table} ";
  1234. $sql .= "WHERE ";
  1235. $psql = $sql; // prepared SQL statement;
  1236. $i = 1;
  1237. $pvalues = array();
  1238. $itypes = array();
  1239. foreach ($where as $field => $value) {
  1240. // if we have multiple values returned then we need an 'IN' statement
  1241. // in our where statement
  1242. if (count($value) > 1) {
  1243. $sql .= "$field IN (" . db_placeholders($value, 'varchar') . ") AND ";
  1244. foreach ($value as $v) {
  1245. $args[] = $v;
  1246. // we can't do a prepared statement with an 'IN' statement in a
  1247. // where clause because we can't guarantee we'll always have the
  1248. // same number of elements.
  1249. $prepared = FALSE;
  1250. }
  1251. }
  1252. // if we have a null value then we need an IS NULL in our where statement
  1253. elseif ($value === NULL) {
  1254. $sql .= "$field IS NULL AND ";
  1255. $psql .= "$field IS NULL AND ";
  1256. // Need to remove one from the argument count b/c nulls don't add an argument
  1257. $i--;
  1258. }
  1259. // if we have a single value then we need an = in our where statement
  1260. else {
  1261. $operator = '=';
  1262. if (in_array($field, $options['regex_columns'])) {
  1263. $operator = '~*';
  1264. }
  1265. // get the types for the prepared statement. First check if the type
  1266. // is an integer
  1267. if (strcasecmp($table_desc['fields'][$field]['type'], 'serial')==0 OR
  1268. strcasecmp($table_desc['fields'][$field]['type'], 'int')==0 OR
  1269. strcasecmp($table_desc['fields'][$field]['type'], 'integer')==0) {
  1270. $sql .= "$field $operator %d AND ";
  1271. $psql .= "$field $operator \$" . $i . " AND ";
  1272. $args[] = $value[0];
  1273. // set the variables needed for the prepared statement
  1274. $idatatypes[] = 'int';
  1275. $itypes[] = '%d';
  1276. $pvalues[] = $value[0];
  1277. }
  1278. elseif (strcasecmp($table_desc['fields'][$field]['type'], 'boolean')==0) {
  1279. $sql .= "$field $operator %s AND ";
  1280. $psql .= "$field $operator \$" . $i . " AND ";
  1281. $args[] = $value[0];
  1282. // set the variables needed for the prepared statement
  1283. $idatatypes[] = 'bool';
  1284. $itypes[] = '%d';
  1285. $pvalues[] = $value[0];
  1286. }
  1287. elseif (strcasecmp($table_desc['fields'][$field]['type'], 'float')==0) {
  1288. $sql .= "$field $operator %s AND ";
  1289. $psql .= "$field $operator \$" . $i . " AND ";
  1290. $args[] = $value[0];
  1291. // set the variables needed for the prepared statement
  1292. $idatatypes[] = 'numeric';
  1293. $itypes[] = '%f';
  1294. $pvalues[] = $value[0];
  1295. }
  1296. // else the type is a text
  1297. else {
  1298. if (in_array($field, $options['case_insensitive_columns'])) {
  1299. $sql .= "lower($field) $operator lower('%s') AND ";
  1300. $psql .= "lower($field) $operator lower('\$" . $i . "') AND ";
  1301. $args[] = $value;
  1302. }
  1303. else {
  1304. $sql .= "$field $operator '%s' AND ";
  1305. $psql .= "$field $operator \$" . $i . " AND ";
  1306. $args[] = $value[0];
  1307. }
  1308. // set the variables needed for the prepared statement
  1309. $idatatypes[] = 'text';
  1310. $itypes[] = "'%s'";
  1311. $pvalues[] = $value[0];
  1312. }
  1313. }
  1314. $i++;
  1315. }
  1316. $sql = drupal_substr($sql, 0, -4); // get rid of the trailing 'AND '
  1317. $psql = drupal_substr($psql, 0, -4); // get rid of the trailing 'AND '
  1318. // finally add any ordering of the results to the SQL statement
  1319. if (count($options['order_by']) > 0) {
  1320. $sql .= " ORDER BY ";
  1321. $psql .= " ORDER BY ";
  1322. foreach ($options['order_by'] as $field => $dir) {
  1323. $sql .= "$field $dir, ";
  1324. $psql .= "$field $dir, ";
  1325. }
  1326. $sql = drupal_substr($sql, 0, -2); // get rid of the trailing ', '
  1327. $psql = drupal_substr($psql, 0, -2); // get rid of the trailing ', '
  1328. }
  1329. // finish constructing the prepared SQL statement
  1330. if ($options['statement_name']) {
  1331. $psql = "PREPARE " . $options['statement_name'] . " (" . implode(', ', $idatatypes) . ") AS " . $psql;
  1332. }
  1333. } // end if(empty($where)){ } else {
  1334. // if the caller has requested the SQL rather than the results...
  1335. // which happens in the case of wanting to use the Drupal pager, then do so
  1336. if ($options['return_sql'] == TRUE) {
  1337. return array('sql' => $sql, 'args' => $args);
  1338. }
  1339. // prepare the statement
  1340. if ($prepared) {
  1341. // if this is the first time we've run this query
  1342. // then we need to do the prepare, otherwise just execute
  1343. if ($options['is_prepared'] != TRUE) {
  1344. $status = tripal_core_chado_prepare($options['statement_name'], $psql, $idatatypes);
  1345. if (!$status) {
  1346. return FALSE;
  1347. }
  1348. }
  1349. $sql = "EXECUTE " . $options['statement_name'] . "(" . implode(", ", $itypes) . ")";
  1350. // WARNING: This call creates a memory leak: if you remove the $pvalues it doesn't
  1351. // do this. Got to find out what's causing this.
  1352. $resource = tripal_core_chado_execute_prepared($options['statement_name'], $sql, $pvalues);
  1353. }
  1354. else {
  1355. $resource = chado_query($sql, $args);
  1356. }
  1357. // format results into an array
  1358. $results = array();
  1359. while ($r = db_fetch_object($resource)) {
  1360. $results[] = $r;
  1361. }
  1362. if ($options['has_record']) {
  1363. return count($results);
  1364. }
  1365. return $results;
  1366. }
  1367. /**
  1368. * Gets the value of a foreign key relationship
  1369. *
  1370. * This function is used by tripal_core_chado_select, tripal_core_chado_insert,
  1371. * and tripal_core_chado_update to iterate through the associate array of
  1372. * values that gets passed to each of those routines. The values array
  1373. * is nested where foreign key contraints are used to specify a value that. See
  1374. * documentation for any of those functions for further information.
  1375. *
  1376. * @param $table_desc
  1377. * A table description for the table with the foreign key relationship to be identified generated by
  1378. * hook_chado_<table name>_schema()
  1379. * @param $field
  1380. * The field in the table that is the foreign key.
  1381. * @param $values
  1382. * An associative array containing the values
  1383. * @param $options
  1384. * An associative array of additional options where the key is the option
  1385. * and the value is the value of that option. These options are passed on to tripal_core_chado_select.
  1386. *
  1387. * Additional Options Include:
  1388. * - case_insensitive_columns
  1389. * An array of columns to do a case insensitive search on.
  1390. * - regex_columns
  1391. * An array of columns where the value passed in should be treated as a regular expression
  1392. *
  1393. * @return
  1394. * A string containg the results of the foreign key lookup, or FALSE if failed.
  1395. *
  1396. * Example usage:
  1397. * @code
  1398. *
  1399. * $values = array(
  1400. * 'genus' => 'Citrus',
  1401. * 'species' => 'sinensis',
  1402. * );
  1403. * $value = tripal_core_chado_get_foreign_key('feature', 'organism_id',$values);
  1404. *
  1405. * @endcode
  1406. * The above code selects a record from the feature table using the three fields
  1407. * that uniquely identify a feature. The $columns array simply lists the columns
  1408. * to select. The $values array is nested such that the organism is identified by
  1409. * way of the organism_id foreign key constraint by specifying the genus and
  1410. * species. The cvterm is also specified using its foreign key and the cv_id
  1411. * for the cvterm is nested as well.
  1412. *
  1413. * @ingroup tripal_chado_api
  1414. */
  1415. function tripal_core_chado_get_foreign_key($table_desc, $field, $values, $options = NULL) {
  1416. // set defaults for options. If we don't set defaults then
  1417. // we get memory leaks when we try to access the elements
  1418. if (!is_array($options)) {
  1419. $options = array();
  1420. }
  1421. if (!array_key_exists('case_insensitive_columns', $options)) {
  1422. $options['case_insensitive_columns'] = array();
  1423. }
  1424. if (!array_key_exists('regex_columns', $options)) {
  1425. $options['regex_columns'] = array();
  1426. }
  1427. // get the list of foreign keys for this table description and
  1428. // iterate through those until we find the one we're looking for
  1429. $fkeys = '';
  1430. if (array_key_exists('foreign keys', $table_desc)) {
  1431. $fkeys = $table_desc['foreign keys'];
  1432. }
  1433. if ($fkeys) {
  1434. foreach ($fkeys as $name => $def) {
  1435. if (is_array($def['table'])) {
  1436. //foreign key was described 2X
  1437. $message = "The foreign key " . $name . " was defined twice. Please check modules "
  1438. ."to determine if hook_chado_schema_<version>_" . $table_desc['table'] . "() was "
  1439. ."implemented and defined this foreign key when it wasn't supposed to. Modules "
  1440. ."this hook was implemented in: " . implode(', ',
  1441. module_implements("chado_" . $table_desc['table'] . "_schema")) . ".";
  1442. watchdog('tripal_core', $message);
  1443. drupal_set_message(check_plain($message), 'error');
  1444. continue;
  1445. }
  1446. $table = $def['table'];
  1447. $columns = $def['columns'];
  1448. // iterate through the columns of the foreign key relationship
  1449. foreach ($columns as $left => $right) {
  1450. // does the left column in the relationship match our field?
  1451. if (strcmp($field, $left) == 0) {
  1452. // the column name of the foreign key matches the field we want
  1453. // so this is the right relationship. Now we want to select
  1454. $select_cols = array($right);
  1455. $result = tripal_core_chado_select($table, $select_cols, $values, $options);
  1456. $fields = array();
  1457. if ($result and count($result) > 0) {
  1458. foreach ($result as $obj) {
  1459. $fields[] = $obj->$right;
  1460. }
  1461. return $fields;
  1462. }
  1463. }
  1464. }
  1465. }
  1466. }
  1467. else {
  1468. // TODO: what do we do if we get to this point and we have a fk
  1469. // relationship expected but we don't have any definition for one in the
  1470. // table schema??
  1471. $version = tripal_core_get_chado_version(TRUE);
  1472. $message = t("There is no foreign key relationship defined for " . $field . ".
  1473. To define a foreign key relationship, determine the table this foreign
  1474. key referrs to (<foreign table>) and then implement
  1475. hook_chado_chado_schema_v<version>_<foreign table>(). See
  1476. tripal_feature_chado_v1_2_schema_feature for an example. Chado version: $version");
  1477. watchdog('tripal_core', $message);
  1478. drupal_set_message(check_plain($message), 'error');
  1479. }
  1480. return array();
  1481. }
  1482. /**
  1483. * Generates an object containing the full details of a record(s) in chado.
  1484. *
  1485. * This differs from the objects returned by tripal_core_chado_select in so far as all foreign key
  1486. * relationships have been followed meaning you have more complete details. Thus this function
  1487. * should be used whenever you need a full variable and tripal_core_chado_select should be used if
  1488. * you only case about a few columns.
  1489. *
  1490. * @param $table
  1491. * The name of the base table to generate a variable for
  1492. * @param $values
  1493. * A select values array that selects the records you want from the base table
  1494. * (this has the same form as tripal_core_chado_select)
  1495. * @param $base_options
  1496. * An array containing options for the base table. For example, an
  1497. * option of 'order_by' may be used to sort results in the base table
  1498. * if more than one are returned. The options must be compatible with
  1499. * the options accepted by the tripal_core_chado_select() function.
  1500. * Additionally, These options are available for this function:
  1501. * -return_array:
  1502. * can be provided to force the function to always return an array. Default
  1503. * behavior is to return a single record if only one record exists or to return
  1504. * an array if multiple records exist.
  1505. * - include_fk:
  1506. * an array of FK relationships to fallow. By default, the
  1507. * tripal_core_chado_select function will follow all FK relationships but this
  1508. * may generate more queries then is desired. Provide an array specifying the
  1509. * fields to include. For example, if including the cvterm, cv and dbxref records
  1510. * for a property the following array would work:
  1511. * array('type_id' => array('cv_id' => 1, 'dbxref_id' => 1)).
  1512. * Typicall, to expadn a property, this function would also include the db record
  1513. * through the db_id foreign key with the dbxref and db tables, but becuase
  1514. * it is not included in the array it will not be included in the results.
  1515. * @return
  1516. * Either an object (if only one record was selected from the base table)
  1517. * or an array of objects (if more than one record was selected from the base table).
  1518. * If the option 'return_array' is provided the function always returns an array.
  1519. *
  1520. * Example Usage:
  1521. * @code
  1522. $values = array(
  1523. 'name' => 'Medtr4g030710'
  1524. );
  1525. $features = tripal_core_generate_chado_var('feature', $values);
  1526. * @endcode
  1527. * This will return an object if there is only one feature with the name Medtr4g030710 or it will
  1528. * return an array of feature objects if more than one feature has that name.
  1529. *
  1530. * Note to Module Designers: Fields can be excluded by default from these objects by implementing
  1531. * one of the following hooks:
  1532. * - hook_exclude_field_from_tablename_by_default (where tablename is the name of the table):
  1533. * This hook allows you to add fields to be excluded on a per table basis. Simply implement
  1534. * this hook to return an array of fields to be excluded. For example:
  1535. * @code
  1536. mymodule_exclude_field_from_feature_by_default() {
  1537. return array('residues' => TRUE);
  1538. }
  1539. * @endcode
  1540. * will ensure that feature.residues is ecluded from a feature object by default.
  1541. * - hook_exclude_type_by_default:
  1542. * This hook allows you to exclude fields from all tables that are of a given postgresql field
  1543. * type. Simply implement this hook to return an array of postgresql types mapped to criteria.
  1544. * Then all fields of that type where the criteria supplied returns TRUE will be excluded from
  1545. * any table. Tokens available in criteria are &gt;field_value&lt; and &gt;field_name&lt; . For example:
  1546. * @code
  1547. mymodule_exclude_type_by_default() {
  1548. return array('text' => 'length(&gt;field_value&lt; ) > 50');
  1549. }
  1550. * @endcode
  1551. * will exclude all text fields with a length > 50. Thus if $feature.residues is longer than 50 * it will be excluded, otherwise it will be added.
  1552. *
  1553. * @ingroup tripal_chado_api
  1554. */
  1555. function tripal_core_generate_chado_var($table, $values, $base_options = array()) {
  1556. $all = new stdClass();
  1557. $return_array = 0;
  1558. if (array_key_exists('return_array', $base_options)) {
  1559. $return_array = 1;
  1560. }
  1561. $include_fk = 0;
  1562. if (array_key_exists('include_fk', $base_options)) {
  1563. $include_fk = $base_options['include_fk'];
  1564. }
  1565. // get description for the current table----------------------------------------------------------
  1566. $table_desc = tripal_core_get_chado_table_schema($table);
  1567. if (!$table_desc or count($table_desc) == 0) {
  1568. watchdog('tripal_core', "tripal_core_generate_chado_var: The table '%table' has not been defined. ".
  1569. "and cannot be expanded. If this is a custom table, please add it using the Tripal ".
  1570. "custom table interface.", array('%table' => $table), WATCHDOG_ERROR);
  1571. if ($return_array) {
  1572. return array();
  1573. }
  1574. return FALSE;
  1575. }
  1576. $table_primary_key = $table_desc['primary key'][0];
  1577. $table_columns = array_keys($table_desc['fields']);
  1578. // Expandable fields without value needed for criteria--------------------------------------------
  1579. $all->expandable_fields = array();
  1580. if ($table_desc['referring_tables']) {
  1581. $all->expandable_tables = $table_desc['referring_tables'];
  1582. }
  1583. else {
  1584. $all->expandable_tables = array();
  1585. }
  1586. $all->expandable_nodes = array();
  1587. // Get fields to be removed by name.................................
  1588. $fields_to_remove = module_invoke_all('exclude_field_from_' . $table . '_by_default');
  1589. foreach ($fields_to_remove as $field_name => $criteria) {
  1590. //replace &gt;field_name&lt; with the current field name &
  1591. $criteria = preg_replace('/&gt;field_name&lt; /', addslashes($field_name), $criteria);
  1592. // if field_value needed we can't deal with this field yet
  1593. if (preg_match('/&gt;field_value&lt; /', $criteria)) {
  1594. break;
  1595. }
  1596. //if criteria then remove from query
  1597. // @coder-ignore: only module designers can populate $criteria -not security risk
  1598. $success = drupal_eval('<?php return ' . $criteria . '; ?>');
  1599. // watchdog('tripal_core',
  1600. // 'Evaluating criteria (%criteria) for field %field in tripal_core_generate_chado_var for %table evaluated to %success',
  1601. // array('%table' => $table, '%criteria'=>$criteria, '%field' => $field_name, '%success'=>$success),
  1602. // WATCHDOG_NOTICE
  1603. // );
  1604. if ($success) {
  1605. unset($table_columns[array_search($field_name, $table_columns)]);
  1606. unset($fields_to_remove[$field_name]);
  1607. $all->expandable_fields[] = $table . '.' . $field_name;
  1608. }
  1609. }
  1610. //Get fields to be removed by type................................
  1611. $types_to_remove = module_invoke_all('exclude_type_by_default');
  1612. $field_types = array();
  1613. foreach ($table_desc['fields'] as $field_name => $field_array) {
  1614. $field_types[$field_array['type']][] = $field_name;
  1615. }
  1616. foreach ($types_to_remove as $field_type => $criteria) {
  1617. // if there are fields of that type to remove
  1618. if (is_array($field_types[$field_type])) {
  1619. //replace &gt;field_name&lt; with the current field name &
  1620. $criteria = preg_replace('/&gt;field_name&lt; /', addslashes($field_name), $criteria);
  1621. foreach ($field_types[$field_type] as $field_name) {
  1622. // if field_value needed we can't deal with this field yet
  1623. if (preg_match('/&gt;field_value&lt; /', $criteria)) {
  1624. $fields_to_remove[$field_name] = $criteria;
  1625. continue;
  1626. }
  1627. // if field_value needed we can't deal with this field yet
  1628. if (preg_match('/&gt;field_value&lt; /', $criteria)) {
  1629. break;
  1630. }
  1631. //if criteria then remove from query
  1632. // @coder-ignore: only module designers can populate $criteria -not security risk
  1633. $success = drupal_eval('<?php return ' . $criteria . '; ?>');
  1634. // watchdog('tripal_core',
  1635. // 'Evaluating criteria (%criteria) for field %field of $type in tripal_core_generate_chado_var for %table evaluated to %success',
  1636. // array('%table'=>$table, '%criteria'=>$criteria, '%field'=>$field_name, '%type'=>$field_type, '%success'=>$success),
  1637. // WATCHDOG_NOTICE
  1638. // );
  1639. if ($success) {
  1640. unset($table_columns[array_search($field_name, $table_columns)]);
  1641. $all->expandable_fields[] = $table . '.' . $field_name;
  1642. }
  1643. } //end of foreach field of that type
  1644. }
  1645. } //end of foreach type to be removed
  1646. // get the values for the record in the current table---------------------------------------------
  1647. $results = tripal_core_chado_select($table, $table_columns, $values, $base_options);
  1648. if ($results) {
  1649. foreach ($results as $key => $object) {
  1650. // Add empty expandable_x arrays
  1651. $object->expandable_fields = $all->expandable_fields;
  1652. $object->expandable_tables = $all->expandable_tables;
  1653. $object->expandable_nodes = $all->expandable_nodes;
  1654. // add curent table
  1655. $object->tablename = $table;
  1656. // check if the current table maps to a node type-----------------------------------------------
  1657. // if this table is connected to a node there will be a chado_tablename table in drupal
  1658. if (db_table_exists('chado_' . $table)) {
  1659. // that has a foreign key to this one ($table_desc['primary key'][0]
  1660. // and to the node table (nid)
  1661. $sql = "SELECT %s, nid FROM {chado_%s} WHERE %s=%d";
  1662. $mapping = db_fetch_object(db_query($sql, $table_primary_key, $table,
  1663. $table_primary_key, $object->{$table_primary_key}));
  1664. if ($mapping->{$table_primary_key}) {
  1665. $object->nid = $mapping->nid;
  1666. $object->expandable_nodes[] = $table;
  1667. }
  1668. }
  1669. // remove any fields where criteria need to be evalulated---------------------------------------
  1670. foreach ($fields_to_remove as $field_name => $criteria) {
  1671. if (!isset($object->{$field_name})) {
  1672. break;
  1673. }
  1674. $criteria = preg_replace('/&gt;field_value&lt; /', addslashes($object->{$field_name}), $criteria);
  1675. //if criteria then remove from query
  1676. // @coder-ignore: only module designers can populate $criteria -not security risk
  1677. $success = drupal_eval('<?php return ' . $criteria . '; ?>');
  1678. // watchdog('tripal_core',
  1679. // 'Evaluating criteria (%criteria) for field %field in tripal_core_generate_chado_var for %table evaluated to %success',
  1680. // array('%table' => $table, '%criteria'=>$criteria, '%field' => $field_name, '%success'=>$success),
  1681. // WATCHDOG_NOTICE
  1682. // );
  1683. if ($success) {
  1684. unset($object->{$field_name});
  1685. $object->expandable_fields[] = $table . '.' . $field_name;
  1686. }
  1687. }
  1688. // recursively follow foreign key relationships nesting objects as we go------------------------
  1689. if ($table_desc['foreign keys']) {
  1690. foreach ($table_desc['foreign keys'] as $foreign_key_array) {
  1691. $foreign_table = $foreign_key_array['table'];
  1692. foreach ($foreign_key_array['columns'] as $foreign_key => $primary_key) {
  1693. // Note: Foreign key is the field in the current table whereas primary_key is the field in
  1694. // the table referenced by the foreign key
  1695. //Dont do anything if the foreign key is empty
  1696. if (empty($object->{$foreign_key})) {
  1697. continue;
  1698. }
  1699. if ($include_fk) {
  1700. // don't recurse if the callee has supplied an $fk_include list and this
  1701. // FK table is not in the list.
  1702. if (is_array($include_fk) and !array_key_exists($foreign_key, $include_fk)) {
  1703. continue;
  1704. }
  1705. // if we have the option but it is not an array then we don't recurse any furutehr
  1706. if (!is_array($include_fk)) {
  1707. continue;
  1708. }
  1709. }
  1710. // get the record from the foreign table
  1711. $foreign_values = array($primary_key => $object->{$foreign_key});
  1712. $options = array();
  1713. if (is_array($include_fk)) {
  1714. $options['include_fk'] = $include_fk[$foreign_key];
  1715. }
  1716. $foreign_object = tripal_core_generate_chado_var($foreign_table, $foreign_values, $options);
  1717. // add the foreign record to the current object in a nested manner
  1718. $object->{$foreign_key} = $foreign_object;
  1719. // Flatten expandable_x arrays so only in the bottom object
  1720. if (is_array($object->{$foreign_key}->expandable_fields)) {
  1721. $object->expandable_fields = array_merge(
  1722. $object->expandable_fields,
  1723. $object->{$foreign_key}->expandable_fields
  1724. );
  1725. unset($object->{$foreign_key}->expandable_fields);
  1726. }
  1727. if (is_array($object->{$foreign_key}->expandable_tables)) {
  1728. $object->expandable_tables = array_merge(
  1729. $object->expandable_tables,
  1730. $object->{$foreign_key}->expandable_tables
  1731. );
  1732. unset($object->{$foreign_key}->expandable_tables);
  1733. }
  1734. if (is_array($object->{$foreign_key}->expandable_nodes)) {
  1735. $object->expandable_nodes = array_merge(
  1736. $object->expandable_nodes,
  1737. $object->{$foreign_key}->expandable_nodes
  1738. );
  1739. unset($object->{$foreign_key}->expandable_nodes);
  1740. }
  1741. }
  1742. }
  1743. $results[$key] = $object;
  1744. }
  1745. }
  1746. }
  1747. // check only one result returned
  1748. if (!$return_array) {
  1749. if (sizeof($results) == 1) {
  1750. // add results to object
  1751. return $results[0];
  1752. }
  1753. elseif (!empty($results)) {
  1754. return $results;
  1755. }
  1756. else {
  1757. // no results returned
  1758. }
  1759. }
  1760. // the caller has requested results are always returned as
  1761. // an array
  1762. else {
  1763. if (!$results) {
  1764. return array();
  1765. }
  1766. else {
  1767. return $results;
  1768. }
  1769. }
  1770. }
  1771. /**
  1772. * Retrieves fields/tables/nodes that were excluded by default from a variable and adds them
  1773. *
  1774. * This function exists to allow tripal_core_generate_chado_var() to excldue some
  1775. * fields/tables/nodes from the default form of a variable without making it extremely difficult for
  1776. * the tripal admin to get at these variables if he/she wants them.
  1777. *
  1778. * @param $object
  1779. * This must be an object generated using tripal_core_generate_chado_var()
  1780. * @param $type
  1781. * Must be one of 'field', 'table', 'node'. Indicates what is being expanded.
  1782. * @param $to_expand
  1783. * The name of the field/table/node to be expanded
  1784. * @param $table_options
  1785. * An array containing options for the base table. For example, an
  1786. * option of 'order_by' may be used to sort results in the base table
  1787. * if more than one are returned. The options must be compatible with
  1788. * the options accepted by the tripal_core_chado_select() function.
  1789. * Additionally, The option 'return_array' can be provided to force
  1790. * the function to expand tables as an array. Default behavior is to expand
  1791. * a table as single record if only one record exists or to expand as an array if
  1792. * multiple records exist.
  1793. * @return
  1794. * A chado object supplemented with the field/table/node requested to be expanded.
  1795. * If the type is a table and it has already been expanded no changes is made to the
  1796. * returned object
  1797. *
  1798. * Example Usage:
  1799. * @code
  1800. // Get a chado object to be expanded
  1801. $values = array(
  1802. 'name' => 'Medtr4g030710'
  1803. );
  1804. $features = tripal_core_generate_chado_var('feature', $values);
  1805. // Expand the organism node
  1806. $feature = tripal_core_expand_chado_vars($feature, 'node', 'organism');
  1807. // Expand the feature.residues field
  1808. $feature = tripal_core_expand_chado_vars($feature, 'field', 'feature.residues');
  1809. // Expand the feature properties (featureprop table)
  1810. $feature = tripal_core_expand_chado_vars($feature, 'table', 'featureprop');
  1811. * @endcode
  1812. *
  1813. * @ingroup tripal_chado_api
  1814. */
  1815. function tripal_core_expand_chado_vars($object, $type, $to_expand, $table_options = array()) {
  1816. $base_table = $object->tablename;
  1817. // check to see if we are expanding an array of objects
  1818. if (is_array($object)) {
  1819. foreach ($object as $index => $o) {
  1820. $object[$index] = tripal_core_expand_chado_vars($o, $type, $to_expand);
  1821. }
  1822. return $object;
  1823. }
  1824. switch ($type) {
  1825. case "field": //--------------------------------------------------------------------------------
  1826. if (preg_match('/(\w+)\.(\w+)/', $to_expand, $matches)) {
  1827. $tablename = $matches[1];
  1828. $fieldname = $matches[2];
  1829. $table_desc = tripal_core_get_chado_table_schema($tablename);
  1830. $values = array();
  1831. foreach ($table_desc['primary key'] as $key) {
  1832. $values[$key] = $object->{$key};
  1833. }
  1834. if ($base_table == $tablename) {
  1835. //get the field
  1836. $results = tripal_core_chado_select($tablename, array($fieldname), $values);
  1837. $object->{$fieldname} = $results[0]->{$fieldname};
  1838. $object->expanded = $to_expand;
  1839. }
  1840. else {
  1841. //We need to recurse -the field is in a nested object
  1842. foreach ((array) $object as $field_name => $field_value) {
  1843. if (is_object($field_value)) {
  1844. $object->{$field_name} = tripal_core_expand_chado_vars(
  1845. $field_value,
  1846. 'field',
  1847. $to_expand
  1848. );
  1849. }
  1850. } //end of for each field in the current object
  1851. }
  1852. }
  1853. else {
  1854. watchdog('tripal_core', 'tripal_core_expand_chado_vars: Field (%field) not in the right format. ".
  1855. "It should be <tablename>.<fieldname>', WATCHDOG_ERROR);
  1856. }
  1857. break;
  1858. case "table": //--------------------------------------------------------------------------------
  1859. $foreign_table = $to_expand;
  1860. // don't expand the table it already is expanded
  1861. if (array_key_exists($foreign_table, $object)) {
  1862. return $object;
  1863. }
  1864. $foreign_table_desc = tripal_core_get_chado_table_schema($foreign_table);
  1865. // If it's connected to the base table
  1866. if ($foreign_table_desc['foreign keys'][$base_table]) {
  1867. foreach ($foreign_table_desc['foreign keys'][$base_table]['columns'] as $left => $right) {
  1868. if (!$object->{$right}) {
  1869. continue;
  1870. }
  1871. if (is_array($values)) {
  1872. $values = array_merge($values, array($left => $object->{$right}) );
  1873. }
  1874. else {
  1875. $values = array($left => $object->{$right});
  1876. }
  1877. // if a prepared statement is provide then generate a new name
  1878. $new_options = $table_options;
  1879. if (array_key_exists('statement_name', $table_options)) {
  1880. $new_options['statement_name'] = "exp_" . $foreign_table . "_" . substr($left, 0, 2) . substr($right, 0, 2);
  1881. }
  1882. $foreign_object = tripal_core_generate_chado_var($foreign_table, array($left => $object->{$right}), $new_options);
  1883. if ($foreign_object) {
  1884. // in the case where the foreign key relationships exists more
  1885. // than once with the same table we want to alter the
  1886. // array structure
  1887. if (count($foreign_table_desc['foreign keys'][$base_table]['columns']) > 1) {
  1888. if (!is_object($object->{$foreign_table})) {
  1889. $object->{$foreign_table} = new stdClass();
  1890. }
  1891. $object->{$foreign_table}->{$left} = $foreign_object;
  1892. $object->expanded = $to_expand;
  1893. }
  1894. else {
  1895. $object->{$foreign_table} = $foreign_object;
  1896. $object->expanded = $to_expand;
  1897. }
  1898. }
  1899. // if the object returned is NULL then handle that
  1900. else {
  1901. if (count($foreign_table_desc['foreign keys'][$base_table]['columns']) > 1) {
  1902. $object->{$foreign_table}->{$left} = NULL;
  1903. }
  1904. else {
  1905. $object->{$foreign_table} = NULL;
  1906. }
  1907. }
  1908. }
  1909. }
  1910. else {
  1911. // We need to recurse -the table has a relationship to one of the nested objects
  1912. $did_expansion = 0;
  1913. foreach ((array) $object as $field_name => $field_value) {
  1914. // if we have a nested object ->expand the table in it
  1915. if (is_object($field_value)) {
  1916. $did_expansion = 1;
  1917. $object->{$field_name} = tripal_core_expand_chado_vars($field_value, 'table', $foreign_table);
  1918. }
  1919. }
  1920. // if we did not expand this table we should return a message that the foreign table
  1921. // could not be expanded
  1922. if (!$did_expansion) {
  1923. watchdog('tripal_core', 'tripal_core_expand_chado_vars: Could not expand table, %table. It is ',
  1924. 'not in a foreign key relationship with the base object nor with any other expanded table. ' .
  1925. 'Check the table definition to ensure that a proper foreign key relationship is present.',
  1926. array('%table' => $foreign_table), WATCHDOG_ERROR);
  1927. }
  1928. }
  1929. break;
  1930. case "node": //---------------------------------------------------------------------------------
  1931. //if the node to be expanded is for our base table, then just expand it
  1932. if ($object->tablename == $to_expand) {
  1933. $node = node_load($object->nid);
  1934. if ($node) {
  1935. $object->expanded = $to_expand;
  1936. $node->expandable_fields = $object->expandable_fields;
  1937. unset($object->expandable_fields);
  1938. $node->expandable_tables = $object->expandable_tables;
  1939. unset($object->expandable_tables);
  1940. $node->expandable_nodes = $object->expandable_nodes;
  1941. unset($object->expandable_nodes);
  1942. $node->{$base_table} = $object;
  1943. $object = $node;
  1944. }
  1945. else {
  1946. watchdog('tripal_core', 'tripal_core_expand_chado_vars: No node matches the nid (%nid) supplied.',
  1947. array('%nid' => $object->nid), WATCHDOG_ERROR);
  1948. } //end of if node
  1949. }
  1950. else {
  1951. //We need to recurse -the node to expand is one of the nested objects
  1952. foreach ((array) $object as $field_name => $field_value) {
  1953. if (is_object($field_value)) {
  1954. $object->{$field_name} = tripal_core_expand_chado_vars(
  1955. $field_value,
  1956. 'node',
  1957. $to_expand
  1958. );
  1959. }
  1960. } //end of for each field in the current object
  1961. }
  1962. break;
  1963. default:
  1964. watchdog('tripal_core', 'tripal_core_expand_chado_vars: Unrecognized type (%type). Should be one of "field", "table", "node".',
  1965. array('%type' => $type), WATCHDOG_ERROR);
  1966. return FALSE;
  1967. }
  1968. //move extended array downwards-------------------------------------------------------------------
  1969. if (!$object->expanded) {
  1970. //if there's no extended field then go hunting for it
  1971. foreach ( (array)$object as $field_name => $field_value) {
  1972. if (is_object($field_value)) {
  1973. if (isset($field_value->expanded)) {
  1974. $object->expanded = $field_value->expanded;
  1975. unset($field_value->expanded);
  1976. }
  1977. }
  1978. }
  1979. }
  1980. //try again becasue now we might have moved it down
  1981. if ($object->expanded) {
  1982. $expandable_name = 'expandable_' . $type . 's';
  1983. if ($object->{$expandable_name}) {
  1984. $key_to_remove = array_search($object->expanded, $object->{$expandable_name});
  1985. unset($object->{$expandable_name}[$key_to_remove]);
  1986. unset($object->expanded);
  1987. }
  1988. else {
  1989. // if there is an expandable array then we've reached the base object
  1990. // if we get here and don't have anything expanded then something went wrong
  1991. // watchdog(
  1992. // 'tripal_core',
  1993. // 'tripal_core_expand_chado_vars: Unable to expand the %type %to_expand',
  1994. // array('%type'=>$type, '%to_expand'=>$to_expand),
  1995. // WATCHDOG_ERROR
  1996. // );
  1997. } //end of it we've reached the base object
  1998. }
  1999. return $object;
  2000. }
  2001. /**
  2002. * Implements hook_exclude_type_by_default()
  2003. *
  2004. * This hooks allows fields of a specified type that match a specified criteria to be excluded by
  2005. * default from any table when tripal_core_generate_chado_var() is called. Keep in mind that if
  2006. * fields are excluded by default they can always be expanded at a later date using
  2007. * tripal_core_expand_chado_vars().
  2008. *
  2009. * Criteria are php strings that evaluate to either TRUE or FALSE. These strings are evaluated using
  2010. * drupal_eval() which suppresses syntax errors and throws watchdog entries of type php. There are
  2011. * also watchdog entries of type tripal_core stating the exact criteria evaluated. Criteria can
  2012. * contain the following tokens:
  2013. * - &gt;field_name&lt;
  2014. * Replaced by the name of the field to be excluded
  2015. * - &gt;field_value&lt;
  2016. * Replaced by the value of the field in the current record
  2017. * Also keep in mind that if your criteria doesn't contain the &gt;field_value&lt; token then it will be
  2018. * evaluated before the query is executed and if the field is excluded it won't be included in the
  2019. * query.
  2020. *
  2021. * @return
  2022. * An array of type => criteria where the type is excluded if the criteria evaluates to TRUE
  2023. *
  2024. * @ingroup tripal_chado_api
  2025. */
  2026. function tripal_core_exclude_type_by_default() {
  2027. return array('text' => 'strlen("&gt;field_value&lt; ") > 100');
  2028. }
  2029. /**
  2030. * Implements hook_exclude_field_from_<tablename>_by_default()
  2031. *
  2032. * This hooks allows fields from a specified table that match a specified criteria to be excluded by
  2033. * default from any table when tripal_core_generate_chado_var() is called. Keep in mind that if
  2034. * fields are excluded by default they can always be expanded at a later date using
  2035. * tripal_core_expand_chado_vars().
  2036. *
  2037. * Criteria are php strings that evaluate to either TRUE or FALSE. These strings are evaluated using
  2038. * drupal_eval() which suppresses syntax errors and throws watchdog entries of type php. There are
  2039. * also watchdog entries of type tripal_core stating the exact criteria evaluated. Criteria can
  2040. * contain the following tokens:
  2041. * - &gt;field_name&lt;
  2042. * Replaced by the name of the field to be excluded
  2043. * - &gt;field_value&lt;
  2044. * Replaced by the value of the field in the current record
  2045. * Also keep in mind that if your criteria doesn't contain the &gt;field_value&lt; token then it will be
  2046. * evaluated before the query is executed and if the field is excluded it won't be included in the
  2047. * query.
  2048. *
  2049. * @return
  2050. * An array of type => criteria where the type is excluded if the criteria evaluates to TRUE
  2051. *
  2052. * @ingroup tripal_chado_api
  2053. */
  2054. function tripal_core_exclude_field_from_feature_by_default() {
  2055. return array();
  2056. }
  2057. /**
  2058. * Use this function instead of db_query() to avoid switching databases
  2059. * when making query to the chado database
  2060. *
  2061. * Will use a chado persistent connection if it already exists
  2062. *
  2063. * @param $sql
  2064. * The sql statement to execute
  2065. *
  2066. * @returns
  2067. * A database query result resource or FALSE if the query was not
  2068. * executed correctly
  2069. */
  2070. function chado_query($sql) {
  2071. $args = func_get_args();
  2072. array_shift($args); // remove the $sql from the argument list
  2073. $sql = db_prefix_tables($sql);
  2074. if (isset($args[0]) and is_array($args[0])) { // 'All arguments in one array' syntax
  2075. $args = $args[0];
  2076. }
  2077. _db_query_callback($args, TRUE);
  2078. $sql = preg_replace_callback(DB_QUERY_REGEXP, '_db_query_callback', $sql);
  2079. // Execute the query on the chado database/schema
  2080. // Use the persistent chado connection if it already exists
  2081. $persistent_connection = variable_get('tripal_persistent_chado', NULL);
  2082. if ($persistent_connection) {
  2083. $query = $sql;
  2084. // Duplicate the _db_query code in order to ensure that the drupal
  2085. // $active_db variable is never touched
  2086. // thus changed $active_db to $persistent_connection
  2087. // START COPY FROM _db_query in database.pgsql.inc
  2088. if (variable_get('dev_query', 0)) {
  2089. list($usec, $sec) = explode(' ', microtime());
  2090. $timer = (float) $usec + (float) $sec;
  2091. }
  2092. $previous_db = tripal_db_set_active('chado');
  2093. $last_result = pg_query($persistent_connection, $query);
  2094. tripal_db_set_active($previous_db);
  2095. if (variable_get('dev_query', 0)) {
  2096. $bt = debug_backtrace();
  2097. $query = $bt[2]['function'] . "\n" . $query;
  2098. list($usec, $sec) = explode(' ', microtime());
  2099. $stop = (float) $usec + (float) $sec;
  2100. $diff = $stop - $timer;
  2101. $queries[] = array($query, $diff);
  2102. }
  2103. if ($last_result !== FALSE) {
  2104. return $last_result;
  2105. }
  2106. else {
  2107. // Indicate to drupal_error_handler that this is a database error.
  2108. ${DB_ERROR} = TRUE;
  2109. trigger_error(check_plain(pg_last_error($persistent_connection) . "\nquery: " . $query), E_USER_WARNING);
  2110. return FALSE;
  2111. }
  2112. // END COPY FROM _db_query in database.pgsql.inc
  2113. }
  2114. else {
  2115. $previous_db = tripal_db_set_active('chado');
  2116. $results = _db_query($sql);
  2117. tripal_db_set_active($previous_db);
  2118. }
  2119. return $results;
  2120. }
  2121. /**
  2122. * Get chado id for a node. E.g, if you want to get 'analysis_id' from the
  2123. * 'analysis' table for a synced 'chado_analysis' node, use:
  2124. * $analysis_id = chado_get_id_for_node ('analysis', $node)
  2125. * Likewise,
  2126. * $organism_id = chado_get_id_for_node ('organism', $node)
  2127. * $feature_id = chado_get_id_for_node ('feature', $node)
  2128. */
  2129. function chado_get_id_for_node($table, $node) {
  2130. return db_result(db_query("SELECT %s_id FROM {chado_%s} WHERE nid = %d", $table, $table, $node->nid));
  2131. }
  2132. /**
  2133. * Get node id for a chado feature/organism/analysis. E.g, if you want to
  2134. * get the node id for an analysis, use:
  2135. * $nid = chado_get_node_id ('analysis', $analysis_id)
  2136. * Likewise,
  2137. * $nid = chado_get_node_id ('organism', $organism_id)
  2138. * $nid = chado_get_node_id ('feature', $feature_id)
  2139. */
  2140. function chado_get_node_id($table, $id) {
  2141. return db_result(db_query("SELECT nid FROM {chado_%s} WHERE %s_id = %d", $table, $table, $id));
  2142. }
  2143. /**
  2144. * Retrieve a property for a given base table record
  2145. *
  2146. * @param $basetable
  2147. * The base table for which the property should be retrieved. Thus to retrieve a property
  2148. * for a feature the basetable=feature and property is retrieved from featureprop
  2149. * @param $record_id
  2150. * The foriegn key field of the base table. This should be in integer.
  2151. * @param $property
  2152. * The cvterm name describing the type of properties to be retrieved
  2153. * @param $cv_name
  2154. * The name of the cv that the above cvterm is part of
  2155. *
  2156. * @return
  2157. * An array in the same format as that generated by the function
  2158. * tripal_core_generate_chado_var(). If only one record is returned it
  2159. * is a single object. If more than one record is returned then it is an array
  2160. * of objects
  2161. *
  2162. * @ingroup tripal_chado_api
  2163. */
  2164. function tripal_core_get_property($basetable, $record_id, $property, $cv_name) {
  2165. // get the foreign key for this property table
  2166. $table_desc = tripal_core_get_chado_table_schema($basetable . 'prop');
  2167. $fkcol = key($table_desc['foreign keys'][$basetable]['columns']);
  2168. // construct the array of values to be selected
  2169. $values = array(
  2170. $fkcol => $record_id,
  2171. 'type_id' => array(
  2172. 'cv_id' => array(
  2173. 'name' => $cv_name,
  2174. ),
  2175. 'name' => $property,
  2176. 'is_obsolete' => 0
  2177. ),
  2178. );
  2179. $results = tripal_core_generate_chado_var($basetable . 'prop', $values);
  2180. $results = tripal_core_expand_chado_vars($results, 'field', $basetable . 'prop.value');
  2181. return $results;
  2182. }
  2183. /**
  2184. * Insert a property for a given base table. By default if the property already
  2185. * exists a new property is added with the next available rank. If
  2186. * $update_if_present argument is specified then the record will be updated if it
  2187. * exists rather than adding a new property.
  2188. *
  2189. * @param $basetable
  2190. * The base table for which the property should be inserted. Thus to insert a property
  2191. * for a feature the basetable=feature and property is inserted into featureprop
  2192. * @param $record_id
  2193. * The foriegn key field of the base table. This should be in integer.
  2194. * @param $property
  2195. * The cvterm name describing the type of properties to be inserted
  2196. * @param $cv_name
  2197. * The name of the cv that the above cvterm is part of
  2198. * @param $value
  2199. * The value of the property to be inserted (can be empty)
  2200. * @param $update_if_present
  2201. * A boolean indicating whether an existing record should be updated. If the
  2202. * property already exists and this value is not specified or is zero then
  2203. * a new property will be added with the next largest rank.
  2204. *
  2205. * @return
  2206. * Return True on Insert/Update and False otherwise
  2207. *
  2208. * @ingroup tripal_chado_api
  2209. */
  2210. function tripal_core_insert_property($basetable, $record_id, $property,
  2211. $cv_name, $value, $update_if_present = 0) {
  2212. // first see if the property already exists, if the user want's to update
  2213. // then we can do that, but otherwise we want to increment the rank and
  2214. // insert
  2215. $props = tripal_core_get_property($basetable, $record_id, $property, $cv_name);
  2216. if (!is_array($props)) {
  2217. $props = array($props);
  2218. }
  2219. $rank = 0;
  2220. if (count($props) > 0) {
  2221. if ($update_if_present) {
  2222. return tripal_core_update_property($basetable, $record_id, $property, $cv_name, $value);
  2223. }
  2224. else {
  2225. // iterate through the properties returned and check to see if the
  2226. // property with this value already exists if not, get the largest rank
  2227. // and insert the same property but with this new value
  2228. foreach ($props as $p) {
  2229. if ($p->rank > $rank) {
  2230. $rank = $p->rank;
  2231. }
  2232. if (strcmp($p->value, $value) == 0) {
  2233. return TRUE;
  2234. }
  2235. }
  2236. // now add 1 to the rank
  2237. $rank++;
  2238. }
  2239. }
  2240. else {
  2241. watchdog('tripal_core', "Cannot find property '!prop_name'.",
  2242. array('!prop_name' => $property), WATCHDOG_ERROR);
  2243. }
  2244. // get the foreign key for this property table
  2245. $table_desc = tripal_core_get_chado_table_schema($basetable . 'prop');
  2246. $fkcol = key($table_desc['foreign keys'][$basetable]['columns']);
  2247. // construct the array of values to be inserted
  2248. $values = array(
  2249. $fkcol => $record_id,
  2250. 'type_id' => array(
  2251. 'cv_id' => array(
  2252. 'name' => $cv_name,
  2253. ),
  2254. 'name' => $property,
  2255. 'is_obsolete' => 0
  2256. ),
  2257. 'value' => $value,
  2258. 'rank' => $rank,
  2259. );
  2260. return tripal_core_chado_insert($basetable . 'prop', $values);
  2261. }
  2262. /**
  2263. * Update a property for a given base table record and property name. This
  2264. * function should be used only if one record of the property will be present.
  2265. * If the property name can have multiple entries (with increasing rank) then
  2266. * use the function named tripal_core_update_property_by_id
  2267. *
  2268. * @param $basetable
  2269. * The base table for which the property should be updated. The property table
  2270. * is constructed using a combination of the base table name and the suffix
  2271. * 'prop' (e.g. basetable = feature then property tabie is featureprop).
  2272. * @param $record_id
  2273. * The foreign key of the basetable to update a property for. This should be in integer.
  2274. * For example, if the basetable is 'feature' then the $record_id should be the feature_id
  2275. * @param $property
  2276. * The cvterm name of property to be updated
  2277. * @param $cv_name
  2278. * The name of the cv that the above cvterm is part of
  2279. * @param $value
  2280. * The value of the property to be inserted (can be empty)
  2281. * @param $insert_if_missing
  2282. * A boolean indicating whether a record should be inserted if one doesn't exist to update
  2283. *
  2284. * Note: The property to be updated is select via the unique combination of $record_id and
  2285. * $property and then it is updated with the supplied value
  2286. *
  2287. * @return
  2288. * Return True on Update/Insert and False otherwise
  2289. *
  2290. * @ingroup tripal_chado_api
  2291. */
  2292. function tripal_core_update_property($basetable, $record_id, $property,
  2293. $cv_name, $value, $insert_if_missing = 0) {
  2294. // first see if the property is missing (we can't update a missing property
  2295. $prop = tripal_core_get_property($basetable, $record_id, $property, $cv_name);
  2296. if (count($prop)==0) {
  2297. if ($insert_if_missing) {
  2298. return tripal_core_insert_property($basetable, $record_id, $property, $cv_name, $value);
  2299. }
  2300. else {
  2301. return FALSE;
  2302. }
  2303. }
  2304. // get the foreign key for this property table
  2305. $table_desc = tripal_core_get_chado_table_schema($basetable . 'prop');
  2306. $fkcol = key($table_desc['foreign keys'][$basetable]['columns']);
  2307. // construct the array that will match the exact record to update
  2308. $match = array(
  2309. $fkcol => $record_id,
  2310. 'type_id' => array(
  2311. 'cv_id' => array(
  2312. 'name' => $cv_name,
  2313. ),
  2314. 'name' => $property,
  2315. ),
  2316. );
  2317. // construct the array of values to be updated
  2318. $values = array(
  2319. 'value' => $value,
  2320. );
  2321. return tripal_core_chado_update($basetable . 'prop', $match, $values);
  2322. }
  2323. /**
  2324. * Update a property for a given base table record. This function should be
  2325. * used if multiple records of the same property will be present. Also, use this
  2326. * function to change the property name of an existing property.
  2327. *
  2328. * @param $basetable
  2329. * The base table for which the property should be updated. The property table
  2330. * is constructed using a combination of the base table name and the suffix
  2331. * 'prop' (e.g. basetable = feature then property tabie is featureprop).
  2332. * @param $record_id
  2333. * The primary key of the base table. This should be in integer.
  2334. * For example, if the basetable is 'feature' then the $record_id should be the featureprop_id
  2335. * @param $property
  2336. * The cvterm name of property to be updated
  2337. * @param $cv_name
  2338. * The name of the cv that the above cvterm is part of
  2339. * @param $value
  2340. * The value of the property to be inserted (can be empty)
  2341. *
  2342. * @return
  2343. * Return True on Update/Insert and False otherwise
  2344. *
  2345. * @ingroup tripal_chado_api
  2346. */
  2347. function tripal_core_update_property_by_id($basetable, $record_id, $property,
  2348. $cv_name, $value) {
  2349. // get the primary key for this property table
  2350. $table_desc = tripal_core_get_chado_table_schema($basetable . 'prop');
  2351. $pkcol = $table_desc['primary key'][0];
  2352. // construct the array that will match the exact record to update
  2353. $match = array(
  2354. $pkcol => $record_id,
  2355. );
  2356. // construct the array of values to be updated
  2357. $values = array(
  2358. 'type_id' => array(
  2359. 'cv_id' => array(
  2360. 'name' => $cv_name,
  2361. ),
  2362. 'name' => $property,
  2363. ),
  2364. 'value' => $value,
  2365. );
  2366. return tripal_core_chado_update($basetable . 'prop', $match, $values);
  2367. }
  2368. /**
  2369. * Deletes a property for a given base table record using the property name
  2370. *
  2371. * @param $basetable
  2372. * The base table for which the property should be deleted. Thus to deleted a property
  2373. * for a feature the basetable=feature and property is deleted from featureprop
  2374. * @param $record_id
  2375. * The primary key of the basetable to delete a property for. This should be in integer.
  2376. * @param $property
  2377. * The cvterm name describing the type of property to be deleted
  2378. * @param $cv_name
  2379. * The name of the cv that the above cvterm is part of
  2380. *
  2381. * Note: The property to be deleted is select via the unique combination of $record_id and $property
  2382. *
  2383. * @return
  2384. * Return True on Delete and False otherwise
  2385. *
  2386. * @ingroup tripal_chado_api
  2387. */
  2388. function tripal_core_delete_property($basetable, $record_id, $property, $cv_name) {
  2389. // get the foreign key for this property table
  2390. $table_desc = tripal_core_get_chado_table_schema($basetable . 'prop');
  2391. $fkcol = key($table_desc['foreign keys'][$basetable]['columns']);
  2392. // construct the array that will match the exact record to update
  2393. $match = array(
  2394. $fkcol => $record_id,
  2395. 'type_id' => array(
  2396. 'cv_id' => array(
  2397. 'name' => $cv_name,
  2398. ),
  2399. 'name' => $property,
  2400. ),
  2401. );
  2402. return tripal_core_chado_delete($basetable . 'prop', $match);
  2403. }
  2404. /**
  2405. * Deletes a property using the property ID
  2406. *
  2407. * @param $basetable
  2408. * The base table for which the property should be deleted. Thus to deleted a property
  2409. * for a feature the basetable=feature and property is deleted from featureprop
  2410. * @param $record_id
  2411. * The primary key of the basetable to delete a property for. This should be in integer.
  2412. *
  2413. * @return
  2414. * Return True on Delete and False otherwise
  2415. *
  2416. * @ingroup tripal_chado_api
  2417. */
  2418. function tripal_core_delete_property_by_id($basetable, $record_id) {
  2419. // get the foreign key for this property table
  2420. $table_desc = tripal_core_get_chado_table_schema($basetable . 'prop');
  2421. $pkcol = $table_desc['primary key'][0];
  2422. // construct the array that will match the exact record to update
  2423. $match = array(
  2424. $pkcol => $record_id,
  2425. );
  2426. return tripal_core_chado_delete($basetable . 'prop', $match);
  2427. }
  2428. /**
  2429. * This function is typically used in the '.install' file for a Tripal module
  2430. * Each module should call this function during installation to create
  2431. * the module data directory which is sites/default/files/tripal/[module_name]
  2432. * for default Drupal settings. This directory can then be used by the module
  2433. * for storing files.
  2434. *
  2435. * @param $module_name
  2436. * the name of the module being installed.
  2437. *
  2438. * @returns
  2439. * nothing
  2440. *
  2441. * @ingroup tripal_files_api
  2442. */
  2443. function tripal_create_moddir($module_name) {
  2444. // make the data directory for this module
  2445. $data_dir = file_directory_path() . "/tripal/$module_name";
  2446. if (!file_check_directory($data_dir, FILE_CREATE_DIRECTORY | FILE_MODIFY_PERMISSIONS)) {
  2447. $message = "Cannot create directory $data_dir. This module may not ".
  2448. "behave correctly without this directory. Please create ".
  2449. "the directory manually or fix the problem and reinstall.";
  2450. drupal_set_message(check_plain(t($message)), 'error');
  2451. watchdog('tripal_core', $message, array(), WATCHDOG_ERROR);
  2452. }
  2453. }
  2454. /**
  2455. * Each Tripal module has a unique data directory which was creatd using the
  2456. * tripal_create_moddir function during installation. This function
  2457. * retrieves the directory path.
  2458. *
  2459. * @param $module_name
  2460. * The name of the module
  2461. *
  2462. * @returns
  2463. * The path within the Drupal installation where the data directory resides
  2464. * @ingroup tripal_files_api
  2465. */
  2466. function tripal_get_moddir($module_name) {
  2467. $data_dir = file_directory_path() . "/tripal/$module_name";
  2468. return $data_dir;
  2469. }
  2470. /**
  2471. * Set the Tripal Database
  2472. *
  2473. * The tripal_db_set_active function is used to prevent namespace collisions
  2474. * when chado and drupal are installed in the same database but in different
  2475. * schemas. It is also used for backwards compatibility with older versions
  2476. * of tripal or in cases where chado is located outside of the Drupal database.
  2477. *
  2478. * @ingroup tripal_chado_api
  2479. */
  2480. function tripal_db_set_active($dbname = 'default') {
  2481. global $db_url, $db_type, $active_db;
  2482. $chado_exists = 0;
  2483. // only postgres can support search paths. So if this is MysQL then
  2484. // just run the normal tripal_db_set_active function.
  2485. if (strcmp($db_type, 'pgsql')==0) {
  2486. // if the 'chado' database is in the $db_url variable then chado is
  2487. // not in the same Drupal database, so we don't need to set any
  2488. // search_path and can just change the database
  2489. if (is_array($db_url)) {
  2490. if (isset($db_url[$dbname])) {
  2491. return db_set_active($dbname);
  2492. }
  2493. }
  2494. // if this is the default database then set the search path and return
  2495. if (strcmp($dbname, 'default')==0) {
  2496. tripal_db_set_default_search_path();
  2497. return db_set_active($dbname);
  2498. }
  2499. // if the user requests a database other than the default
  2500. // then we need to try and set the chado search path. This
  2501. // only works if Chado is local to the Drpual database. If it
  2502. // fails then do nothing.
  2503. else {
  2504. if (tripal_db_set_chado_search_path($dbname)) {
  2505. // if the chado schema is local to Drupal then
  2506. // just return the active database.
  2507. return 'default';
  2508. }
  2509. else {
  2510. watchdog('tripal_core', "Cannot set 'search_path' variable for Postgres to %dbname",
  2511. array('%dbname' => $dbname), WATCHDOG_ERROR);
  2512. }
  2513. }
  2514. }
  2515. // a non postgres database
  2516. else {
  2517. return db_set_active($dbname);
  2518. }
  2519. }
  2520. /**
  2521. * Gets the current search_path for PostgreSQL
  2522. *
  2523. * @ingroup tripal_chado_api
  2524. */
  2525. function tripal_db_get_search_path() {
  2526. $path = db_fetch_object(db_query("show search_path"));
  2527. return $path->search_path;
  2528. }
  2529. /**
  2530. * Set the chado search_path for PostgreSQL
  2531. *
  2532. * Sets the database search_path for postgreSQL to the
  2533. * chado schema.
  2534. *
  2535. * @ingroup tripal_chado_api
  2536. */
  2537. function tripal_db_set_chado_search_path($dbname) {
  2538. // check to make sure the chado schema exists
  2539. $chado_exists = variable_get('chado_schema_exists', FALSE);
  2540. if (!$chado_exists) {
  2541. $chado_exists = tripal_core_chado_schema_exists();
  2542. }
  2543. // here we make the assumption that the default database schema is
  2544. // 'public'. This will most likely always be the case but if not,
  2545. // then this code will break
  2546. if ($chado_exists) {
  2547. db_query('set search_path to %s', "$dbname,public");
  2548. return TRUE;
  2549. }
  2550. else {
  2551. return FALSE;
  2552. }
  2553. }
  2554. /**
  2555. * Set the default search_path for PostgreSQL
  2556. *
  2557. * Sets the database search_path for postgreSQL to the
  2558. * default schema.
  2559. *
  2560. * @ingroup tripal_chado_api
  2561. */
  2562. function tripal_db_set_default_search_path() {
  2563. // we make the assumption that the default schema is 'public'.
  2564. $chado_exists = variable_get('chado_schema_exists', FALSE);
  2565. if ($chado_exists) {
  2566. db_query('set search_path to %s', 'public,chado');
  2567. }
  2568. else {
  2569. db_query('set search_path to %s', 'public');
  2570. }
  2571. }
  2572. /**
  2573. * Indicates if the SQL statement is prepapred
  2574. *
  2575. * @param $statement_name
  2576. * The name of the statement to check if it is prepared.
  2577. *
  2578. * @return
  2579. * TRUE if the statement is preapred, FALSE otherwise
  2580. */
  2581. function tripal_core_is_sql_prepared($statement_name) {
  2582. // to reduce the need for a database query we will check the
  2583. // session variable for this connection to see if the statement
  2584. // has been prepared. If it has then we won't do the database
  2585. // query to find out. If it hasn't then we'll query the database
  2586. // to see if it is prepared.
  2587. $connection = variable_get('tripal_persistent_chado', NULL);
  2588. if (!isset($_SESSION[$connection])) {
  2589. $_SESSION[$connection] = array();
  2590. }
  2591. if (in_array($statement_name, $_SESSION[$connection])) {
  2592. //print "Is Prepared and in Session var: $statement_name\n";
  2593. return TRUE;
  2594. }
  2595. // @coder-ignore: acting on postgres tables rather then drupal schema therefore, table prefixing does not apply
  2596. $sql = "SELECT name FROM pg_prepared_statements WHERE name = '%s'";
  2597. // do not use 'chado_query' here or it causes memory-leaks
  2598. $result = db_fetch_object(db_query($sql, $statement_name));
  2599. if ($result) {
  2600. $_SESSION[$connection][] = $statement_name;
  2601. //print "Is Prepared but in DB: $statement_name\n";
  2602. return TRUE;
  2603. }
  2604. //print "Is Not prepared: $statement_name\n";
  2605. return FALSE;
  2606. }
  2607. /**
  2608. * Prepare a chado query
  2609. *
  2610. * @param $statement_name
  2611. * The name of the prepared statement
  2612. * @param $psql
  2613. * The SQL statement to be executed via chado_query.
  2614. * Should be of the form PREPARE <statement name> AS <SQL Statement to be prepared>
  2615. * @param $args
  2616. * An array of arguements required to execute the prepared statement. The keys of
  2617. * the array should correspond to the $\d in the prepare statement and the value should
  2618. * be the type of value needed (ie: text, int, etc.)
  2619. */
  2620. function tripal_core_chado_prepare($statement_name, $psql, $args) {
  2621. $connection = variable_get('tripal_persistent_chado', NULL);
  2622. if (!$connection) {
  2623. watchdog('tripal_core', "chado_prepare: not able to prepare '%name' statement as no persistent connection is available", array('%name' => $statement_name, '%sql' => $psql), WATCHDOG_ERROR);
  2624. return FALSE;
  2625. }
  2626. // Check to see if this statement was already prepared
  2627. if (tripal_core_is_sql_prepared($statement_name)) {
  2628. // check that the arguments are the same
  2629. $prepared_args = $_SESSION['prepared_args'][$connection][$statement_name];
  2630. $prepared_sql = $_SESSION['prepared_sql'][$connection][$statement_name];
  2631. if ($prepared_args == $args) {
  2632. // This statement is already prepared
  2633. return TRUE;
  2634. }
  2635. else {
  2636. // Although a statement with this name is already prepared it is not the same!
  2637. watchdog('tripal_core', "chado_prepare: '%name' statement already prepared with different arguments! You want to prepare %sql with %values and the existing statement is %esql with %existing",
  2638. array('%name' => $statement_name, '%sql' => $psql, '%values' => print_r($args, TRUE), '%esql' => $prepared_sql,
  2639. '%existing' => print_r($prepared_args, TRUE)), WATCHDOG_ERROR);
  2640. return FALSE;
  2641. }
  2642. }
  2643. $status = chado_query($psql);
  2644. if (!$status) {
  2645. watchdog('tripal_core', "chado_prepare: not able to prepare '%name' statement for: %sql", array('%name' => $statement_name, '%sql' => $psql), WATCHDOG_ERROR);
  2646. return FALSE;
  2647. }
  2648. else {
  2649. //watchdog('tripal_core', "tripal_core_chado_select: prepared '%name' statement as %sql", array('%name' => $statement_name, '%sql' => $psql), WATCHDOG_NOTICE);
  2650. $_SESSION[$connection][] = $statement_name;
  2651. $_SESSION['prepared_args'][$connection][$statement_name] = $args;
  2652. $_SESSION['prepared_sql'][$connection][$statement_name] = $psql;
  2653. return TRUE;
  2654. }
  2655. }
  2656. /**
  2657. * Execute a prepared statement with the supplied values
  2658. *
  2659. * @param $statement_name
  2660. * The name of the prepared statement
  2661. * @param $sql
  2662. * The SQL to execute using chado query.
  2663. * Should be of the form EXECUTE <statement_name> (<arg1>,<arg2>...<argn>)
  2664. * @param $values
  2665. * An array of values in the execute sql statement
  2666. */
  2667. function tripal_core_chado_execute_prepared($statement_name, $sql, $values) {
  2668. $connection = variable_get('tripal_persistent_chado', NULL);
  2669. if (!tripal_core_is_sql_prepared($statement_name)) {
  2670. watchdog('tripal_core', "tripal_core_chado_execute_prepared: Cannot execute an unprepared statement: '%name'", array('%name' => $statement_name), WATCHDOG_ERROR);
  2671. return FALSE;
  2672. }
  2673. // Before Executing, Ensure that all the values are supplied
  2674. $required_values = $_SESSION['prepared_args'][$connection][$statement_name];
  2675. if (!$required_values) {
  2676. watchdog('tripal_core', "tripal_core_chado_execute_prepared: missing prepare arguments for this statement: '%name'", array('%name' => $statement_name), WATCHDOG_ERROR);
  2677. return FALSE;
  2678. }
  2679. if (sizeof($required_values) == sizeof($values)) {
  2680. $error = FALSE;
  2681. foreach ($values as $k => $v) {
  2682. if (isset($required_values[$k])) {
  2683. switch ($required_values[$k]) {
  2684. case 'text':
  2685. $check = is_string($v);
  2686. if ($v != '' and !$check) {
  2687. watchdog('tripal_core', "chado_execute_prepared: wrong argument type supplied for '%name' statement, field %k. Expected %required but recieved '%value'",
  2688. array('%name' => $statement_name, '%k' => $k, '%required' => $required_values[$k], '%value' => print_r($v, TRUE)), WATCHDOG_ERROR);
  2689. return FALSE;
  2690. }
  2691. break;
  2692. case 'int':
  2693. $check = is_numeric($v);
  2694. if (!$check) {
  2695. watchdog('tripal_core', "chado_execute_prepared: wrong argument type supplied for '%name' statement. Expected %required but recieved '%value'",
  2696. array('%name' => $statement_name, '%required' => $required_values[$k], '%value' => print_r($v, TRUE)), WATCHDOG_ERROR);
  2697. return FALSE;
  2698. }
  2699. break;
  2700. case 'bool':
  2701. if ($v != 'TRUE' and $v != 'FALSE') {
  2702. watchdog('tripal_core', "chado_execute_prepared: wrong argument type supplied for '%name' statement. Expected %required but recieved '%value'",
  2703. array('%name' => $statement_name, '%required' => $required_values[$k], '%value' => print_r($v, TRUE)), WATCHDOG_ERROR);
  2704. return FALSE;
  2705. }
  2706. break;
  2707. case 'numeric':
  2708. $check = is_numeric($v);
  2709. if (!$check) {
  2710. watchdog('tripal_core', "chado_execute_prepared: wrong argument type supplied for '%name' statement. Expected %required but recieved '%value'",
  2711. array('%name' => $statement_name, '%required' => $required_values[$k], '%value' => print_r($v, TRUE)), WATCHDOG_ERROR);
  2712. return FALSE;
  2713. }
  2714. break;
  2715. default:
  2716. watchdog('tripal_core', "chado_execute_prepared: unsupported argument type (supplied for '%name' statement %type)",
  2717. array('%name' => $statement_name, '%type' => $required_values[$k]), WATCHDOG_WARNING);
  2718. break;
  2719. }
  2720. }
  2721. else {
  2722. watchdog('tripal_core', "chado_execute_prepared: wrong number of arguments supplied for '%name' statement. Expected %required but recieved %values",
  2723. array('%name' => $statement_name, '%required' => print_r($required_values, TRUE), '%values' => print_r($values, TRUE)), WATCHDOG_ERROR);
  2724. return FALSE;
  2725. }
  2726. }
  2727. // Since all values are supplied, execute
  2728. $resource = chado_query($sql, $values);
  2729. return $resource;
  2730. }
  2731. else {
  2732. watchdog('tripal_core', "chado_execute_prepared: wrong number of arguments supplied for '%name' statement. Expected %required but recieved %values. Statement: %statement.",
  2733. array('%name' => $statement_name, '%required' => print_r($required_values, TRUE), '%values' => print_r($values, TRUE), '%statement' => $_SESSION['prepared_sql'][$connection][$statement_name]), WATCHDOG_ERROR);
  2734. return FALSE;
  2735. }
  2736. }
  2737. /**
  2738. * Instantiate or Return a persistent chado connection
  2739. *
  2740. * NOTE: cannot use $active_db since a new connection is created each time
  2741. * db_set_active() is called
  2742. *
  2743. * @return
  2744. * A postgresql connection object which can be used by pg_prepare, pg_execute, etc.
  2745. */
  2746. function tripal_db_persistent_chado() {
  2747. global $db_url;
  2748. // get connection if it already exists
  2749. // Otherwise we need to set it
  2750. $sconn = variable_get('tripal_persistent_chado', NULL);
  2751. if ($sconn) {
  2752. return $sconn;
  2753. }
  2754. else {
  2755. if (is_array($db_url) && isset($db_url['chado'])) {
  2756. $connection = db_connect($db_url['chado']);
  2757. if (!$connection) {
  2758. watchdog('tripal_core', "Could not create persistant connection", array(), WATCHDOG_ERROR);
  2759. return FALSE;
  2760. }
  2761. variable_set('tripal_persistent_chado', $connection);
  2762. }
  2763. else {
  2764. if (is_array($db_url)) {
  2765. $connection = db_connect($db_url['default']);
  2766. }
  2767. else {
  2768. $connection = db_connect($db_url);
  2769. }
  2770. if (!$connection) {
  2771. variable_set('tripal_persistent_chado', NULL);
  2772. watchdog('tripal_core', "Could not create persistant connection", array(), WATCHDOG_ERROR);
  2773. return FALSE;
  2774. }
  2775. variable_set('tripal_persistent_chado', $connection);
  2776. }
  2777. return $connection;
  2778. }
  2779. return FALSE;
  2780. }
  2781. /**
  2782. * Release a persistent chado connection
  2783. */
  2784. function tripal_db_release_persistent_chado() {
  2785. variable_del('tripal_persistent_chado');
  2786. }
  2787. /**
  2788. * Start a transaction block. Ensures the use of a persistent chado connection
  2789. */
  2790. function tripal_db_start_transaction() {
  2791. $connection = tripal_db_persistent_chado();
  2792. if ($connection) {
  2793. chado_query("BEGIN");
  2794. return $connection;
  2795. }
  2796. return FALSE;
  2797. }
  2798. /**
  2799. * Set a savepoint to roll the current transaction back to if an error is encountered
  2800. */
  2801. function tripal_db_set_savepoint_transaction($savepoint, $release = FALSE) {
  2802. // Postgresql requires a savepoint of the same name to be unset before re-use
  2803. if ($release) {
  2804. chado_query("RELEASE SAVEPOINT %s", $savepoint);
  2805. }
  2806. chado_query("SAVEPOINT %s", $savepoint);
  2807. }
  2808. /**
  2809. * Commit changes made during the current transaction
  2810. */
  2811. function tripal_db_commit_transaction() {
  2812. chado_query("COMMIT");
  2813. }
  2814. /**
  2815. * Rollback changes.
  2816. *
  2817. * If $savepoint is NULL then rollback to the beginning of the transaction,
  2818. * Otherwise, rollback to the point at which the named $savepoint was created
  2819. *
  2820. * @param $savepoint
  2821. * The name of the saved point in the transaction to rollback to
  2822. */
  2823. function tripal_db_rollback_transaction($savepoint = NULL, $commit = TRUE) {
  2824. if ($savepoint) {
  2825. chado_query("ROLLBACK TO SAVEPOINT %s", $savepoint);
  2826. }
  2827. else {
  2828. chado_query("ROLLBACK");
  2829. }
  2830. if ($commit) {
  2831. tripal_db_commit_transaction();
  2832. }
  2833. }
  2834. /**
  2835. * Purpose: Get max rank for a given set of criteria
  2836. * This function was developed with the many property tables in chado in mind
  2837. *
  2838. * @param $tablename
  2839. * The name of the chado table you want to select the max rank from this table must contain a
  2840. * rank column of type integer
  2841. * @param $where_options
  2842. * where options should include the id and type for that table to correctly
  2843. * group a set of records together where the only difference are the value and rank
  2844. * @code
  2845. * array(
  2846. * <column_name> => array(
  2847. * 'type' => <type of column: INT/STRING>,
  2848. * 'value' => <the value you want to filter on>,
  2849. * 'exact' => <if TRUE use =; if FALSE use ~>,
  2850. * )
  2851. * )
  2852. * @endcode
  2853. * @return the maximum rank
  2854. *
  2855. * @ingroup tripal_chado_api
  2856. */
  2857. function tripal_get_max_chado_rank($tablename, $where_options) {
  2858. $where= array();
  2859. //generate the where clause from supplied options
  2860. // the key is the column name
  2861. foreach ($where_options as $key => $val_array) {
  2862. if (preg_match('/INT/', $val_array['type'])) {
  2863. $where[] = $key . "=" . $val_array['value'];
  2864. }
  2865. else {
  2866. if ($val_array['exact']) {
  2867. $operator='=';
  2868. }
  2869. else {
  2870. $operator='~';
  2871. }
  2872. $where[] = $key . $operator . "'" . $val_array['value'] . "'";
  2873. }
  2874. }
  2875. $previous_db = tripal_db_set_active('chado');
  2876. $result = db_fetch_object(db_query("SELECT max(rank) as max_rank, count(rank) as count FROM %s WHERE %s",
  2877. $tablename, implode(' AND ', $where)));
  2878. tripal_db_set_active($previous_db);
  2879. //drupal_set_message("Max Rank Query=SELECT max(rank) as max_rank, count(rank) as count FROM ".$tablename." WHERE ".implode(' AND ',$where));
  2880. if ($result->count > 0) {
  2881. return $result->max_rank;
  2882. }
  2883. else {
  2884. return -1;
  2885. }
  2886. }
  2887. /**
  2888. * Retrieves the schema in an array for the specified custom table.
  2889. *
  2890. * @param $table
  2891. * The name of the table to create.
  2892. *
  2893. * @return
  2894. * A Drupal-style Schema API array definition of the table. Returns
  2895. * FALSE on failure.
  2896. *
  2897. * @ingroup tripal_core_api
  2898. */
  2899. function tripal_get_chado_custom_schema($table) {
  2900. $sql = "SELECT schema FROM {tripal_custom_tables} WHERE table_name = '%s'";
  2901. $custom = db_fetch_object(db_query($sql, $table));
  2902. if (!$custom) {
  2903. return FALSE;
  2904. }
  2905. else {
  2906. return unserialize($custom->schema);
  2907. }
  2908. }
  2909. /**
  2910. * Check that the Chado schema exists
  2911. *
  2912. * @return
  2913. * TRUE/FALSE depending upon whether it exists
  2914. */
  2915. function tripal_core_chado_schema_exists() {
  2916. $exists = variable_get('chado_schema_exists', FALSE);
  2917. if (!$exists) {
  2918. // This is postgresql-specific code to check the existence of the chado schema
  2919. // @coder-ignore: acting on pg_catalog schema rather then drupal schema therefore, table prefixing does not apply
  2920. $sql = "SELECT nspname FROM pg_catalog.pg_namespace WHERE nspname = 'chado'";
  2921. if (db_fetch_object(db_query($sql))) {
  2922. variable_set('chado_schema_exists', TRUE);
  2923. return TRUE;
  2924. }
  2925. else {
  2926. return FALSE;
  2927. }
  2928. }
  2929. return TRUE;
  2930. }
  2931. /**
  2932. * Check that any given schema exists
  2933. *
  2934. * @param $schema
  2935. * The name of the schema to check the existence of
  2936. *
  2937. * @return
  2938. * TRUE/FALSE depending upon whether or not the schema exists
  2939. *
  2940. * @ingroup tripal_chado_api
  2941. */
  2942. function tripal_core_schema_exists($schema) {
  2943. // check that the chado schema now exists
  2944. $sql = "SELECT nspname
  2945. FROM pg_namespace
  2946. WHERE has_schema_privilege(nspname, 'USAGE') and nspname = '%s'
  2947. ORDER BY nspname";
  2948. $name = db_fetch_object(db_query($sql, $schema));
  2949. if (strcmp($name->nspname, $schema) != 0) {
  2950. return FALSE;
  2951. }
  2952. return TRUE;
  2953. }
  2954. /**
  2955. * Retrieves the list tables in the Chado schema. By default it only retursn
  2956. * the default Chado tables, but may also return custom tables added to the
  2957. * Chado schema as well.
  2958. *
  2959. * @param $include_custom
  2960. * Optional. Set as TRUE to include any custom tables created in the
  2961. * Chado schema. Custom tables are added to Chado using the
  2962. * tripal_core_chado_create_table() function.
  2963. *
  2964. * @returns
  2965. * An associative array where the key and value pairs are the Chado table names.
  2966. *
  2967. * @ingroup tripal_core_api
  2968. */
  2969. function tripal_core_get_chado_tables($include_custom = NULL) {
  2970. // first get the chado version that is installed
  2971. $v = tripal_core_get_chado_version();
  2972. $tables = array();
  2973. if ($v == '1.2') {
  2974. $tables_v1_2 = tripal_core_chado_get_v1_2_tables();
  2975. foreach ($tables_v1_2 as $table) {
  2976. $tables[$table] = $table;
  2977. }
  2978. }
  2979. if ($v == '1.11' or $v == '1.11 or older') {
  2980. $tables_v1_11 = tripal_core_chado_get_v1_11_tables();
  2981. foreach ($tables_v1_11 as $table) {
  2982. $tables[$table] = $table;
  2983. }
  2984. }
  2985. // now add in the custom tables too if requested
  2986. if ($include_custom) {
  2987. $sql = "SELECT table_name FROM {tripal_custom_tables}";
  2988. $resource = db_query($sql);
  2989. while ($r = db_fetch_object($resource)) {
  2990. $tables[$r->table_name] = $r->table_name;
  2991. }
  2992. }
  2993. asort($tables);
  2994. return $tables;
  2995. }
  2996. /**
  2997. * Sets a Drupal variable with the current version of Chado. This variable
  2998. * can then be queried later using the tripal_core_get_chado_Version
  2999. *
  3000. * @returns
  3001. * The version of Chado
  3002. *
  3003. * @ingroup tripal_core_api
  3004. */
  3005. function tripal_core_set_chado_version() {
  3006. global $db_url;
  3007. // check that Chado is installed if not return 'uninstalled as the version'
  3008. $chado_exists = tripal_core_chado_schema_exists();
  3009. if (!$chado_exists) {
  3010. // if it's not in the drupal database check to see if it's specified in the $db_url
  3011. // in the settings.php
  3012. if (!is_array($db_url) or !array_key_exists('chado', $db_url)) {
  3013. // if it's not in the drupal database or specified in the $db_url then
  3014. // return uninstalled as the version
  3015. return 'not installed';
  3016. }
  3017. }
  3018. // if the table doesn't exist then we don't know what version but we know
  3019. // it must be 1.11 or older.
  3020. $previous_db = tripal_db_set_active('chado');
  3021. $prop_exists = db_table_exists('chadoprop');
  3022. tripal_db_set_active($previous_db);
  3023. if (!$prop_exists) {
  3024. return "1.11 or older";
  3025. }
  3026. // we can't use the Tripal API to query this table
  3027. // because the Tripal API depends on this function to
  3028. // tell it the version. So, we need a typical SQL statement
  3029. $sql = "SELECT value "
  3030. ."FROM chadoprop CP "
  3031. ." INNER JOIN cvterm CVT on CVT.cvterm_id = CP.type_id "
  3032. ." INNER JOIN cv CV on CVT.cv_id = CV.cv_id "
  3033. ."WHERE CV.name = 'chado_properties' and CVT.name = 'version'";
  3034. $previous_db = tripal_db_set_active('chado');
  3035. $v = db_fetch_object(db_query($sql));
  3036. tripal_db_set_active($previous_db);
  3037. // if we don't have a version in the chadoprop table then it must be
  3038. // v1.11 or older
  3039. if (!$v->value) {
  3040. variable_set('chado_version', "1.11 or older");
  3041. return "1.11 or older";
  3042. }
  3043. variable_set('chado_version', $v->value);
  3044. return $v->value;
  3045. }
  3046. /**
  3047. * Returns the version number of the currently installed Chado instance.
  3048. * It can return the real or effective version.
  3049. *
  3050. * @param $exact
  3051. * Set this argument to 1 to retrieve the exact version that is installed.
  3052. * Otherwise, this function will set the version to the nearest 'tenth'.
  3053. * Chado versioning numbers in the hundreds represent changes to the
  3054. * software and not the schema. Changes in the tenth's represent changes
  3055. * in the schema.
  3056. *
  3057. * @param $warn_if_unsupported
  3058. * If the currently installed version of Chado is not supported by Tripal
  3059. * the generatea a Drupal warning.
  3060. *
  3061. * @returns
  3062. * The version of Chado
  3063. *
  3064. * @ingroup tripal_core_api
  3065. */
  3066. function tripal_core_get_chado_version($exact = FALSE, $warn_if_unsupported = FALSE) {
  3067. // first get the chado version that is installed
  3068. $exact_version = variable_get('chado_version', '');
  3069. if (!$exact_version) {
  3070. $exact_version = tripal_core_set_chado_version();
  3071. }
  3072. // Tripal only supports v1.11 or newer.. really this is the same as v1.1
  3073. // but at the time the v1.11 schema API was written we didn't know that so
  3074. // we'll return the version 1.11 so the schema API will work.
  3075. if (strcmp($exact_version, '1.11 or older') == 0) {
  3076. $exact_version = "1.11";
  3077. if ($warn_if_unsupported) {
  3078. drupal_set_message(t("WARNING: Tripal does not fully support Chado version less than v1.1. If you are certain this is v1.1
  3079. of if Chado was installed using an earlier version of Tripal then all is well. If not please upgrade to v1.1 or later"),
  3080. 'warning');
  3081. }
  3082. }
  3083. // if not returing an exact version, return the version to the nearest 10th.
  3084. // return 1.2 for all versions of 1.2x
  3085. $effective_version = $exact_version;
  3086. if (preg_match('/^1\.2\d+$/', $effective_version)) {
  3087. $effective_version = "1.2";
  3088. }
  3089. if ($warn_if_unsupported and ($effective_version != 1.11 and $effective_version != 1.2)) {
  3090. drupal_set_message(t("WARNING: The currently installed version of Chado, v$exact_version, is not fully compatible with Tripal."), 'warning');
  3091. }
  3092. // if the callee has requested the exact version then return it
  3093. if ($exact) {
  3094. return $exact_version;
  3095. }
  3096. return $effective_version;
  3097. }
  3098. /**
  3099. * Retrieves the chado tables Schema API array.
  3100. *
  3101. * @param $table
  3102. * The name of the table to retrieve. The function will use the appopriate
  3103. * Tripal chado schema API hooks (e.g. v1.11 or v1.2).
  3104. *
  3105. * @returns
  3106. * A Drupal Schema API array defining the table.
  3107. *
  3108. * @ingroup tripal_core_api
  3109. */
  3110. function tripal_core_get_chado_table_schema($table) {
  3111. // first get the chado version that is installed
  3112. $v = tripal_core_get_chado_version();
  3113. // get the table array from the proper chado schema
  3114. $v = preg_replace("/\./", "_", $v); // reformat version for hook name
  3115. $table_arr = module_invoke_all("chado_schema_v" . $v . "_" . $table);
  3116. // if the table_arr is empty then maybe this is a custom table
  3117. if (!is_array($table_arr) or count($table_arr) == 0) {
  3118. $table_arr = tripal_get_chado_custom_schema($table);
  3119. }
  3120. return $table_arr;
  3121. }
  3122. /**
  3123. * This function will delete Drupal nodes for any sync'ed table (e.g.
  3124. * feature, organism, analysis, stock, library) if the chado record has been
  3125. * deleted or the entry in the chado_[table] table has been removed.
  3126. *
  3127. * @param $table
  3128. * The name of the table that corresonds to the node type we want to clean up.
  3129. * @param $job_id
  3130. * This should be the job id from the Tripal jobs system. This function
  3131. * will update the job status using the provided job ID.
  3132. *
  3133. * @ingroup tripal_core_api
  3134. */
  3135. function tripal_core_clean_orphaned_nodes($table, $job_id) {
  3136. $count = 0;
  3137. // build the SQL statments needed to check if nodes point to valid analyses
  3138. $dsql = "SELECT * FROM {node} WHERE type = 'chado_%s' order by nid";
  3139. $nsql = "SELECT * FROM {node} WHERE nid = %d";
  3140. $csql = "SELECT * FROM {chado_%s} where nid = %d ";
  3141. $clsql= "SELECT * FROM {chado_%s}";
  3142. $lsql = "SELECT * FROM %s where %s_id = %d ";
  3143. // load into nodes array
  3144. print "Getting nodes\n";
  3145. $nodes = array();
  3146. $res = db_query($dsql, $table);
  3147. while ($node = db_fetch_object($res)) {
  3148. $nodes[$count] = $node;
  3149. $count++;
  3150. }
  3151. // load the chado_$table into an array
  3152. print "Getting chado_$table\n";
  3153. $cnodes = array();
  3154. $res = db_query($clsql, $table);
  3155. while ($node = db_fetch_object($res)) {
  3156. $cnodes[$count] = $node;
  3157. $count++;
  3158. }
  3159. $interval = intval($count * 0.01);
  3160. if ($interval < 1) {
  3161. $interval = 1;
  3162. }
  3163. // iterate through all of the chado_$table entries and remove those
  3164. // that don't have a node or don't have a $table record in chado.libary
  3165. foreach ($cnodes as $nid) {
  3166. // update the job status every 1% analyses
  3167. if ($job_id and $i % $interval == 0) {
  3168. tripal_job_set_progress($job_id, intval(($i / $count) * 100));
  3169. }
  3170. // see if the node exits, if not remove the entry from the chado_$table table
  3171. $node = db_fetch_object(db_query($nsql, $nid->nid));
  3172. if (!$node) {
  3173. db_query("DELETE FROM {chado_%s} WHERE nid = %d", $table, $nid->nid);
  3174. $message = "chado_$table missing node.... DELETING: $nid->nid";
  3175. watchdog('tripal_core', $message, array(), WATCHDOG_WARNING);
  3176. }
  3177. // see if the record in chado exist, if not remove the entry from the chado_$table
  3178. $table_id = $table . "_id";
  3179. $record = db_fetch_object(chado_query($lsql, $table, $table, $nid->$table_id));
  3180. if (!$record) {
  3181. chado_query("DELETE FROM {chado_%s} WHERE %s_id = '%d'", $table, $table, $nid->$table_id);
  3182. $message = "chado_$table missing $table.... DELETING entry.";
  3183. watchdog('tripal_core', $message, array(), WATCHDOG_WARNING);
  3184. }
  3185. $i++;
  3186. }
  3187. // iterate through all of the nodes and delete those that don't
  3188. // have a corresponding entry in chado_$table
  3189. foreach ($nodes as $node) {
  3190. // update the job status every 1% libraries
  3191. if ($job_id and $i % $interval == 0) {
  3192. tripal_job_set_progress($job_id, intval(($i / $count) * 100));
  3193. }
  3194. // check to see if the node has a corresponding entry
  3195. // in the chado_$table table. If not then delete the node.
  3196. $link = db_fetch_object(db_query($csql, $table, $node->nid));
  3197. if (!$link) {
  3198. if (node_access('delete', $node)) {
  3199. $message = "Node missing in chado_$table table.... DELETING node $node->nid";
  3200. watchdog("tripal_core", $message, array(), WATCHDOG_WARNING);
  3201. node_delete($node->nid);
  3202. }
  3203. else {
  3204. $message = "Node missing in chado_$table table.... but cannot delete due to improper permissions (node $node->nid)";
  3205. watchdog("tripal_core", $message, array(), WATCHDOG_WARNING);
  3206. }
  3207. }
  3208. $i++;
  3209. }
  3210. return '';
  3211. }
  3212. /**
  3213. * Check whether chado is installed (either in the same or a different database)
  3214. *
  3215. * @return
  3216. * TRUE/FALSE depending upon whether chado is installed.
  3217. *
  3218. * @ingroup tripal_chado_api
  3219. */
  3220. function tripal_core_is_chado_installed() {
  3221. global $db_url, $db_type;
  3222. // first check if chado is in the db_url of the
  3223. // settings.php file
  3224. if (is_array($db_url)) {
  3225. if (isset($db_url['chado'])) {
  3226. return TRUE;
  3227. }
  3228. }
  3229. // check to make sure the chado schema exists
  3230. return tripal_core_chado_schema_exists();
  3231. }