tripal_core.api.inc 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450
  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", $psql, array());
  335. if ($is_prepared) {
  336. $value = db_fetch_object(chado_query("EXECUTE currval_$table"));
  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, or the number of records in the dataset if $has_record is set.
  972. * If the option 'is_duplicate' is provided and the record is a duplicate it
  973. * will return the duplicated record. If the 'has_record' option is provided
  974. * a value of TRUE will be returned if a record exists and FALSE will bee
  975. * returned if there are not records.
  976. *
  977. * Example usage:
  978. * @code
  979. * $columns = array('feature_id', 'name');
  980. * $values = array(
  981. * 'organism_id' => array(
  982. * 'genus' => 'Citrus',
  983. * 'species' => array('sinensis', 'clementina'),
  984. * ),
  985. * 'uniquename' => 'orange1.1g000034m.g',
  986. * 'type_id' => array (
  987. * 'cv_id' => array (
  988. * 'name' => 'sequence',
  989. * ),
  990. * 'name' => 'gene',
  991. * 'is_obsolete' => 0
  992. * ),
  993. * );
  994. * $options = array(
  995. * 'statement_name' => 'sel_feature_genus_species_cvname'
  996. * 'order_by' => array(
  997. * 'name' => 'ASC'
  998. * ),
  999. * );
  1000. * $result = tripal_core_chado_select('feature',$columns,$values,$options);
  1001. * @endcode
  1002. * The above code selects a record from the feature table using the three fields
  1003. * that uniquely identify a feature. The $columns array simply lists the columns
  1004. * to select. The $values array is nested such that the organism is identified by
  1005. * way of the organism_id foreign key constraint by specifying the genus and
  1006. * species. The cvterm is also specified using its foreign key and the cv_id
  1007. * for the cvterm is nested as well. In the example above, two different species
  1008. * are allowed to match
  1009. *
  1010. * @ingroup tripal_chado_api
  1011. */
  1012. function tripal_core_chado_select($table, $columns, $values, $options = NULL) {
  1013. // set defaults for options. If we don't set defaults then
  1014. // we get memory leaks when we try to access the elements
  1015. if (!is_array($options)) {
  1016. $options = array();
  1017. }
  1018. if (!array_key_exists('case_insensitive_columns', $options)) {
  1019. $options['case_insensitive_columns'] = array();
  1020. }
  1021. if (!array_key_exists('regex_columns', $options)) {
  1022. $options['regex_columns'] = array();
  1023. }
  1024. if (!array_key_exists('order_by', $options)) {
  1025. $options['order_by'] = array();
  1026. }
  1027. if (!array_key_exists('is_prepared', $options)) {
  1028. $options['is_prepared'] = FALSE;
  1029. }
  1030. if (!array_key_exists('return_sql', $options)) {
  1031. $options['return_sql'] = FALSE;
  1032. }
  1033. if (!array_key_exists('has_record', $options)) {
  1034. $options['has_record'] = FALSE;
  1035. }
  1036. if (!array_key_exists('statement_name', $options)) {
  1037. $options['statement_name'] = FALSE;
  1038. }
  1039. if (!array_key_exists('is_duplicate', $options)) {
  1040. $options['is_duplicate'] = FALSE;
  1041. }
  1042. // if this is a prepared statement check to see if it has already been prepared
  1043. $prepared = FALSE;
  1044. if ($options['statement_name']) {
  1045. $prepared = TRUE;
  1046. // we need to get a persistent connection. If one exists this function
  1047. // will not recreate it, but if not it will create one and store it in
  1048. // a Drupal variable for reuse later.
  1049. $connection = tripal_db_persistent_chado();
  1050. // if we cannot get a connection the abandon the prepared statement
  1051. if (!$connection) {
  1052. $prepared = FALSE;
  1053. unset($options['statement_name']);
  1054. }
  1055. }
  1056. else {
  1057. //print "NO STATEMENT (select): $table\n";
  1058. //debug_print_backtrace();
  1059. }
  1060. // check that our columns and values arguments are proper arrays
  1061. if (!is_array($columns)) {
  1062. watchdog('tripal_core', 'the $columns argument for tripal_core_chado_select must be an array.');
  1063. return FALSE;
  1064. }
  1065. if (!is_array($values)) {
  1066. watchdog('tripal_core', 'the $values argument for tripal_core_chado_select must be an array.');
  1067. return FALSE;
  1068. }
  1069. // get the table description
  1070. $table_desc = tripal_core_get_chado_table_schema($table);
  1071. $select = '';
  1072. $from = '';
  1073. $where = '';
  1074. $args = array();
  1075. // if the 'use_unique' option is turned on then we want
  1076. // to remove all but unique keys
  1077. if ($options['is_duplicate'] and array_key_exists('unique keys', $table_desc)) {
  1078. $ukeys = $table_desc['unique keys'];
  1079. $has_results = 0;
  1080. // iterate through the unique constraints and reset the values and columns
  1081. // arrays to only include these fields
  1082. foreach ($ukeys as $cname => $fields) {
  1083. if ($has_results) {
  1084. continue;
  1085. }
  1086. $new_values = array();
  1087. $new_columns = array();
  1088. $new_options = array();
  1089. $uq_sname = "uq_" . $table . "_";
  1090. $has_pkey = 0;
  1091. // include the primary key in the results returned
  1092. if (array_key_exists('primary key', $table_desc)) {
  1093. $has_pkey = 1;
  1094. $pkeys = $table_desc['primary key'];
  1095. foreach ($pkeys as $index => $key) {
  1096. array_push($new_columns, $key);
  1097. }
  1098. }
  1099. // recreate the $values and $columns arrays
  1100. foreach ($fields as $field) {
  1101. if (array_key_exists($field, $values)) {
  1102. $new_values[$field] = $values[$field];
  1103. $uq_sname .= substr($field, 0, 2);
  1104. // if there is no primary key then use the unique contraint fields
  1105. if (!$has_pkey) {
  1106. array_push($new_columns, $field);
  1107. }
  1108. }
  1109. // if the field doesn't exist in the values array then
  1110. // substitute any default values
  1111. elseif (array_key_exists('default', $table_desc['fields'][$field])) {
  1112. $new_values[$field] = $table_desc['fields'][$field]['default'];
  1113. $uq_sname .= substr($field, 0, 2);
  1114. if (!$has_pkey) {
  1115. array_push($new_columns, $field);
  1116. }
  1117. }
  1118. // if there is no value (default or otherwise) check if this field is
  1119. // allowed to be null
  1120. elseif (!$table_desc['fields'][$field]['not null']) {
  1121. $new_values[$field] = NULL;
  1122. $uq_sname .= "n".substr($field, 0, 2);
  1123. if (!$has_pkey) {
  1124. array_push($new_columns, $field);
  1125. }
  1126. }
  1127. // if the array key doesn't exist in the values given by the caller
  1128. // and there is no default value then we cannot check if the record
  1129. // is a duplicate so return FALSE
  1130. else {
  1131. watchdog('tripal_core', "tripal_core_chado_select: There is no value for %field"
  1132. ." thus we cannot check if this record is unique",
  1133. array('%field' => $field), WATCHDOG_ERROR);
  1134. return FALSE;
  1135. }
  1136. }
  1137. $new_options['statement_name'] = $uq_sname;
  1138. $results = tripal_core_chado_select($table, $new_columns, $new_values, $new_options);
  1139. // if we have a duplicate record then return the results
  1140. if (count($results) > 0) {
  1141. $has_results = 1;
  1142. }
  1143. unset($new_columns);
  1144. unset($new_values);
  1145. unset($new_options);
  1146. }
  1147. if ($options['has_record'] and $has_results) {
  1148. return TRUE;
  1149. }
  1150. else {
  1151. return $results;
  1152. }
  1153. }
  1154. foreach ($values as $field => $value) {
  1155. // make sure the field is in the table description. If not then return an error
  1156. // message
  1157. if (!array_key_exists($field, $table_desc['fields'])) {
  1158. watchdog('tripal_core', "tripal_core_chado_select: The field '%field' does not exist ".
  1159. "for the table '%table'. Cannot perform query. Values: %array",
  1160. array('%field' => $field, '%table' => $table, '%array' => print_r($values, 1)), WATCHDOG_ERROR);
  1161. return array();
  1162. }
  1163. $select[] = $field;
  1164. if (is_array($value)) {
  1165. // if the user has specified multiple values for matching then this we
  1166. // want to catch that and save them in our $where array, otherwise
  1167. // we'll descend for a foreign key relationship
  1168. if (array_values($value) === $value) {
  1169. $where[$field] = $value;
  1170. }
  1171. else {
  1172. // select the value from the foreign key relationship for this value
  1173. $foreign_options = array(
  1174. 'regex_columns' => $options['regex_columns'],
  1175. 'case_insensitive_columns' => $options['case_insensitive_columns']
  1176. );
  1177. if (array_key_exists('statement_name', $options) and $options['statement_name']) {
  1178. // add the fk relationship info to the prepared statement name so that
  1179. // we can prepare the selects run by the recrusive tripal_core_chado_get_foreign_key
  1180. // function. we need the statement name to be unique so take the first two characters of each column
  1181. $fk_sname = "fk_" . $table . "_" . $field;
  1182. foreach ($value as $k => $v) {
  1183. $fk_sname .= substr($k, 0, 2);
  1184. }
  1185. $foreign_options['statement_name'] = $fk_sname;
  1186. }
  1187. $results = tripal_core_chado_get_foreign_key($table_desc, $field, $value, $foreign_options);
  1188. if (!$results or count($results)==0) {
  1189. // foreign key records are required
  1190. // thus if none matched then return FALSE and alert the admin through watchdog
  1191. /*watchdog('tripal_core',
  1192. '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',
  1193. array('!table' => $table,
  1194. '!columns' => '<pre>' . print_r($columns, TRUE) . '</pre>',
  1195. '!values' => '<pre>' . print_r($values, TRUE) . '</pre>',
  1196. '!field' => $field,
  1197. ),
  1198. WATCHDOG_WARNING);*/
  1199. return array();
  1200. }
  1201. else {
  1202. $where[$field] = $results;
  1203. }
  1204. }
  1205. }
  1206. else {
  1207. // need to catch a 0 and make int if integer field
  1208. // but we don't want to catch a NULL
  1209. if ($value === NULL) {
  1210. $where[$field] = NULL;
  1211. }
  1212. elseif ($table_desc['fields'][$field]['type'] == 'int') {
  1213. $where[$field][] = (int) $value;
  1214. }
  1215. else {
  1216. $where[$field][] = $value;
  1217. }
  1218. }
  1219. }
  1220. // now build the SQL and prepared SQL statements. We may not use
  1221. // the prepared statement if it wasn't requested in the options of if the
  1222. // argument in a where statement has multiple values.
  1223. if (empty($where)) {
  1224. // sometimes want to select everything
  1225. $sql = "SELECT " . implode(', ', $columns) . " ";
  1226. $sql .= "FROM {$table} ";
  1227. // we don't prepare a statement if there is no where clause
  1228. $prepared = FALSE;
  1229. }
  1230. else {
  1231. $sql = "SELECT " . implode(', ', $columns) . " ";
  1232. $sql .= "FROM {$table} ";
  1233. $sql .= "WHERE ";
  1234. $psql = $sql; // prepared SQL statement;
  1235. $i = 1;
  1236. $pvalues = array();
  1237. $itypes = array();
  1238. foreach ($where as $field => $value) {
  1239. // if we have multiple values returned then we need an 'IN' statement
  1240. // in our where statement
  1241. if (count($value) > 1) {
  1242. $sql .= "$field IN (" . db_placeholders($value, 'varchar') . ") AND ";
  1243. foreach ($value as $v) {
  1244. $args[] = $v;
  1245. // we can't do a prepared statement with an 'IN' statement in a
  1246. // where clause because we can't guarantee we'll always have the
  1247. // same number of elements.
  1248. $prepared = FALSE;
  1249. }
  1250. }
  1251. // if we have a null value then we need an IS NULL in our where statement
  1252. elseif ($value === NULL) {
  1253. $sql .= "$field IS NULL AND ";
  1254. $psql .= "$field IS NULL AND ";
  1255. // Need to remove one from the argument count b/c nulls don't add an argument
  1256. $i--;
  1257. }
  1258. // if we have a single value then we need an = in our where statement
  1259. else {
  1260. $operator = '=';
  1261. if (in_array($field, $options['regex_columns'])) {
  1262. $operator = '~*';
  1263. }
  1264. // get the types for the prepared statement. First check if the type
  1265. // is an integer
  1266. if (strcasecmp($table_desc['fields'][$field]['type'], 'serial')==0 OR
  1267. strcasecmp($table_desc['fields'][$field]['type'], 'int')==0 OR
  1268. strcasecmp($table_desc['fields'][$field]['type'], 'integer')==0) {
  1269. $sql .= "$field $operator %d AND ";
  1270. $psql .= "$field $operator \$" . $i . " AND ";
  1271. $args[] = $value[0];
  1272. // set the variables needed for the prepared statement
  1273. $idatatypes[] = 'int';
  1274. $itypes[] = '%d';
  1275. $pvalues[] = $value[0];
  1276. }
  1277. elseif (strcasecmp($table_desc['fields'][$field]['type'], 'boolean')==0) {
  1278. $sql .= "$field $operator %s AND ";
  1279. $psql .= "$field $operator \$" . $i . " AND ";
  1280. $args[] = $value[0];
  1281. // set the variables needed for the prepared statement
  1282. $idatatypes[] = 'bool';
  1283. $itypes[] = '%d';
  1284. $pvalues[] = $value[0];
  1285. }
  1286. elseif (strcasecmp($table_desc['fields'][$field]['type'], 'float')==0) {
  1287. $sql .= "$field $operator %s AND ";
  1288. $psql .= "$field $operator \$" . $i . " AND ";
  1289. $args[] = $value[0];
  1290. // set the variables needed for the prepared statement
  1291. $idatatypes[] = 'numeric';
  1292. $itypes[] = '%f';
  1293. $pvalues[] = $value[0];
  1294. }
  1295. // else the type is a text
  1296. else {
  1297. if (in_array($field, $options['case_insensitive_columns'])) {
  1298. $sql .= "lower($field) $operator lower('%s') AND ";
  1299. $psql .= "lower($field) $operator lower('\$" . $i . "') AND ";
  1300. $args[] = $value;
  1301. }
  1302. else {
  1303. $sql .= "$field $operator '%s' AND ";
  1304. $psql .= "$field $operator \$" . $i . " AND ";
  1305. $args[] = $value[0];
  1306. }
  1307. // set the variables needed for the prepared statement
  1308. $idatatypes[] = 'text';
  1309. $itypes[] = "'%s'";
  1310. $pvalues[] = $value[0];
  1311. }
  1312. }
  1313. $i++;
  1314. }
  1315. $sql = drupal_substr($sql, 0, -4); // get rid of the trailing 'AND '
  1316. $psql = drupal_substr($psql, 0, -4); // get rid of the trailing 'AND '
  1317. // finally add any ordering of the results to the SQL statement
  1318. if (count($options['order_by']) > 0) {
  1319. $sql .= " ORDER BY ";
  1320. $psql .= " ORDER BY ";
  1321. foreach ($options['order_by'] as $field => $dir) {
  1322. $sql .= "$field $dir, ";
  1323. $psql .= "$field $dir, ";
  1324. }
  1325. $sql = drupal_substr($sql, 0, -2); // get rid of the trailing ', '
  1326. $psql = drupal_substr($psql, 0, -2); // get rid of the trailing ', '
  1327. }
  1328. // finish constructing the prepared SQL statement
  1329. $psql = "PREPARE " . $options['statement_name'] . " (" . implode(', ', $idatatypes) . ") AS " . $psql;
  1330. } // end if(empty($where)){ } else {
  1331. // if the caller has requested the SQL rather than the results...
  1332. // which happens in the case of wanting to use the Drupal pager, then do so
  1333. if ($options['return_sql'] == TRUE) {
  1334. return array('sql' => $sql, 'args' => $args);
  1335. }
  1336. // prepare the statement
  1337. if ($prepared) {
  1338. // if this is the first time we've run this query
  1339. // then we need to do the prepare, otherwise just execute
  1340. if ($options['is_prepared'] != TRUE) {
  1341. $status = tripal_core_chado_prepare($options['statement_name'], $psql, $idatatypes);
  1342. if (!$status) {
  1343. return FALSE;
  1344. }
  1345. }
  1346. $sql = "EXECUTE " . $options['statement_name'] . "(" . implode(", ", $itypes) . ")";
  1347. // WARNING: This call creates a memory leak: if you remove the $pvalues it doesn't
  1348. // do this. Got to find out what's causing this.
  1349. $resource = tripal_core_chado_execute_prepared($options['statement_name'], $sql, $pvalues);
  1350. }
  1351. else {
  1352. $resource = chado_query($sql, $args);
  1353. }
  1354. // format results into an array
  1355. $results = array();
  1356. while ($r = db_fetch_object($resource)) {
  1357. $results[] = $r;
  1358. }
  1359. if ($options['has_record']) {
  1360. return count($results);
  1361. }
  1362. return $results;
  1363. }
  1364. /**
  1365. * Gets the value of a foreign key relationship
  1366. *
  1367. * This function is used by tripal_core_chado_select, tripal_core_chado_insert,
  1368. * and tripal_core_chado_update to iterate through the associate array of
  1369. * values that gets passed to each of those routines. The values array
  1370. * is nested where foreign key contraints are used to specify a value that. See
  1371. * documentation for any of those functions for further information.
  1372. *
  1373. * @param $table_desc
  1374. * A table description for the table with the foreign key relationship to be identified generated by
  1375. * hook_chado_<table name>_schema()
  1376. * @param $field
  1377. * The field in the table that is the foreign key.
  1378. * @param $values
  1379. * An associative array containing the values
  1380. * @param $options
  1381. * An associative array of additional options where the key is the option
  1382. * and the value is the value of that option. These options are passed on to tripal_core_chado_select.
  1383. *
  1384. * Additional Options Include:
  1385. * - case_insensitive_columns
  1386. * An array of columns to do a case insensitive search on.
  1387. * - regex_columns
  1388. * An array of columns where the value passed in should be treated as a regular expression
  1389. *
  1390. * @return
  1391. * A string containg the results of the foreign key lookup, or FALSE if failed.
  1392. *
  1393. * Example usage:
  1394. * @code
  1395. *
  1396. * $values = array(
  1397. * 'genus' => 'Citrus',
  1398. * 'species' => 'sinensis',
  1399. * );
  1400. * $value = tripal_core_chado_get_foreign_key('feature', 'organism_id',$values);
  1401. *
  1402. * @endcode
  1403. * The above code selects a record from the feature table using the three fields
  1404. * that uniquely identify a feature. The $columns array simply lists the columns
  1405. * to select. The $values array is nested such that the organism is identified by
  1406. * way of the organism_id foreign key constraint by specifying the genus and
  1407. * species. The cvterm is also specified using its foreign key and the cv_id
  1408. * for the cvterm is nested as well.
  1409. *
  1410. * @ingroup tripal_chado_api
  1411. */
  1412. function tripal_core_chado_get_foreign_key($table_desc, $field, $values, $options = NULL) {
  1413. // set defaults for options. If we don't set defaults then
  1414. // we get memory leaks when we try to access the elements
  1415. if (!is_array($options)) {
  1416. $options = array();
  1417. }
  1418. if (!array_key_exists('case_insensitive_columns', $options)) {
  1419. $options['case_insensitive_columns'] = array();
  1420. }
  1421. if (!array_key_exists('regex_columns', $options)) {
  1422. $options['regex_columns'] = array();
  1423. }
  1424. // get the list of foreign keys for this table description and
  1425. // iterate through those until we find the one we're looking for
  1426. $fkeys = '';
  1427. if (array_key_exists('foreign keys', $table_desc)) {
  1428. $fkeys = $table_desc['foreign keys'];
  1429. }
  1430. if ($fkeys) {
  1431. foreach ($fkeys as $name => $def) {
  1432. if (is_array($def['table'])) {
  1433. //foreign key was described 2X
  1434. $message = "The foreign key " . $name . " was defined twice. Please check modules "
  1435. ."to determine if hook_chado_schema_<version>_" . $table_desc['table'] . "() was "
  1436. ."implemented and defined this foreign key when it wasn't supposed to. Modules "
  1437. ."this hook was implemented in: " . implode(', ',
  1438. module_implements("chado_" . $table_desc['table'] . "_schema")) . ".";
  1439. watchdog('tripal_core', $message);
  1440. drupal_set_message(check_plain($message), 'error');
  1441. continue;
  1442. }
  1443. $table = $def['table'];
  1444. $columns = $def['columns'];
  1445. // iterate through the columns of the foreign key relationship
  1446. foreach ($columns as $left => $right) {
  1447. // does the left column in the relationship match our field?
  1448. if (strcmp($field, $left) == 0) {
  1449. // the column name of the foreign key matches the field we want
  1450. // so this is the right relationship. Now we want to select
  1451. $select_cols = array($right);
  1452. $result = tripal_core_chado_select($table, $select_cols, $values, $options);
  1453. $fields = array();
  1454. if ($result and count($result) > 0) {
  1455. foreach ($result as $obj) {
  1456. $fields[] = $obj->$right;
  1457. }
  1458. return $fields;
  1459. }
  1460. }
  1461. }
  1462. }
  1463. }
  1464. else {
  1465. // TODO: what do we do if we get to this point and we have a fk
  1466. // relationship expected but we don't have any definition for one in the
  1467. // table schema??
  1468. $version = tripal_core_get_chado_version(TRUE);
  1469. $message = t("There is no foreign key relationship defined for " . $field . ".
  1470. To define a foreign key relationship, determine the table this foreign
  1471. key referrs to (<foreign table>) and then implement
  1472. hook_chado_chado_schema_v<version>_<foreign table>(). See
  1473. tripal_feature_chado_v1_2_schema_feature for an example. Chado version: $version");
  1474. watchdog('tripal_core', $message);
  1475. drupal_set_message(check_plain($message), 'error');
  1476. }
  1477. return array();
  1478. }
  1479. /**
  1480. * Generates an object containing the full details of a record(s) in chado.
  1481. *
  1482. * This differs from the objects returned by tripal_core_chado_select in so far as all foreign key
  1483. * relationships have been followed meaning you have more complete details. Thus this function
  1484. * should be used whenever you need a full variable and tripal_core_chado_select should be used if
  1485. * you only case about a few columns.
  1486. *
  1487. * @param $table
  1488. * The name of the base table to generate a variable for
  1489. * @param $values
  1490. * A select values array that selects the records you want from the base table
  1491. * (this has the same form as tripal_core_chado_select)
  1492. * @param $base_options
  1493. * An array containing options for the base table. For example, an
  1494. * option of 'order_by' may be used to sort results in the base table
  1495. * if more than one are returned. The options must be compatible with
  1496. * the options accepted by the tripal_core_chado_select() function.
  1497. * Additionally, These options are available for this function:
  1498. * -return_array:
  1499. * can be provided to force the function to always return an array. Default
  1500. * behavior is to return a single record if only one record exists or to return
  1501. * an array if multiple records exist.
  1502. * - include_fk:
  1503. * an array of FK relationships to fallow. By default, the
  1504. * tripal_core_chado_select function will follow all FK relationships but this
  1505. * may generate more queries then is desired. Provide an array specifying the
  1506. * fields to include. For example, if including the cvterm, cv and dbxref records
  1507. * for a property the following array would work:
  1508. * array('type_id' => array('cv_id' => 1, 'dbxref_id' => 1)).
  1509. * Typicall, to expadn a property, this function would also include the db record
  1510. * through the db_id foreign key with the dbxref and db tables, but becuase
  1511. * it is not included in the array it will not be included in the results.
  1512. * @return
  1513. * Either an object (if only one record was selected from the base table)
  1514. * or an array of objects (if more than one record was selected from the base table).
  1515. * If the option 'return_array' is provided the function always returns an array.
  1516. *
  1517. * Example Usage:
  1518. * @code
  1519. $values = array(
  1520. 'name' => 'Medtr4g030710'
  1521. );
  1522. $features = tripal_core_generate_chado_var('feature', $values);
  1523. * @endcode
  1524. * This will return an object if there is only one feature with the name Medtr4g030710 or it will
  1525. * return an array of feature objects if more than one feature has that name.
  1526. *
  1527. * Note to Module Designers: Fields can be excluded by default from these objects by implementing
  1528. * one of the following hooks:
  1529. * - hook_exclude_field_from_tablename_by_default (where tablename is the name of the table):
  1530. * This hook allows you to add fields to be excluded on a per table basis. Simply implement
  1531. * this hook to return an array of fields to be excluded. For example:
  1532. * @code
  1533. mymodule_exclude_field_from_feature_by_default() {
  1534. return array('residues' => TRUE);
  1535. }
  1536. * @endcode
  1537. * will ensure that feature.residues is ecluded from a feature object by default.
  1538. * - hook_exclude_type_by_default:
  1539. * This hook allows you to exclude fields from all tables that are of a given postgresql field
  1540. * type. Simply implement this hook to return an array of postgresql types mapped to criteria.
  1541. * Then all fields of that type where the criteria supplied returns TRUE will be excluded from
  1542. * any table. Tokens available in criteria are &gt;field_value&lt; and &gt;field_name&lt; . For example:
  1543. * @code
  1544. mymodule_exclude_type_by_default() {
  1545. return array('text' => 'length(&gt;field_value&lt; ) > 50');
  1546. }
  1547. * @endcode
  1548. * 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.
  1549. *
  1550. * @ingroup tripal_chado_api
  1551. */
  1552. function tripal_core_generate_chado_var($table, $values, $base_options = array()) {
  1553. $all = new stdClass();
  1554. $return_array = 0;
  1555. if (array_key_exists('return_array', $base_options)) {
  1556. $return_array = 1;
  1557. }
  1558. $include_fk = 0;
  1559. if (array_key_exists('include_fk', $base_options)) {
  1560. $include_fk = $base_options['include_fk'];
  1561. }
  1562. // get description for the current table----------------------------------------------------------
  1563. $table_desc = tripal_core_get_chado_table_schema($table);
  1564. if (!$table_desc or count($table_desc) == 0) {
  1565. watchdog('tripal_core', "tripal_core_generate_chado_var: The table '%table' has not been defined. ".
  1566. "and cannot be expanded. If this is a custom table, please add it using the Tripal ".
  1567. "custom table interface.", array('%table' => $table), WATCHDOG_ERROR);
  1568. if ($return_array) {
  1569. return array();
  1570. }
  1571. return FALSE;
  1572. }
  1573. $table_primary_key = $table_desc['primary key'][0];
  1574. $table_columns = array_keys($table_desc['fields']);
  1575. // Expandable fields without value needed for criteria--------------------------------------------
  1576. $all->expandable_fields = array();
  1577. if ($table_desc['referring_tables']) {
  1578. $all->expandable_tables = $table_desc['referring_tables'];
  1579. }
  1580. else {
  1581. $all->expandable_tables = array();
  1582. }
  1583. $all->expandable_nodes = array();
  1584. // Get fields to be removed by name.................................
  1585. $fields_to_remove = module_invoke_all('exclude_field_from_' . $table . '_by_default');
  1586. foreach ($fields_to_remove as $field_name => $criteria) {
  1587. //replace &gt;field_name&lt; with the current field name &
  1588. $criteria = preg_replace('/&gt;field_name&lt; /', $field_name, $criteria);
  1589. // if field_value needed we can't deal with this field yet
  1590. if (preg_match('/&gt;field_value&lt; /', $criteria)) {
  1591. break;
  1592. }
  1593. //if criteria then remove from query
  1594. // @coder-ignore: only module designers can populate $criteria -not security risk
  1595. $success = drupal_eval('<?php return ' . $criteria . '; ?>');
  1596. // watchdog('tripal_core',
  1597. // 'Evaluating criteria (%criteria) for field %field in tripal_core_generate_chado_var for %table evaluated to %success',
  1598. // array('%table' => $table, '%criteria'=>$criteria, '%field' => $field_name, '%success'=>$success),
  1599. // WATCHDOG_NOTICE
  1600. // );
  1601. if ($success) {
  1602. unset($table_columns[array_search($field_name, $table_columns)]);
  1603. unset($fields_to_remove[$field_name]);
  1604. $all->expandable_fields[] = $table . '.' . $field_name;
  1605. }
  1606. }
  1607. //Get fields to be removed by type................................
  1608. $types_to_remove = module_invoke_all('exclude_type_by_default');
  1609. $field_types = array();
  1610. foreach ($table_desc['fields'] as $field_name => $field_array) {
  1611. $field_types[$field_array['type']][] = $field_name;
  1612. }
  1613. foreach ($types_to_remove as $field_type => $criteria) {
  1614. // if there are fields of that type to remove
  1615. if (is_array($field_types[$field_type])) {
  1616. //replace &gt;field_name&lt; with the current field name &
  1617. $criteria = preg_replace('/&gt;field_name&lt; /', $field_name, $criteria);
  1618. foreach ($field_types[$field_type] as $field_name) {
  1619. // if field_value needed we can't deal with this field yet
  1620. if (preg_match('/&gt;field_value&lt; /', $criteria)) {
  1621. $fields_to_remove[$field_name] = $criteria;
  1622. continue;
  1623. }
  1624. // if field_value needed we can't deal with this field yet
  1625. if (preg_match('/&gt;field_value&lt; /', $criteria)) {
  1626. break;
  1627. }
  1628. //if criteria then remove from query
  1629. // @coder-ignore: only module designers can populate $criteria -not security risk
  1630. $success = drupal_eval('<?php return ' . $criteria . '; ?>');
  1631. // watchdog('tripal_core',
  1632. // 'Evaluating criteria (%criteria) for field %field of $type in tripal_core_generate_chado_var for %table evaluated to %success',
  1633. // array('%table'=>$table, '%criteria'=>$criteria, '%field'=>$field_name, '%type'=>$field_type, '%success'=>$success),
  1634. // WATCHDOG_NOTICE
  1635. // );
  1636. if ($success) {
  1637. unset($table_columns[array_search($field_name, $table_columns)]);
  1638. $all->expandable_fields[] = $table . '.' . $field_name;
  1639. }
  1640. } //end of foreach field of that type
  1641. }
  1642. } //end of foreach type to be removed
  1643. // get the values for the record in the current table---------------------------------------------
  1644. $results = tripal_core_chado_select($table, $table_columns, $values, $base_options);
  1645. if ($results) {
  1646. foreach ($results as $key => $object) {
  1647. // Add empty expandable_x arrays
  1648. $object->expandable_fields = $all->expandable_fields;
  1649. $object->expandable_tables = $all->expandable_tables;
  1650. $object->expandable_nodes = $all->expandable_nodes;
  1651. // add curent table
  1652. $object->tablename = $table;
  1653. // check if the current table maps to a node type-----------------------------------------------
  1654. // if this table is connected to a node there will be a chado_tablename table in drupal
  1655. if (db_table_exists('chado_' . $table)) {
  1656. // that has a foreign key to this one ($table_desc['primary key'][0]
  1657. // and to the node table (nid)
  1658. $sql = "SELECT %s, nid FROM {chado_%s} WHERE %s=%d";
  1659. $mapping = db_fetch_object(db_query($sql, $table_primary_key, $table,
  1660. $table_primary_key, $object->{$table_primary_key}));
  1661. if ($mapping->{$table_primary_key}) {
  1662. $object->nid = $mapping->nid;
  1663. $object->expandable_nodes[] = $table;
  1664. }
  1665. }
  1666. // remove any fields where criteria need to be evalulated---------------------------------------
  1667. foreach ($fields_to_remove as $field_name => $criteria) {
  1668. if (!isset($object->{$field_name})) {
  1669. break;
  1670. }
  1671. $criteria = preg_replace('/&gt;field_value&lt; /', $object->{$field_name}, $criteria);
  1672. //if criteria then remove from query
  1673. // @coder-ignore: only module designers can populate $criteria -not security risk
  1674. $success = drupal_eval('<?php return ' . $criteria . '; ?>');
  1675. // watchdog('tripal_core',
  1676. // 'Evaluating criteria (%criteria) for field %field in tripal_core_generate_chado_var for %table evaluated to %success',
  1677. // array('%table' => $table, '%criteria'=>$criteria, '%field' => $field_name, '%success'=>$success),
  1678. // WATCHDOG_NOTICE
  1679. // );
  1680. if ($success) {
  1681. unset($object->{$field_name});
  1682. $object->expandable_fields[] = $table . '.' . $field_name;
  1683. }
  1684. }
  1685. // recursively follow foreign key relationships nesting objects as we go------------------------
  1686. if ($table_desc['foreign keys']) {
  1687. foreach ($table_desc['foreign keys'] as $foreign_key_array) {
  1688. $foreign_table = $foreign_key_array['table'];
  1689. foreach ($foreign_key_array['columns'] as $foreign_key => $primary_key) {
  1690. // Note: Foreign key is the field in the current table whereas primary_key is the field in
  1691. // the table referenced by the foreign key
  1692. //Dont do anything if the foreign key is empty
  1693. if (empty($object->{$foreign_key})) {
  1694. continue;
  1695. }
  1696. if ($include_fk) {
  1697. // don't recurse if the callee has supplied an $fk_include list and this
  1698. // FK table is not in the list.
  1699. if (is_array($include_fk) and !array_key_exists($foreign_key, $include_fk)) {
  1700. continue;
  1701. }
  1702. // if we have the option but it is not an array then we don't recurse any furutehr
  1703. if (!is_array($include_fk)) {
  1704. continue;
  1705. }
  1706. }
  1707. // get the record from the foreign table
  1708. $foreign_values = array($primary_key => $object->{$foreign_key});
  1709. $options = array();
  1710. if (is_array($include_fk)) {
  1711. $options['include_fk'] = $include_fk[$foreign_key];
  1712. }
  1713. $foreign_object = tripal_core_generate_chado_var($foreign_table, $foreign_values, $options);
  1714. // add the foreign record to the current object in a nested manner
  1715. $object->{$foreign_key} = $foreign_object;
  1716. // Flatten expandable_x arrays so only in the bottom object
  1717. if (is_array($object->{$foreign_key}->expandable_fields)) {
  1718. $object->expandable_fields = array_merge(
  1719. $object->expandable_fields,
  1720. $object->{$foreign_key}->expandable_fields
  1721. );
  1722. unset($object->{$foreign_key}->expandable_fields);
  1723. }
  1724. if (is_array($object->{$foreign_key}->expandable_tables)) {
  1725. $object->expandable_tables = array_merge(
  1726. $object->expandable_tables,
  1727. $object->{$foreign_key}->expandable_tables
  1728. );
  1729. unset($object->{$foreign_key}->expandable_tables);
  1730. }
  1731. if (is_array($object->{$foreign_key}->expandable_nodes)) {
  1732. $object->expandable_nodes = array_merge(
  1733. $object->expandable_nodes,
  1734. $object->{$foreign_key}->expandable_nodes
  1735. );
  1736. unset($object->{$foreign_key}->expandable_nodes);
  1737. }
  1738. }
  1739. }
  1740. $results[$key] = $object;
  1741. }
  1742. }
  1743. }
  1744. // check only one result returned
  1745. if (!$return_array) {
  1746. if (sizeof($results) == 1) {
  1747. // add results to object
  1748. return $results[0];
  1749. }
  1750. elseif (!empty($results)) {
  1751. return $results;
  1752. }
  1753. else {
  1754. // no results returned
  1755. }
  1756. }
  1757. // the caller has requested results are always returned as
  1758. // an array
  1759. else {
  1760. if (!$results) {
  1761. return array();
  1762. }
  1763. else {
  1764. return $results;
  1765. }
  1766. }
  1767. }
  1768. /**
  1769. * Retrieves fields/tables/nodes that were excluded by default from a variable and adds them
  1770. *
  1771. * This function exists to allow tripal_core_generate_chado_var() to excldue some
  1772. * fields/tables/nodes from the default form of a variable without making it extremely difficult for
  1773. * the tripal admin to get at these variables if he/she wants them.
  1774. *
  1775. * @param $object
  1776. * This must be an object generated using tripal_core_generate_chado_var()
  1777. * @param $type
  1778. * Must be one of 'field', 'table', 'node'. Indicates what is being expanded.
  1779. * @param $to_expand
  1780. * The name of the field/table/node to be expanded
  1781. * @param $table_options
  1782. * An array containing options for the base table. For example, an
  1783. * option of 'order_by' may be used to sort results in the base table
  1784. * if more than one are returned. The options must be compatible with
  1785. * the options accepted by the tripal_core_chado_select() function.
  1786. * Additionally, The option 'return_array' can be provided to force
  1787. * the function to expand tables as an array. Default behavior is to expand
  1788. * a table as single record if only one record exists or to expand as an array if
  1789. * multiple records exist.
  1790. * @return
  1791. * A chado object supplemented with the field/table/node requested to be expanded.
  1792. * If the type is a table and it has already been expanded no changes is made to the
  1793. * returned object
  1794. *
  1795. * Example Usage:
  1796. * @code
  1797. // Get a chado object to be expanded
  1798. $values = array(
  1799. 'name' => 'Medtr4g030710'
  1800. );
  1801. $features = tripal_core_generate_chado_var('feature', $values);
  1802. // Expand the organism node
  1803. $feature = tripal_core_expand_chado_vars($feature, 'node', 'organism');
  1804. // Expand the feature.residues field
  1805. $feature = tripal_core_expand_chado_vars($feature, 'field', 'feature.residues');
  1806. // Expand the feature properties (featureprop table)
  1807. $feature = tripal_core_expand_chado_vars($feature, 'table', 'featureprop');
  1808. * @endcode
  1809. *
  1810. * @ingroup tripal_chado_api
  1811. */
  1812. function tripal_core_expand_chado_vars($object, $type, $to_expand, $table_options = array()) {
  1813. $base_table = $object->tablename;
  1814. // check to see if we are expanding an array of objects
  1815. if (is_array($object)) {
  1816. foreach ($object as $index => $o) {
  1817. $object[$index] = tripal_core_expand_chado_vars($o, $type, $to_expand);
  1818. }
  1819. return $object;
  1820. }
  1821. switch ($type) {
  1822. case "field": //--------------------------------------------------------------------------------
  1823. if (preg_match('/(\w+)\.(\w+)/', $to_expand, $matches)) {
  1824. $tablename = $matches[1];
  1825. $fieldname = $matches[2];
  1826. $table_desc = tripal_core_get_chado_table_schema($tablename);
  1827. $values = array();
  1828. foreach ($table_desc['primary key'] as $key) {
  1829. $values[$key] = $object->{$key};
  1830. }
  1831. if ($base_table == $tablename) {
  1832. //get the field
  1833. $results = tripal_core_chado_select($tablename, array($fieldname), $values);
  1834. $object->{$fieldname} = $results[0]->{$fieldname};
  1835. $object->expanded = $to_expand;
  1836. }
  1837. else {
  1838. //We need to recurse -the field is in a nested object
  1839. foreach ((array) $object as $field_name => $field_value) {
  1840. if (is_object($field_value)) {
  1841. $object->{$field_name} = tripal_core_expand_chado_vars(
  1842. $field_value,
  1843. 'field',
  1844. $to_expand
  1845. );
  1846. }
  1847. } //end of for each field in the current object
  1848. }
  1849. }
  1850. else {
  1851. watchdog('tripal_core', 'tripal_core_expand_chado_vars: Field (%field) not in the right format. ".
  1852. "It should be <tablename>.<fieldname>', WATCHDOG_ERROR);
  1853. }
  1854. break;
  1855. case "table": //--------------------------------------------------------------------------------
  1856. $foreign_table = $to_expand;
  1857. // don't expand the table it already is expanded
  1858. if (array_key_exists($foreign_table, $object)) {
  1859. return $object;
  1860. }
  1861. $foreign_table_desc = tripal_core_get_chado_table_schema($foreign_table);
  1862. // If it's connected to the base table
  1863. if ($foreign_table_desc['foreign keys'][$base_table]) {
  1864. foreach ($foreign_table_desc['foreign keys'][$base_table]['columns'] as $left => $right) {
  1865. if (!$object->{$right}) {
  1866. continue;
  1867. }
  1868. if (is_array($values)) {
  1869. $values = array_merge($values, array($left => $object->{$right}) );
  1870. }
  1871. else {
  1872. $values = array($left => $object->{$right});
  1873. }
  1874. // if a prepared statement is provide then generate a new name
  1875. $new_options = $table_options;
  1876. if (array_key_exists('statement_name', $table_options)) {
  1877. $new_options['statement_name'] = "exp_" . $foreign_table . "_" . substr($left, 0, 2) . substr($right, 0, 2);
  1878. }
  1879. $foreign_object = tripal_core_generate_chado_var($foreign_table, array($left => $object->{$right}), $new_options);
  1880. if ($foreign_object) {
  1881. // in the case where the foreign key relationships exists more
  1882. // than once with the same table we want to alter the
  1883. // array structure
  1884. if (count($foreign_table_desc['foreign keys'][$base_table]['columns']) > 1) {
  1885. if (!is_object($object->{$foreign_table})) {
  1886. $object->{$foreign_table} = new stdClass();
  1887. }
  1888. $object->{$foreign_table}->{$left} = $foreign_object;
  1889. $object->expanded = $to_expand;
  1890. }
  1891. else {
  1892. $object->{$foreign_table} = $foreign_object;
  1893. $object->expanded = $to_expand;
  1894. }
  1895. }
  1896. // if the object returned is NULL then handle that
  1897. else {
  1898. if (count($foreign_table_desc['foreign keys'][$base_table]['columns']) > 1) {
  1899. $object->{$foreign_table}->{$left} = NULL;
  1900. }
  1901. else {
  1902. $object->{$foreign_table} = NULL;
  1903. }
  1904. }
  1905. }
  1906. }
  1907. else {
  1908. // We need to recurse -the table has a relationship to one of the nested objects
  1909. $did_expansion = 0;
  1910. foreach ((array) $object as $field_name => $field_value) {
  1911. // if we have a nested object ->expand the table in it
  1912. if (is_object($field_value)) {
  1913. $did_expansion = 1;
  1914. $object->{$field_name} = tripal_core_expand_chado_vars($field_value, 'table', $foreign_table);
  1915. }
  1916. }
  1917. // if we did not expand this table we should return a message that the foreign table
  1918. // could not be expanded
  1919. if (!$did_expansion) {
  1920. watchdog('tripal_core', 'tripal_core_expand_chado_vars: Could not expand table, %table. It is ',
  1921. 'not in a foreign key relationship with the base object nor with any other expanded table. ' .
  1922. 'Check the table definition to ensure that a proper foreign key relationship is present.',
  1923. array('%table' => $foreign_table), WATCHDOG_ERROR);
  1924. }
  1925. }
  1926. break;
  1927. case "node": //---------------------------------------------------------------------------------
  1928. //if the node to be expanded is for our base table, then just expand it
  1929. if ($object->tablename == $to_expand) {
  1930. $node = node_load($object->nid);
  1931. if ($node) {
  1932. $object->expanded = $to_expand;
  1933. $node->expandable_fields = $object->expandable_fields;
  1934. unset($object->expandable_fields);
  1935. $node->expandable_tables = $object->expandable_tables;
  1936. unset($object->expandable_tables);
  1937. $node->expandable_nodes = $object->expandable_nodes;
  1938. unset($object->expandable_nodes);
  1939. $node->{$base_table} = $object;
  1940. $object = $node;
  1941. }
  1942. else {
  1943. watchdog('tripal_core', 'tripal_core_expand_chado_vars: No node matches the nid (%nid) supplied.',
  1944. array('%nid' => $object->nid), WATCHDOG_ERROR);
  1945. } //end of if node
  1946. }
  1947. else {
  1948. //We need to recurse -the node to expand is one of the nested objects
  1949. foreach ((array) $object as $field_name => $field_value) {
  1950. if (is_object($field_value)) {
  1951. $object->{$field_name} = tripal_core_expand_chado_vars(
  1952. $field_value,
  1953. 'node',
  1954. $to_expand
  1955. );
  1956. }
  1957. } //end of for each field in the current object
  1958. }
  1959. break;
  1960. default:
  1961. watchdog('tripal_core', 'tripal_core_expand_chado_vars: Unrecognized type (%type). Should be one of "field", "table", "node".',
  1962. array('%type' => $type), WATCHDOG_ERROR);
  1963. return FALSE;
  1964. }
  1965. //move extended array downwards-------------------------------------------------------------------
  1966. if (!$object->expanded) {
  1967. //if there's no extended field then go hunting for it
  1968. foreach ( (array)$object as $field_name => $field_value) {
  1969. if (is_object($field_value)) {
  1970. if (isset($field_value->expanded)) {
  1971. $object->expanded = $field_value->expanded;
  1972. unset($field_value->expanded);
  1973. }
  1974. }
  1975. }
  1976. }
  1977. //try again becasue now we might have moved it down
  1978. if ($object->expanded) {
  1979. $expandable_name = 'expandable_' . $type . 's';
  1980. if ($object->{$expandable_name}) {
  1981. $key_to_remove = array_search($object->expanded, $object->{$expandable_name});
  1982. unset($object->{$expandable_name}[$key_to_remove]);
  1983. unset($object->expanded);
  1984. }
  1985. else {
  1986. // if there is an expandable array then we've reached the base object
  1987. // if we get here and don't have anything expanded then something went wrong
  1988. // watchdog(
  1989. // 'tripal_core',
  1990. // 'tripal_core_expand_chado_vars: Unable to expand the %type %to_expand',
  1991. // array('%type'=>$type, '%to_expand'=>$to_expand),
  1992. // WATCHDOG_ERROR
  1993. // );
  1994. } //end of it we've reached the base object
  1995. }
  1996. return $object;
  1997. }
  1998. /**
  1999. * Implements hook_exclude_type_by_default()
  2000. *
  2001. * This hooks allows fields of a specified type that match a specified criteria to be excluded by
  2002. * default from any table when tripal_core_generate_chado_var() is called. Keep in mind that if
  2003. * fields are excluded by default they can always be expanded at a later date using
  2004. * tripal_core_expand_chado_vars().
  2005. *
  2006. * Criteria are php strings that evaluate to either TRUE or FALSE. These strings are evaluated using
  2007. * drupal_eval() which suppresses syntax errors and throws watchdog entries of type php. There are
  2008. * also watchdog entries of type tripal_core stating the exact criteria evaluated. Criteria can
  2009. * contain the following tokens:
  2010. * - &gt;field_name&lt;
  2011. * Replaced by the name of the field to be excluded
  2012. * - &gt;field_value&lt;
  2013. * Replaced by the value of the field in the current record
  2014. * Also keep in mind that if your criteria doesn't contain the &gt;field_value&lt; token then it will be
  2015. * evaluated before the query is executed and if the field is excluded it won't be included in the
  2016. * query.
  2017. *
  2018. * @return
  2019. * An array of type => criteria where the type is excluded if the criteria evaluates to TRUE
  2020. *
  2021. * @ingroup tripal_chado_api
  2022. */
  2023. function tripal_core_exclude_type_by_default() {
  2024. return array('text' => "strlen('&gt;field_value&lt; ') > 100");
  2025. }
  2026. /**
  2027. * Implements hook_exclude_field_from_<tablename>_by_default()
  2028. *
  2029. * This hooks allows fields from a specified table that match a specified criteria to be excluded by
  2030. * default from any table when tripal_core_generate_chado_var() is called. Keep in mind that if
  2031. * fields are excluded by default they can always be expanded at a later date using
  2032. * tripal_core_expand_chado_vars().
  2033. *
  2034. * Criteria are php strings that evaluate to either TRUE or FALSE. These strings are evaluated using
  2035. * drupal_eval() which suppresses syntax errors and throws watchdog entries of type php. There are
  2036. * also watchdog entries of type tripal_core stating the exact criteria evaluated. Criteria can
  2037. * contain the following tokens:
  2038. * - &gt;field_name&lt;
  2039. * Replaced by the name of the field to be excluded
  2040. * - &gt;field_value&lt;
  2041. * Replaced by the value of the field in the current record
  2042. * Also keep in mind that if your criteria doesn't contain the &gt;field_value&lt; token then it will be
  2043. * evaluated before the query is executed and if the field is excluded it won't be included in the
  2044. * query.
  2045. *
  2046. * @return
  2047. * An array of type => criteria where the type is excluded if the criteria evaluates to TRUE
  2048. *
  2049. * @ingroup tripal_chado_api
  2050. */
  2051. function tripal_core_exclude_field_from_feature_by_default() {
  2052. return array();
  2053. }
  2054. /**
  2055. * Use this function instead of db_query() to avoid switching databases
  2056. * when making query to the chado database
  2057. *
  2058. * Will use a chado persistent connection if it already exists
  2059. *
  2060. * @param $sql
  2061. * The sql statement to execute
  2062. *
  2063. * @returns
  2064. * A database query result resource or FALSE if the query was not
  2065. * executed correctly
  2066. */
  2067. function chado_query($sql) {
  2068. $args = func_get_args();
  2069. array_shift($args); // remove the $sql from the argument list
  2070. $sql = db_prefix_tables($sql);
  2071. if (isset($args[0]) and is_array($args[0])) { // 'All arguments in one array' syntax
  2072. $args = $args[0];
  2073. }
  2074. _db_query_callback($args, TRUE);
  2075. $sql = preg_replace_callback(DB_QUERY_REGEXP, '_db_query_callback', $sql);
  2076. // Execute the query on the chado database/schema
  2077. // Use the persistent chado connection if it already exists
  2078. $persistent_connection = variable_get('tripal_persistent_chado', NULL);
  2079. if ($persistent_connection) {
  2080. $query = $sql;
  2081. // Duplicate the _db_query code in order to ensure that the drupal
  2082. // $active_db variable is never touched
  2083. // thus changed $active_db to $persistent_connection
  2084. // START COPY FROM _db_query in database.pgsql.inc
  2085. if (variable_get('dev_query', 0)) {
  2086. list($usec, $sec) = explode(' ', microtime());
  2087. $timer = (float) $usec + (float) $sec;
  2088. }
  2089. $previous_db = tripal_db_set_active('chado');
  2090. $last_result = pg_query($persistent_connection, $query);
  2091. tripal_db_set_active($previous_db);
  2092. if (variable_get('dev_query', 0)) {
  2093. $bt = debug_backtrace();
  2094. $query = $bt[2]['function'] . "\n" . $query;
  2095. list($usec, $sec) = explode(' ', microtime());
  2096. $stop = (float) $usec + (float) $sec;
  2097. $diff = $stop - $timer;
  2098. $queries[] = array($query, $diff);
  2099. }
  2100. if ($last_result !== FALSE) {
  2101. return $last_result;
  2102. }
  2103. else {
  2104. // Indicate to drupal_error_handler that this is a database error.
  2105. ${DB_ERROR} = TRUE;
  2106. trigger_error(check_plain(pg_last_error($persistent_connection) . "\nquery: " . $query), E_USER_WARNING);
  2107. return FALSE;
  2108. }
  2109. // END COPY FROM _db_query in database.pgsql.inc
  2110. }
  2111. else {
  2112. $previous_db = tripal_db_set_active('chado');
  2113. $results = _db_query($sql);
  2114. tripal_db_set_active($previous_db);
  2115. }
  2116. return $results;
  2117. }
  2118. /**
  2119. * Get chado id for a node. E.g, if you want to get 'analysis_id' from the
  2120. * 'analysis' table for a synced 'chado_analysis' node, use:
  2121. * $analysis_id = chado_get_id_for_node ('analysis', $node)
  2122. * Likewise,
  2123. * $organism_id = chado_get_id_for_node ('organism', $node)
  2124. * $feature_id = chado_get_id_for_node ('feature', $node)
  2125. */
  2126. function chado_get_id_for_node($table, $node) {
  2127. return db_result(db_query("SELECT %s_id FROM {chado_%s} WHERE nid = %d", $table, $table, $node->nid));
  2128. }
  2129. /**
  2130. * Get node id for a chado feature/organism/analysis. E.g, if you want to
  2131. * get the node id for an analysis, use:
  2132. * $nid = chado_get_node_id ('analysis', $analysis_id)
  2133. * Likewise,
  2134. * $nid = chado_get_node_id ('organism', $organism_id)
  2135. * $nid = chado_get_node_id ('feature', $feature_id)
  2136. */
  2137. function chado_get_node_id($table, $id) {
  2138. return db_result(db_query("SELECT nid FROM {chado_%s} WHERE %s_id = %d", $table, $table, $id));
  2139. }
  2140. /**
  2141. * Retrieve a property for a given base table record
  2142. *
  2143. * @param $basetable
  2144. * The base table for which the property should be retrieved. Thus to retrieve a property
  2145. * for a feature the basetable=feature and property is retrieved from featureprop
  2146. * @param $record_id
  2147. * The foriegn key field of the base table. This should be in integer.
  2148. * @param $property
  2149. * The cvterm name describing the type of properties to be retrieved
  2150. * @param $cv_name
  2151. * The name of the cv that the above cvterm is part of
  2152. *
  2153. * @return
  2154. * An array in the same format as that generated by the function
  2155. * tripal_core_generate_chado_var(). If only one record is returned it
  2156. * is a single object. If more than one record is returned then it is an array
  2157. * of objects
  2158. *
  2159. * @ingroup tripal_chado_api
  2160. */
  2161. function tripal_core_get_property($basetable, $record_id, $property, $cv_name) {
  2162. // get the foreign key for this property table
  2163. $table_desc = tripal_core_get_chado_table_schema($basetable . 'prop');
  2164. $fkcol = key($table_desc['foreign keys'][$basetable]['columns']);
  2165. // construct the array of values to be selected
  2166. $values = array(
  2167. $fkcol => $record_id,
  2168. 'type_id' => array(
  2169. 'cv_id' => array(
  2170. 'name' => $cv_name,
  2171. ),
  2172. 'name' => $property,
  2173. 'is_obsolete' => 0
  2174. ),
  2175. );
  2176. $results = tripal_core_generate_chado_var($basetable . 'prop', $values);
  2177. $results = tripal_core_expand_chado_vars($results, 'field', $basetable . 'prop.value');
  2178. return $results;
  2179. }
  2180. /**
  2181. * Insert a property for a given base table. By default if the property already
  2182. * exists a new property is added with the next available rank. If
  2183. * $update_if_present argument is specified then the record will be updated if it
  2184. * exists rather than adding a new property.
  2185. *
  2186. * @param $basetable
  2187. * The base table for which the property should be inserted. Thus to insert a property
  2188. * for a feature the basetable=feature and property is inserted into featureprop
  2189. * @param $record_id
  2190. * The foriegn key field of the base table. This should be in integer.
  2191. * @param $property
  2192. * The cvterm name describing the type of properties to be inserted
  2193. * @param $cv_name
  2194. * The name of the cv that the above cvterm is part of
  2195. * @param $value
  2196. * The value of the property to be inserted (can be empty)
  2197. * @param $update_if_present
  2198. * A boolean indicating whether an existing record should be updated. If the
  2199. * property already exists and this value is not specified or is zero then
  2200. * a new property will be added with the next largest rank.
  2201. *
  2202. * @return
  2203. * Return True on Insert/Update and False otherwise
  2204. *
  2205. * @ingroup tripal_chado_api
  2206. */
  2207. function tripal_core_insert_property($basetable, $record_id, $property,
  2208. $cv_name, $value, $update_if_present = 0) {
  2209. // first see if the property already exists, if the user want's to update
  2210. // then we can do that, but otherwise we want to increment the rank and
  2211. // insert
  2212. $props = tripal_core_get_property($basetable, $record_id, $property, $cv_name);
  2213. if (!is_array($props)) {
  2214. $props = array($props);
  2215. }
  2216. $rank = 0;
  2217. if (count($props) > 0) {
  2218. if ($update_if_present) {
  2219. return tripal_core_update_property($basetable, $record_id, $property, $cv_name, $value);
  2220. }
  2221. else {
  2222. // iterate through the properties returned and check to see if the
  2223. // property with this value already exists if not, get the largest rank
  2224. // and insert the same property but with this new value
  2225. foreach ($props as $p) {
  2226. if ($p->rank > $rank) {
  2227. $rank = $p->rank;
  2228. }
  2229. if (strcmp($p->value, $value) == 0) {
  2230. return TRUE;
  2231. }
  2232. }
  2233. // now add 1 to the rank
  2234. $rank++;
  2235. }
  2236. }
  2237. else {
  2238. watchdog('tripal_core', "Cannot find property '!prop_name'.",
  2239. array('!prop_name' => $property), WATCHDOG_ERROR);
  2240. }
  2241. // get the foreign key for this property table
  2242. $table_desc = tripal_core_get_chado_table_schema($basetable . 'prop');
  2243. $fkcol = key($table_desc['foreign keys'][$basetable]['columns']);
  2244. // construct the array of values to be inserted
  2245. $values = array(
  2246. $fkcol => $record_id,
  2247. 'type_id' => array(
  2248. 'cv_id' => array(
  2249. 'name' => $cv_name,
  2250. ),
  2251. 'name' => $property,
  2252. 'is_obsolete' => 0
  2253. ),
  2254. 'value' => $value,
  2255. 'rank' => $rank,
  2256. );
  2257. return tripal_core_chado_insert($basetable . 'prop', $values);
  2258. }
  2259. /**
  2260. * Update a property for a given base table record and property name. This
  2261. * function should be used only if one record of the property will be present.
  2262. * If the property name can have multiple entries (with increasing rank) then
  2263. * use the function named tripal_core_update_property_by_id
  2264. *
  2265. * @param $basetable
  2266. * The base table for which the property should be updated. The property table
  2267. * is constructed using a combination of the base table name and the suffix
  2268. * 'prop' (e.g. basetable = feature then property tabie is featureprop).
  2269. * @param $record_id
  2270. * The foreign key of the basetable to update a property for. This should be in integer.
  2271. * For example, if the basetable is 'feature' then the $record_id should be the feature_id
  2272. * @param $property
  2273. * The cvterm name of property to be updated
  2274. * @param $cv_name
  2275. * The name of the cv that the above cvterm is part of
  2276. * @param $value
  2277. * The value of the property to be inserted (can be empty)
  2278. * @param $insert_if_missing
  2279. * A boolean indicating whether a record should be inserted if one doesn't exist to update
  2280. *
  2281. * Note: The property to be updated is select via the unique combination of $record_id and
  2282. * $property and then it is updated with the supplied value
  2283. *
  2284. * @return
  2285. * Return True on Update/Insert and False otherwise
  2286. *
  2287. * @ingroup tripal_chado_api
  2288. */
  2289. function tripal_core_update_property($basetable, $record_id, $property,
  2290. $cv_name, $value, $insert_if_missing = 0) {
  2291. // first see if the property is missing (we can't update a missing property
  2292. $prop = tripal_core_get_property($basetable, $record_id, $property, $cv_name);
  2293. if (count($prop)==0) {
  2294. if ($insert_if_missing) {
  2295. return tripal_core_insert_property($basetable, $record_id, $property, $cv_name, $value);
  2296. }
  2297. else {
  2298. return FALSE;
  2299. }
  2300. }
  2301. // get the foreign key for this property table
  2302. $table_desc = tripal_core_get_chado_table_schema($basetable . 'prop');
  2303. $fkcol = key($table_desc['foreign keys'][$basetable]['columns']);
  2304. // construct the array that will match the exact record to update
  2305. $match = array(
  2306. $fkcol => $record_id,
  2307. 'type_id' => array(
  2308. 'cv_id' => array(
  2309. 'name' => $cv_name,
  2310. ),
  2311. 'name' => $property,
  2312. ),
  2313. );
  2314. // construct the array of values to be updated
  2315. $values = array(
  2316. 'value' => $value,
  2317. );
  2318. return tripal_core_chado_update($basetable . 'prop', $match, $values);
  2319. }
  2320. /**
  2321. * Update a property for a given base table record. This function should be
  2322. * used if multiple records of the same property will be present. Also, use this
  2323. * function to change the property name of an existing property.
  2324. *
  2325. * @param $basetable
  2326. * The base table for which the property should be updated. The property table
  2327. * is constructed using a combination of the base table name and the suffix
  2328. * 'prop' (e.g. basetable = feature then property tabie is featureprop).
  2329. * @param $record_id
  2330. * The primary key of the base table. This should be in integer.
  2331. * For example, if the basetable is 'feature' then the $record_id should be the featureprop_id
  2332. * @param $property
  2333. * The cvterm name of property to be updated
  2334. * @param $cv_name
  2335. * The name of the cv that the above cvterm is part of
  2336. * @param $value
  2337. * The value of the property to be inserted (can be empty)
  2338. *
  2339. * @return
  2340. * Return True on Update/Insert and False otherwise
  2341. *
  2342. * @ingroup tripal_chado_api
  2343. */
  2344. function tripal_core_update_property_by_id($basetable, $record_id, $property,
  2345. $cv_name, $value) {
  2346. // get the primary key for this property table
  2347. $table_desc = tripal_core_get_chado_table_schema($basetable . 'prop');
  2348. $pkcol = $table_desc['primary key'][0];
  2349. // construct the array that will match the exact record to update
  2350. $match = array(
  2351. $pkcol => $record_id,
  2352. );
  2353. // construct the array of values to be updated
  2354. $values = array(
  2355. 'type_id' => array(
  2356. 'cv_id' => array(
  2357. 'name' => $cv_name,
  2358. ),
  2359. 'name' => $property,
  2360. ),
  2361. 'value' => $value,
  2362. );
  2363. return tripal_core_chado_update($basetable . 'prop', $match, $values);
  2364. }
  2365. /**
  2366. * Deletes a property for a given base table record using the property name
  2367. *
  2368. * @param $basetable
  2369. * The base table for which the property should be deleted. Thus to deleted a property
  2370. * for a feature the basetable=feature and property is deleted from featureprop
  2371. * @param $record_id
  2372. * The primary key of the basetable to delete a property for. This should be in integer.
  2373. * @param $property
  2374. * The cvterm name describing the type of property to be deleted
  2375. * @param $cv_name
  2376. * The name of the cv that the above cvterm is part of
  2377. *
  2378. * Note: The property to be deleted is select via the unique combination of $record_id and $property
  2379. *
  2380. * @return
  2381. * Return True on Delete and False otherwise
  2382. *
  2383. * @ingroup tripal_chado_api
  2384. */
  2385. function tripal_core_delete_property($basetable, $record_id, $property, $cv_name) {
  2386. // get the foreign key for this property table
  2387. $table_desc = tripal_core_get_chado_table_schema($basetable . 'prop');
  2388. $fkcol = key($table_desc['foreign keys'][$basetable]['columns']);
  2389. // construct the array that will match the exact record to update
  2390. $match = array(
  2391. $fkcol => $record_id,
  2392. 'type_id' => array(
  2393. 'cv_id' => array(
  2394. 'name' => $cv_name,
  2395. ),
  2396. 'name' => $property,
  2397. ),
  2398. );
  2399. return tripal_core_chado_delete($basetable . 'prop', $match);
  2400. }
  2401. /**
  2402. * Deletes a property using the property ID
  2403. *
  2404. * @param $basetable
  2405. * The base table for which the property should be deleted. Thus to deleted a property
  2406. * for a feature the basetable=feature and property is deleted from featureprop
  2407. * @param $record_id
  2408. * The primary key of the basetable to delete a property for. This should be in integer.
  2409. *
  2410. * @return
  2411. * Return True on Delete and False otherwise
  2412. *
  2413. * @ingroup tripal_chado_api
  2414. */
  2415. function tripal_core_delete_property_by_id($basetable, $record_id) {
  2416. // get the foreign key for this property table
  2417. $table_desc = tripal_core_get_chado_table_schema($basetable . 'prop');
  2418. $pkcol = $table_desc['primary key'][0];
  2419. // construct the array that will match the exact record to update
  2420. $match = array(
  2421. $pkcol => $record_id,
  2422. );
  2423. return tripal_core_chado_delete($basetable . 'prop', $match);
  2424. }
  2425. /**
  2426. * This function is typically used in the '.install' file for a Tripal module
  2427. * Each module should call this function during installation to create
  2428. * the module data directory which is sites/default/files/tripal/[module_name]
  2429. * for default Drupal settings. This directory can then be used by the module
  2430. * for storing files.
  2431. *
  2432. * @param $module_name
  2433. * the name of the module being installed.
  2434. *
  2435. * @returns
  2436. * nothing
  2437. *
  2438. * @ingroup tripal_files_api
  2439. */
  2440. function tripal_create_moddir($module_name) {
  2441. // make the data directory for this module
  2442. $data_dir = file_directory_path() . "/tripal/$module_name";
  2443. if (!file_check_directory($data_dir, FILE_CREATE_DIRECTORY | FILE_MODIFY_PERMISSIONS)) {
  2444. $message = "Cannot create directory $data_dir. This module may not ".
  2445. "behave correctly without this directory. Please create ".
  2446. "the directory manually or fix the problem and reinstall.";
  2447. drupal_set_message(check_plain(t($message)), 'error');
  2448. watchdog('tripal_core', $message, array(), WATCHDOG_ERROR);
  2449. }
  2450. }
  2451. /**
  2452. * Each Tripal module has a unique data directory which was creatd using the
  2453. * tripal_create_moddir function during installation. This function
  2454. * retrieves the directory path.
  2455. *
  2456. * @param $module_name
  2457. * The name of the module
  2458. *
  2459. * @returns
  2460. * The path within the Drupal installation where the data directory resides
  2461. * @ingroup tripal_files_api
  2462. */
  2463. function tripal_get_moddir($module_name) {
  2464. $data_dir = file_directory_path() . "/tripal/$module_name";
  2465. return $data_dir;
  2466. }
  2467. /**
  2468. * Set the Tripal Database
  2469. *
  2470. * The tripal_db_set_active function is used to prevent namespace collisions
  2471. * when chado and drupal are installed in the same database but in different
  2472. * schemas. It is also used for backwards compatibility with older versions
  2473. * of tripal or in cases where chado is located outside of the Drupal database.
  2474. *
  2475. * @ingroup tripal_chado_api
  2476. */
  2477. function tripal_db_set_active($dbname = 'default') {
  2478. global $db_url, $db_type, $active_db;
  2479. $chado_exists = 0;
  2480. // only postgres can support search paths. So if this is MysQL then
  2481. // just run the normal tripal_db_set_active function.
  2482. if (strcmp($db_type, 'pgsql')==0) {
  2483. // if the 'chado' database is in the $db_url variable then chado is
  2484. // not in the same Drupal database, so we don't need to set any
  2485. // search_path and can just change the database
  2486. if (is_array($db_url)) {
  2487. if (isset($db_url[$dbname])) {
  2488. return db_set_active($dbname);
  2489. }
  2490. }
  2491. // if this is the default database then set the search path and return
  2492. if (strcmp($dbname, 'default')==0) {
  2493. tripal_db_set_default_search_path();
  2494. return db_set_active($dbname);
  2495. }
  2496. // if the user requests a database other than the default
  2497. // then we need to try and set the chado search path. This
  2498. // only works if Chado is local to the Drpual database. If it
  2499. // fails then do nothing.
  2500. else {
  2501. if (tripal_db_set_chado_search_path($dbname)) {
  2502. // if the chado schema is local to Drupal then
  2503. // just return the active database.
  2504. return 'default';
  2505. }
  2506. else {
  2507. watchdog('tripal_core', "Cannot set 'search_path' variable for Postgres to %dbname",
  2508. array('%dbname' => $dbname), WATCHDOG_ERROR);
  2509. }
  2510. }
  2511. }
  2512. // a non postgres database
  2513. else {
  2514. return db_set_active($dbname);
  2515. }
  2516. }
  2517. /**
  2518. * Gets the current search_path for PostgreSQL
  2519. *
  2520. * @ingroup tripal_chado_api
  2521. */
  2522. function tripal_db_get_search_path() {
  2523. $path = db_fetch_object(db_query("show search_path"));
  2524. return $path->search_path;
  2525. }
  2526. /**
  2527. * Set the chado search_path for PostgreSQL
  2528. *
  2529. * Sets the database search_path for postgreSQL to the
  2530. * chado schema.
  2531. *
  2532. * @ingroup tripal_chado_api
  2533. */
  2534. function tripal_db_set_chado_search_path($dbname) {
  2535. // check to make sure the chado schema exists
  2536. $chado_exists = variable_get('chado_schema_exists', FALSE);
  2537. if (!$chado_exists) {
  2538. $chado_exists = tripal_core_chado_schema_exists();
  2539. }
  2540. // here we make the assumption that the default database schema is
  2541. // 'public'. This will most likely always be the case but if not,
  2542. // then this code will break
  2543. if ($chado_exists) {
  2544. db_query('set search_path to %s', "$dbname,public");
  2545. return TRUE;
  2546. }
  2547. else {
  2548. return FALSE;
  2549. }
  2550. }
  2551. /**
  2552. * Set the default search_path for PostgreSQL
  2553. *
  2554. * Sets the database search_path for postgreSQL to the
  2555. * default schema.
  2556. *
  2557. * @ingroup tripal_chado_api
  2558. */
  2559. function tripal_db_set_default_search_path() {
  2560. // we make the assumption that the default schema is 'public'.
  2561. $chado_exists = variable_get('chado_schema_exists', FALSE);
  2562. if ($chado_exists) {
  2563. db_query('set search_path to %s', 'public,chado');
  2564. }
  2565. else {
  2566. db_query('set search_path to %s', 'public');
  2567. }
  2568. }
  2569. /**
  2570. * Indicates if the SQL statement is prepapred
  2571. *
  2572. * @param $statement_name
  2573. * The name of the statement to check if it is prepared.
  2574. *
  2575. * @return
  2576. * TRUE if the statement is preapred, FALSE otherwise
  2577. */
  2578. function tripal_core_is_sql_prepared($statement_name) {
  2579. // to reduce the need for a database query we will check the
  2580. // session variable for this connection to see if the statement
  2581. // has been prepared. If it has then we won't do the database
  2582. // query to find out. If it hasn't then we'll query the database
  2583. // to see if it is prepared.
  2584. $connection = variable_get('tripal_persistent_chado', NULL);
  2585. if (!isset($_SESSION[$connection])) {
  2586. $_SESSION[$connection] = array();
  2587. }
  2588. if (in_array($statement_name, $_SESSION[$connection])) {
  2589. //print "Is Prepared and in Session var: $statement_name\n";
  2590. return TRUE;
  2591. }
  2592. // @coder-ignore: acting on postgres tables rather then drupal schema therefore, table prefixing does not apply
  2593. $sql = "SELECT name FROM pg_prepared_statements WHERE name = '%s'";
  2594. // do not use 'chado_query' here or it causes memory-leaks
  2595. $result = db_fetch_object(db_query($sql, $statement_name));
  2596. if ($result) {
  2597. $_SESSION[$connection][] = $statement_name;
  2598. //print "Is Prepared but in DB: $statement_name\n";
  2599. return TRUE;
  2600. }
  2601. //print "Is Not prepared: $statement_name\n";
  2602. return FALSE;
  2603. }
  2604. /**
  2605. * Prepare a chado query
  2606. *
  2607. * @param $statement_name
  2608. * The name of the prepared statement
  2609. * @param $psql
  2610. * The SQL statement to be executed via chado_query.
  2611. * Should be of the form PREPARE <statement name> AS <SQL Statement to be prepared>
  2612. * @param $args
  2613. * An array of arguements required to execute the prepared statement. The keys of
  2614. * the array should correspond to the $\d in the prepare statement and the value should
  2615. * be the type of value needed (ie: text, int, etc.)
  2616. */
  2617. function tripal_core_chado_prepare($statement_name, $psql, $args) {
  2618. $connection = variable_get('tripal_persistent_chado', NULL);
  2619. if (!$connection) {
  2620. 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);
  2621. return FALSE;
  2622. }
  2623. // Check to see if this statement was already prepared
  2624. if (tripal_core_is_sql_prepared($statement_name)) {
  2625. // check that the arguments are the same
  2626. $prepared_args = $_SESSION['prepared_args'][$connection][$statement_name];
  2627. $prepared_sql = $_SESSION['prepared_sql'][$connection][$statement_name];
  2628. if ($prepared_args == $args) {
  2629. // This statement is already prepared
  2630. return TRUE;
  2631. }
  2632. else {
  2633. // Although a statement with this name is already prepared it is not the same!
  2634. 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",
  2635. array('%name' => $statement_name, '%sql' => $psql, '%values' => print_r($args, TRUE), '%esql' => $prepared_sql,
  2636. '%existing' => print_r($prepared_args, TRUE)), WATCHDOG_ERROR);
  2637. return FALSE;
  2638. }
  2639. }
  2640. $status = chado_query($psql);
  2641. if (!$status) {
  2642. watchdog('tripal_core', "chado_prepare: not able to prepare '%name' statement for: %sql", array('%name' => $statement_name, '%sql' => $psql), WATCHDOG_ERROR);
  2643. return FALSE;
  2644. }
  2645. else {
  2646. //watchdog('tripal_core', "tripal_core_chado_select: prepared '%name' statement as %sql", array('%name' => $statement_name, '%sql' => $psql), WATCHDOG_NOTICE);
  2647. $_SESSION[$connection][] = $statement_name;
  2648. $_SESSION['prepared_args'][$connection][$statement_name] = $args;
  2649. $_SESSION['prepared_sql'][$connection][$statement_name] = $psql;
  2650. return TRUE;
  2651. }
  2652. }
  2653. /**
  2654. * Execute a prepared statement with the supplied values
  2655. *
  2656. * @param $statement_name
  2657. * The name of the prepared statement
  2658. * @param $sql
  2659. * The SQL to execute using chado query.
  2660. * Should be of the form EXECUTE <statement_name> (<arg1>,<arg2>...<argn>)
  2661. * @param $values
  2662. * An array of values in the execute sql statement
  2663. */
  2664. function tripal_core_chado_execute_prepared($statement_name, $sql, $values) {
  2665. $connection = variable_get('tripal_persistent_chado', NULL);
  2666. if (!tripal_core_is_sql_prepared($statement_name)) {
  2667. watchdog('tripal_core', "tripal_core_chado_execute_prepared: Cannot execute an unprepared statement: '%name'", array('%name' => $statement_name), WATCHDOG_ERROR);
  2668. return FALSE;
  2669. }
  2670. // Before Executing, Ensure that all the values are supplied
  2671. $required_values = $_SESSION['prepared_args'][$connection][$statement_name];
  2672. if (!$required_values) {
  2673. watchdog('tripal_core', "tripal_core_chado_execute_prepared: missing prepare arguments for this statement: '%name'", array('%name' => $statement_name), WATCHDOG_ERROR);
  2674. return FALSE;
  2675. }
  2676. if (sizeof($required_values) == sizeof($values)) {
  2677. $error = FALSE;
  2678. foreach ($values as $k => $v) {
  2679. if (isset($required_values[$k])) {
  2680. switch ($required_values[$k]) {
  2681. case 'text':
  2682. $check = is_string($v);
  2683. if ($v != '' and !$check) {
  2684. watchdog('tripal_core', "chado_execute_prepared: wrong argument type supplied for '%name' statement, field %k. Expected %required but recieved '%value'",
  2685. array('%name' => $statement_name, '%k' => $k, '%required' => $required_values[$k], '%value' => print_r($v, TRUE)), WATCHDOG_ERROR);
  2686. return FALSE;
  2687. }
  2688. break;
  2689. case 'int':
  2690. $check = is_numeric($v);
  2691. if (!$check) {
  2692. watchdog('tripal_core', "chado_execute_prepared: wrong argument type supplied for '%name' statement. Expected %required but recieved '%value'",
  2693. array('%name' => $statement_name, '%required' => $required_values[$k], '%value' => print_r($v, TRUE)), WATCHDOG_ERROR);
  2694. return FALSE;
  2695. }
  2696. break;
  2697. case 'bool':
  2698. if ($v != 'TRUE' and $v != 'FALSE') {
  2699. watchdog('tripal_core', "chado_execute_prepared: wrong argument type supplied for '%name' statement. Expected %required but recieved '%value'",
  2700. array('%name' => $statement_name, '%required' => $required_values[$k], '%value' => print_r($v, TRUE)), WATCHDOG_ERROR);
  2701. return FALSE;
  2702. }
  2703. break;
  2704. case 'numeric':
  2705. $check = is_numeric($v);
  2706. if (!$check) {
  2707. watchdog('tripal_core', "chado_execute_prepared: wrong argument type supplied for '%name' statement. Expected %required but recieved '%value'",
  2708. array('%name' => $statement_name, '%required' => $required_values[$k], '%value' => print_r($v, TRUE)), WATCHDOG_ERROR);
  2709. return FALSE;
  2710. }
  2711. break;
  2712. default:
  2713. watchdog('tripal_core', "chado_execute_prepared: unsupported argument type (supplied for '%name' statement %type)",
  2714. array('%name' => $statement_name, '%type' => $required_values[$k]), WATCHDOG_WARNING);
  2715. break;
  2716. }
  2717. }
  2718. else {
  2719. watchdog('tripal_core', "chado_execute_prepared: wrong number of arguments supplied for '%name' statement. Expected %required but recieved %values",
  2720. array('%name' => $statement_name, '%required' => print_r($required_values, TRUE), '%values' => print_r($values, TRUE)), WATCHDOG_ERROR);
  2721. return FALSE;
  2722. }
  2723. }
  2724. // Since all values are supplied, execute
  2725. $resource = chado_query($sql, $values);
  2726. return $resource;
  2727. }
  2728. else {
  2729. watchdog('tripal_core', "chado_execute_prepared: wrong number of arguments supplied for '%name' statement. Expected %required but recieved %values. Statement: %statement.",
  2730. array('%name' => $statement_name, '%required' => print_r($required_values, TRUE), '%values' => print_r($values, TRUE), '%statement' => $_SESSION['prepared_sql'][$connection][$statement_name]), WATCHDOG_ERROR);
  2731. return FALSE;
  2732. }
  2733. }
  2734. /**
  2735. * Instantiate or Return a persistent chado connection
  2736. *
  2737. * NOTE: cannot use $active_db since a new connection is created each time
  2738. * db_set_active() is called
  2739. *
  2740. * @return
  2741. * A postgresql connection object which can be used by pg_prepare, pg_execute, etc.
  2742. */
  2743. function tripal_db_persistent_chado() {
  2744. global $db_url;
  2745. // get connection if it already exists
  2746. // Otherwise we need to set it
  2747. $sconn = variable_get('tripal_persistent_chado', NULL);
  2748. if ($sconn) {
  2749. return $sconn;
  2750. }
  2751. else {
  2752. if (is_array($db_url) && isset($db_url['chado'])) {
  2753. $connection = db_connect($db_url['chado']);
  2754. if (!$connection) {
  2755. watchdog('tripal_core', "Could not create persistant connection", array(), WATCHDOG_ERROR);
  2756. return FALSE;
  2757. }
  2758. variable_set('tripal_persistent_chado', $connection);
  2759. }
  2760. else {
  2761. if (is_array($db_url)) {
  2762. $connection = db_connect($db_url['default']);
  2763. }
  2764. else {
  2765. $connection = db_connect($db_url);
  2766. }
  2767. if (!$connection) {
  2768. variable_set('tripal_persistent_chado', NULL);
  2769. watchdog('tripal_core', "Could not create persistant connection", array(), WATCHDOG_ERROR);
  2770. return FALSE;
  2771. }
  2772. variable_set('tripal_persistent_chado', $connection);
  2773. }
  2774. return $connection;
  2775. }
  2776. return FALSE;
  2777. }
  2778. /**
  2779. * Release a persistent chado connection
  2780. */
  2781. function tripal_db_release_persistent_chado() {
  2782. variable_del('tripal_persistent_chado');
  2783. }
  2784. /**
  2785. * Start a transaction block. Ensures the use of a persistent chado connection
  2786. */
  2787. function tripal_db_start_transaction() {
  2788. $connection = tripal_db_persistent_chado();
  2789. if ($connection) {
  2790. chado_query("BEGIN");
  2791. return $connection;
  2792. }
  2793. return FALSE;
  2794. }
  2795. /**
  2796. * Set a savepoint to roll the current transaction back to if an error is encountered
  2797. */
  2798. function tripal_db_set_savepoint_transaction($savepoint, $release = FALSE) {
  2799. // Postgresql requires a savepoint of the same name to be unset before re-use
  2800. if ($release) {
  2801. chado_query("RELEASE SAVEPOINT %s", $savepoint);
  2802. }
  2803. chado_query("SAVEPOINT %s", $savepoint);
  2804. }
  2805. /**
  2806. * Commit changes made during the current transaction
  2807. */
  2808. function tripal_db_commit_transaction() {
  2809. chado_query("COMMIT");
  2810. }
  2811. /**
  2812. * Rollback changes.
  2813. *
  2814. * If $savepoint is NULL then rollback to the beginning of the transaction,
  2815. * Otherwise, rollback to the point at which the named $savepoint was created
  2816. *
  2817. * @param $savepoint
  2818. * The name of the saved point in the transaction to rollback to
  2819. */
  2820. function tripal_db_rollback_transaction($savepoint = NULL, $commit = TRUE) {
  2821. if ($savepoint) {
  2822. chado_query("ROLLBACK TO SAVEPOINT %s", $savepoint);
  2823. }
  2824. else {
  2825. chado_query("ROLLBACK");
  2826. }
  2827. if ($commit) {
  2828. tripal_db_commit_transaction();
  2829. }
  2830. }
  2831. /**
  2832. * Purpose: Get max rank for a given set of criteria
  2833. * This function was developed with the many property tables in chado in mind
  2834. *
  2835. * @param $tablename
  2836. * The name of the chado table you want to select the max rank from this table must contain a
  2837. * rank column of type integer
  2838. * @param $where_options
  2839. * where options should include the id and type for that table to correctly
  2840. * group a set of records together where the only difference are the value and rank
  2841. * @code
  2842. * array(
  2843. * <column_name> => array(
  2844. * 'type' => <type of column: INT/STRING>,
  2845. * 'value' => <the value you want to filter on>,
  2846. * 'exact' => <if TRUE use =; if FALSE use ~>,
  2847. * )
  2848. * )
  2849. * @endcode
  2850. * @return the maximum rank
  2851. *
  2852. * @ingroup tripal_chado_api
  2853. */
  2854. function tripal_get_max_chado_rank($tablename, $where_options) {
  2855. $where= array();
  2856. //generate the where clause from supplied options
  2857. // the key is the column name
  2858. foreach ($where_options as $key => $val_array) {
  2859. if (preg_match('/INT/', $val_array['type'])) {
  2860. $where[] = $key . "=" . $val_array['value'];
  2861. }
  2862. else {
  2863. if ($val_array['exact']) {
  2864. $operator='=';
  2865. }
  2866. else {
  2867. $operator='~';
  2868. }
  2869. $where[] = $key . $operator . "'" . $val_array['value'] . "'";
  2870. }
  2871. }
  2872. $previous_db = tripal_db_set_active('chado');
  2873. $result = db_fetch_object(db_query("SELECT max(rank) as max_rank, count(rank) as count FROM %s WHERE %s",
  2874. $tablename, implode(' AND ', $where)));
  2875. tripal_db_set_active($previous_db);
  2876. //drupal_set_message("Max Rank Query=SELECT max(rank) as max_rank, count(rank) as count FROM ".$tablename." WHERE ".implode(' AND ',$where));
  2877. if ($result->count > 0) {
  2878. return $result->max_rank;
  2879. }
  2880. else {
  2881. return -1;
  2882. }
  2883. }
  2884. /**
  2885. * Retrieves the schema in an array for the specified custom table.
  2886. *
  2887. * @param $table
  2888. * The name of the table to create.
  2889. *
  2890. * @return
  2891. * A Drupal-style Schema API array definition of the table. Returns
  2892. * FALSE on failure.
  2893. *
  2894. * @ingroup tripal_core_api
  2895. */
  2896. function tripal_get_chado_custom_schema($table) {
  2897. $sql = "SELECT schema FROM {tripal_custom_tables} WHERE table_name = '%s'";
  2898. $custom = db_fetch_object(db_query($sql, $table));
  2899. if (!$custom) {
  2900. return FALSE;
  2901. }
  2902. else {
  2903. return unserialize($custom->schema);
  2904. }
  2905. }
  2906. /**
  2907. * Check that the Chado schema exists
  2908. *
  2909. * @return
  2910. * TRUE/FALSE depending upon whether it exists
  2911. */
  2912. function tripal_core_chado_schema_exists() {
  2913. $exists = variable_get('chado_schema_exists', FALSE);
  2914. if (!$exists) {
  2915. // This is postgresql-specific code to check the existence of the chado schema
  2916. // @coder-ignore: acting on pg_catalog schema rather then drupal schema therefore, table prefixing does not apply
  2917. $sql = "SELECT nspname FROM pg_catalog.pg_namespace WHERE nspname = 'chado'";
  2918. if (db_fetch_object(db_query($sql))) {
  2919. variable_set('chado_schema_exists', TRUE);
  2920. return TRUE;
  2921. }
  2922. else {
  2923. return FALSE;
  2924. }
  2925. }
  2926. return TRUE;
  2927. }
  2928. /**
  2929. * Check that any given schema exists
  2930. *
  2931. * @param $schema
  2932. * The name of the schema to check the existence of
  2933. *
  2934. * @return
  2935. * TRUE/FALSE depending upon whether or not the schema exists
  2936. *
  2937. * @ingroup tripal_chado_api
  2938. */
  2939. function tripal_core_schema_exists($schema) {
  2940. // check that the chado schema now exists
  2941. $sql = "SELECT nspname
  2942. FROM pg_namespace
  2943. WHERE has_schema_privilege(nspname, 'USAGE') and nspname = '%s'
  2944. ORDER BY nspname";
  2945. $name = db_fetch_object(db_query($sql, $schema));
  2946. if (strcmp($name->nspname, $schema) != 0) {
  2947. return FALSE;
  2948. }
  2949. return TRUE;
  2950. }
  2951. /**
  2952. * Retrieves the list tables in the Chado schema. By default it only retursn
  2953. * the default Chado tables, but may also return custom tables added to the
  2954. * Chado schema as well.
  2955. *
  2956. * @param $include_custom
  2957. * Optional. Set as TRUE to include any custom tables created in the
  2958. * Chado schema. Custom tables are added to Chado using the
  2959. * tripal_core_chado_create_table() function.
  2960. *
  2961. * @returns
  2962. * An associative array where the key and value pairs are the Chado table names.
  2963. *
  2964. * @ingroup tripal_core_api
  2965. */
  2966. function tripal_core_get_chado_tables($include_custom = NULL) {
  2967. // first get the chado version that is installed
  2968. $v = tripal_core_get_chado_version();
  2969. $tables = array();
  2970. if ($v == '1.2') {
  2971. $tables_v1_2 = tripal_core_chado_get_v1_2_tables();
  2972. foreach ($tables_v1_2 as $table) {
  2973. $tables[$table] = $table;
  2974. }
  2975. }
  2976. if ($v == '1.11' or $v == '1.11 or older') {
  2977. $tables_v1_11 = tripal_core_chado_get_v1_11_tables();
  2978. foreach ($tables_v1_11 as $table) {
  2979. $tables[$table] = $table;
  2980. }
  2981. }
  2982. // now add in the custom tables too if requested
  2983. if ($include_custom) {
  2984. $sql = "SELECT table_name FROM {tripal_custom_tables}";
  2985. $resource = db_query($sql);
  2986. while ($r = db_fetch_object($resource)) {
  2987. $tables[$r->table_name] = $r->table_name;
  2988. }
  2989. }
  2990. asort($tables);
  2991. return $tables;
  2992. }
  2993. /**
  2994. * Sets a Drupal variable with the current version of Chado. This variable
  2995. * can then be queried later using the tripal_core_get_chado_Version
  2996. *
  2997. * @returns
  2998. * The version of Chado
  2999. *
  3000. * @ingroup tripal_core_api
  3001. */
  3002. function tripal_core_set_chado_version() {
  3003. global $db_url;
  3004. // check that Chado is installed if not return 'uninstalled as the version'
  3005. $chado_exists = tripal_core_chado_schema_exists();
  3006. if (!$chado_exists) {
  3007. // if it's not in the drupal database check to see if it's specified in the $db_url
  3008. // in the settings.php
  3009. if (!is_array($db_url) or !array_key_exists('chado', $db_url)) {
  3010. // if it's not in the drupal database or specified in the $db_url then
  3011. // return uninstalled as the version
  3012. return 'not installed';
  3013. }
  3014. }
  3015. // if the table doesn't exist then we don't know what version but we know
  3016. // it must be 1.11 or older.
  3017. $previous_db = tripal_db_set_active('chado');
  3018. $prop_exists = db_table_exists('chadoprop');
  3019. tripal_db_set_active($previous_db);
  3020. if (!$prop_exists) {
  3021. return "1.11 or older";
  3022. }
  3023. // we can't use the Tripal API to query this table
  3024. // because the Tripal API depends on this function to
  3025. // tell it the version. So, we need a typical SQL statement
  3026. $sql = "SELECT value "
  3027. ."FROM chadoprop CP "
  3028. ." INNER JOIN cvterm CVT on CVT.cvterm_id = CP.type_id "
  3029. ." INNER JOIN cv CV on CVT.cv_id = CV.cv_id "
  3030. ."WHERE CV.name = 'chado_properties' and CVT.name = 'version'";
  3031. $previous_db = tripal_db_set_active('chado');
  3032. $v = db_fetch_object(db_query($sql));
  3033. tripal_db_set_active($previous_db);
  3034. // if we don't have a version in the chadoprop table then it must be
  3035. // v1.11 or older
  3036. if (!$v->value) {
  3037. variable_set('chado_version', "1.11 or older");
  3038. return "1.11 or older";
  3039. }
  3040. variable_set('chado_version', $v->value);
  3041. return $v->value;
  3042. }
  3043. /**
  3044. * Returns the version number of the currently installed Chado instance.
  3045. * It can return the real or effective version.
  3046. *
  3047. * @param $exact
  3048. * Set this argument to 1 to retrieve the exact version that is installed.
  3049. * Otherwise, this function will set the version to the nearest 'tenth'.
  3050. * Chado versioning numbers in the hundreds represent changes to the
  3051. * software and not the schema. Changes in the tenth's represent changes
  3052. * in the schema.
  3053. *
  3054. * @param $warn_if_unsupported
  3055. * If the currently installed version of Chado is not supported by Tripal
  3056. * the generatea a Drupal warning.
  3057. *
  3058. * @returns
  3059. * The version of Chado
  3060. *
  3061. * @ingroup tripal_core_api
  3062. */
  3063. function tripal_core_get_chado_version($exact = FALSE, $warn_if_unsupported = FALSE) {
  3064. // first get the chado version that is installed
  3065. $exact_version = variable_get('chado_version', '');
  3066. if (!$exact_version) {
  3067. $exact_version = tripal_core_set_chado_version();
  3068. }
  3069. // Tripal only supports v1.11 or newer.. really this is the same as v1.1
  3070. // but at the time the v1.11 schema API was written we didn't know that so
  3071. // we'll return the version 1.11 so the schema API will work.
  3072. if (strcmp($exact_version, '1.11 or older') == 0) {
  3073. $exact_version = "1.11";
  3074. if ($warn_if_unsupported) {
  3075. drupal_set_message(t("WARNING: Tripal does not fully support Chado version less than v1.1. If you are certain this is v1.1
  3076. of if Chado was installed using an earlier version of Tripal then all is well. If not please upgrade to v1.1 or later"),
  3077. 'warning');
  3078. }
  3079. }
  3080. // if not returing an exact version, return the version to the nearest 10th.
  3081. // return 1.2 for all versions of 1.2x
  3082. $effective_version = $exact_version;
  3083. if (preg_match('/^1\.2\d+$/', $effective_version)) {
  3084. $effective_version = "1.2";
  3085. }
  3086. if ($warn_if_unsupported and ($effective_version != 1.11 and $effective_version != 1.2)) {
  3087. drupal_set_message(t("WARNING: The currently installed version of Chado, v$exact_version, is not fully compatible with Tripal."), 'warning');
  3088. }
  3089. // if the callee has requested the exact version then return it
  3090. if ($exact) {
  3091. return $exact_version;
  3092. }
  3093. return $effective_version;
  3094. }
  3095. /**
  3096. * Retrieves the chado tables Schema API array.
  3097. *
  3098. * @param $table
  3099. * The name of the table to retrieve. The function will use the appopriate
  3100. * Tripal chado schema API hooks (e.g. v1.11 or v1.2).
  3101. *
  3102. * @returns
  3103. * A Drupal Schema API array defining the table.
  3104. *
  3105. * @ingroup tripal_core_api
  3106. */
  3107. function tripal_core_get_chado_table_schema($table) {
  3108. // first get the chado version that is installed
  3109. $v = tripal_core_get_chado_version();
  3110. // get the table array from the proper chado schema
  3111. $v = preg_replace("/\./", "_", $v); // reformat version for hook name
  3112. $table_arr = module_invoke_all("chado_schema_v" . $v . "_" . $table);
  3113. // if the table_arr is empty then maybe this is a custom table
  3114. if (!is_array($table_arr) or count($table_arr) == 0) {
  3115. $table_arr = tripal_get_chado_custom_schema($table);
  3116. }
  3117. return $table_arr;
  3118. }
  3119. /**
  3120. * This function will delete Drupal nodes for any sync'ed table (e.g.
  3121. * feature, organism, analysis, stock, library) if the chado record has been
  3122. * deleted or the entry in the chado_[table] table has been removed.
  3123. *
  3124. * @param $table
  3125. * The name of the table that corresonds to the node type we want to clean up.
  3126. * @param $job_id
  3127. * This should be the job id from the Tripal jobs system. This function
  3128. * will update the job status using the provided job ID.
  3129. *
  3130. * @ingroup tripal_core_api
  3131. */
  3132. function tripal_core_clean_orphaned_nodes($table, $job_id) {
  3133. $count = 0;
  3134. // build the SQL statments needed to check if nodes point to valid analyses
  3135. $dsql = "SELECT * FROM {node} WHERE type = 'chado_%s' order by nid";
  3136. $nsql = "SELECT * FROM {node} WHERE nid = %d";
  3137. $csql = "SELECT * FROM {chado_%s} where nid = %d ";
  3138. $clsql= "SELECT * FROM {chado_%s}";
  3139. $lsql = "SELECT * FROM %s where %s_id = %d ";
  3140. // load into nodes array
  3141. print "Getting nodes\n";
  3142. $nodes = array();
  3143. $res = db_query($dsql, $table);
  3144. while ($node = db_fetch_object($res)) {
  3145. $nodes[$count] = $node;
  3146. $count++;
  3147. }
  3148. // load the chado_$table into an array
  3149. print "Getting chado_$table\n";
  3150. $cnodes = array();
  3151. $res = db_query($clsql, $table);
  3152. while ($node = db_fetch_object($res)) {
  3153. $cnodes[$count] = $node;
  3154. $count++;
  3155. }
  3156. $interval = intval($count * 0.01);
  3157. if ($interval < 1) {
  3158. $interval = 1;
  3159. }
  3160. // iterate through all of the chado_$table entries and remove those
  3161. // that don't have a node or don't have a $table record in chado.libary
  3162. foreach ($cnodes as $nid) {
  3163. // update the job status every 1% analyses
  3164. if ($job_id and $i % $interval == 0) {
  3165. tripal_job_set_progress($job_id, intval(($i / $count) * 100));
  3166. }
  3167. // see if the node exits, if not remove the entry from the chado_$table table
  3168. $node = db_fetch_object(db_query($nsql, $nid->nid));
  3169. if (!$node) {
  3170. db_query("DELETE FROM {chado_%s} WHERE nid = %d", $table, $nid->nid);
  3171. $message = "chado_$table missing node.... DELETING: $nid->nid";
  3172. watchdog('tripal_core', $message, array(), WATCHDOG_WARNING);
  3173. }
  3174. // see if the record in chado exist, if not remove the entry from the chado_$table
  3175. $table_id = $table . "_id";
  3176. $record = db_fetch_object(chado_query($lsql, $table, $table, $nid->$table_id));
  3177. if (!$record) {
  3178. chado_query("DELETE FROM {chado_%s} WHERE %s_id = '%d'", $table, $table, $nid->$table_id);
  3179. $message = "chado_$table missing $table.... DELETING entry.";
  3180. watchdog('tripal_core', $message, array(), WATCHDOG_WARNING);
  3181. }
  3182. $i++;
  3183. }
  3184. // iterate through all of the nodes and delete those that don't
  3185. // have a corresponding entry in chado_$table
  3186. foreach ($nodes as $node) {
  3187. // update the job status every 1% libraries
  3188. if ($job_id and $i % $interval == 0) {
  3189. tripal_job_set_progress($job_id, intval(($i / $count) * 100));
  3190. }
  3191. // check to see if the node has a corresponding entry
  3192. // in the chado_$table table. If not then delete the node.
  3193. $link = db_fetch_object(db_query($csql, $table, $node->nid));
  3194. if (!$link) {
  3195. if (node_access('delete', $node)) {
  3196. $message = "Node missing in chado_$table table.... DELETING node $node->nid";
  3197. watchdog("tripal_core", $message, array(), WATCHDOG_WARNING);
  3198. node_delete($node->nid);
  3199. }
  3200. else {
  3201. $message = "Node missing in chado_$table table.... but cannot delete due to improper permissions (node $node->nid)";
  3202. watchdog("tripal_core", $message, array(), WATCHDOG_WARNING);
  3203. }
  3204. }
  3205. $i++;
  3206. }
  3207. return '';
  3208. }
  3209. /**
  3210. * Check whether chado is installed (either in the same or a different database)
  3211. *
  3212. * @return
  3213. * TRUE/FALSE depending upon whether chado is installed.
  3214. *
  3215. * @ingroup tripal_chado_api
  3216. */
  3217. function tripal_core_is_chado_installed() {
  3218. global $db_url, $db_type;
  3219. // first check if chado is in the db_url of the
  3220. // settings.php file
  3221. if (is_array($db_url)) {
  3222. if (isset($db_url['chado'])) {
  3223. return TRUE;
  3224. }
  3225. }
  3226. // check to make sure the chado schema exists
  3227. return tripal_core_chado_schema_exists();
  3228. }