tripal_core.api.inc 128 KB

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