tripal_core.api.inc 128 KB

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