tripal_chado.custom_tables.api.inc 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. <?php
  2. /**
  3. * @file
  4. * Provides an API to manage custom tables in Chado.
  5. */
  6. /**
  7. * @defgroup tripal_custom_tables_api Tripal Custom Tables API
  8. * @ingroup tripal_chado_api
  9. * @{
  10. * Provides an API to manage custom tables in Chado.
  11. * @}
  12. */
  13. /**
  14. * Edits a custom table in the chado database. It supports
  15. * using the Drupal Schema API array.
  16. *
  17. * @param $table_id
  18. * The table_id of the table to edit
  19. * @param $table_name
  20. * The name of the custom table
  21. * @param $schema
  22. * Use the Schema API array to define the custom table.
  23. * @param $skip_if_exists
  24. * Set as TRUE to skip dropping and re-creation of the table. This is
  25. * useful if the table was already created through another means and you
  26. * simply want to make Tripal aware of the table schema.
  27. *
  28. * @ingroup tripal_custom_tables_api
  29. */
  30. function chado_edit_custom_table($table_id, $table_name, $schema, $skip_if_exists = 1) {
  31. $transaction = db_transaction();
  32. try {
  33. // Create a new record
  34. $record = new stdClass();
  35. $record->table_id = $table_id;
  36. $record->table_name = $table_name;
  37. $record->schema = serialize($schema);
  38. // get the current custom table record
  39. $sql = "SELECT * FROM {tripal_custom_tables} WHERE table_id = :table_id";
  40. $results = db_query($sql, array(':table_id' => $table_id));
  41. $custom_table = $results->fetchObject();
  42. // if this is a materialized view then don't allow editing with this function
  43. if ($custom_table->mview_id) {
  44. tripal_report_error('tripal_chado', TRIPAL_ERROR, "Please use the tripal_edit_mview() function to edit this custom table as it is a materialized view.", array());
  45. drupal_set_message("This custom table is a materialized view. Please use the " . l('Materialized View', 'admin/tripal/storage/chado/mviews') . " interface to edit it.", 'error');
  46. return FALSE;
  47. }
  48. // if the user changed the table name, we want to drop the old one and force
  49. // creation of the new one.
  50. if ($custom_table->table_name != $table_name) {
  51. chado_query("DROP TABLE %s", $custom_table->table_name);
  52. $skip_if_exists = 0; // we want to create the table
  53. }
  54. // if skip creation is not set, then drop the table from chado if it exists
  55. if (!$skip_if_exists) {
  56. if (db_table_exists($custom_table->table_name)) {
  57. chado_query("DROP TABLE %s", $custom_table->table_name);
  58. drupal_set_message(t("Custom Table " . $custom_table->table_name . " dropped"));
  59. }
  60. }
  61. // update the custom table record and run the create custom table function
  62. drupal_write_record('tripal_custom_tables', $record, 'table_id');
  63. $success = chado_create_custom_table ($table_name, $schema, $skip_if_exists);
  64. }
  65. catch (Exception $e) {
  66. $transaction->rollback();
  67. watchdog_exception('tripal_chado', $e);
  68. $error = _drupal_decode_exception($e);
  69. drupal_set_message(t("Could not update custom table '%table_name': %message.",
  70. array('%table_name' => $table, '%message' => $error['!message'])), 'error');
  71. return FALSE;
  72. }
  73. return TRUE;
  74. }
  75. /**
  76. * Add a new table to the Chado schema. This function is simply a wrapper for
  77. * the db_create_table() function of Drupal, but ensures the table is created
  78. * inside the Chado schema rather than the Drupal schema. If the table already
  79. * exists then it will be dropped and recreated using the schema provided.
  80. * However, it will only drop a table if it exsits in the tripal_custom_tables
  81. * table. This way the function cannot be used to accidentally alter existing
  82. * non custom tables. If $skip_if_exists is set then the table is simply
  83. * added to the tripal_custom_tables and no table is created in Chado.
  84. *
  85. * If you are creating a materialized view do not use this function, but rather
  86. * use the tripal_add_mview(). A materialized view is also considered a custom table
  87. * and an entry for it will be added to both the tripal_mviews and
  88. * tripal_custom_tables tables, but only if the tripal_add_mview() function is
  89. * used. The optional $mview_id parameters in this function is intended
  90. * for use by the tripal_add_mview() function when it calls this function
  91. * to create the table.
  92. *
  93. * @param $table
  94. * The name of the table to create.
  95. * @param $schema
  96. * A Drupal-style Schema API definition of the table
  97. * @param $skip_if_exists
  98. * Set as TRUE to skip dropping and re-creation of the table if it already
  99. * exists. This is useful if the table was already created through another
  100. * means and you simply want to make Tripal aware of the table schema. If the
  101. * table does not exist it will be created.
  102. * @param $mview_id
  103. * Optional. If this custom table is also a materialized view then provide
  104. * it's mview_id. This paramter is intended only when this function
  105. * is called by the tripal_add_mview() function. When creating a custom
  106. * table you shouldn't need to use this parameter.
  107. * @return
  108. * TRUE on success, FALSE on failure
  109. *
  110. * @ingroup tripal_custom_tables_api
  111. */
  112. function chado_create_custom_table($table, $schema, $skip_if_exists = 1, $mview_id = NULL) {
  113. global $databases;
  114. $created = 0;
  115. $recreated = 0;
  116. $transaction = db_transaction();
  117. try {
  118. // see if the table entry already exists in the tripal_custom_tables table.
  119. $sql = "SELECT * FROM {tripal_custom_tables} WHERE table_name = :table_name";
  120. $results = db_query($sql, array(':table_name' => $table));
  121. $centry = $results->fetchObject();
  122. // check to see if the table already exists in the chado schema
  123. $exists = chado_table_exists($table);
  124. // if the table does not exist then create it
  125. if (!$exists) {
  126. $ret = db_create_table('chado.' . $table, $schema);
  127. $created = 1;
  128. }
  129. // if the table exists in Chado and in our custom table and
  130. // skip creation is turned off then drop and re-create the table
  131. if ($exists and is_object($centry) and !$skip_if_exists) {
  132. // drop the table we'll recreate it with the new schema
  133. chado_query('DROP TABLE {' . $table . '}');
  134. // remove any 'referring_tables' from the array as the db_create_table doesn't use that
  135. $new_schema = $schema;
  136. if (array_key_exists('referring_tables', $new_schema)) {
  137. unset($new_schema['referring_tables']);
  138. }
  139. db_create_table('chado.' . $table, $new_schema);
  140. $recreated = 1;
  141. }
  142. // add an entry in the tripal_custom_table
  143. $record = new stdClass();
  144. $record->table_name = $table;
  145. $record->schema = serialize($schema);
  146. if ($mview_id) {
  147. $record->mview_id = $mview_id;
  148. }
  149. // if an entry already exists then remove it
  150. if ($centry) {
  151. $sql = "DELETE FROM {tripal_custom_tables} WHERE table_name = :table_name";
  152. db_query($sql, array(':table_name' => $table));
  153. }
  154. $success = drupal_write_record('tripal_custom_tables', $record);
  155. // now add any foreign key constraints
  156. if (($created or !$skip_if_exists) and array_key_exists('foreign keys', $schema)) {
  157. // iterate through the foreign keys and add each one
  158. $fkeys = $schema['foreign keys'];
  159. foreach ($fkeys as $fktable => $fkdetails) {
  160. $relations = $fkdetails['columns'];
  161. foreach ($relations as $left => $right) {
  162. $sql = '
  163. ALTER TABLE {' . $table . '}
  164. ADD CONSTRAINT ' . $table . '_' . $left . '_fkey FOREIGN KEY (' . $left . ')
  165. REFERENCES {' . $fktable . '} (' . $right . ')
  166. ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED
  167. ';
  168. chado_query($sql);
  169. }
  170. }
  171. }
  172. }
  173. catch (Exception $e) {
  174. $transaction->rollback();
  175. watchdog_exception('tripal_chado', $e);
  176. $error = _drupal_decode_exception($e);
  177. drupal_set_message(t("Could not add custom table '%table_name': %message.",
  178. array('%table_name' => $table, '%message' => $error['!message'])), 'error');
  179. return FALSE;
  180. }
  181. if ($created) {
  182. drupal_set_message("Custom table, '" . $table . "' , created successfully.", 'status');
  183. }
  184. elseif ($recreated) {
  185. drupal_set_message("Custom table, '" . $table . "' , re-created successfully.", 'status');
  186. }
  187. else {
  188. drupal_set_message("Custom table, '" . $table . "' , already exists. Table structure not changed, but definition array has been saved.", 'status');
  189. }
  190. return TRUE;
  191. }
  192. /**
  193. * This function is used to validate a Drupal Schema API array prior to
  194. * passing it ot the chado_create_custom_table_schema(). This function
  195. * can be used in a form validate function or whenver a schema is provided by
  196. * a user and needs validation.
  197. *
  198. * @param $schema_array
  199. * the Drupal Schema API compatible array
  200. *
  201. * @return
  202. * An empty string for success or a message string for failure
  203. *
  204. * @ingroup tripal_custom_tables_api
  205. */
  206. function chado_validate_custom_table_schema($schema_array) {
  207. if (is_array($schema_array) and !array_key_exists('table', $schema_array)) {
  208. return "The schema array must have key named 'table'";
  209. }
  210. if (preg_match('/[ABCDEFGHIJKLMNOPQRSTUVWXYZ]/', $schema_array['table'])) {
  211. return "Postgres will automatically change the table name to lower-case. To prevent unwanted side-effects, please rename the table with all lower-case characters.";
  212. }
  213. // check index length
  214. if (array_key_exists('indexes', $schema_array)) {
  215. foreach ($schema_array['indexes'] as $index_name => $details) {
  216. if (strlen($schema_array['table'] . '_' . $index_name) > 60) {
  217. return "One ore more index names appear to be too long. For example: '" . $schema_array['table'] . '_' . $index_name .
  218. ".' Index names are created by concatenating the table name with the index name provided " .
  219. "in the 'indexes' array of the schema. Please alter any indexes that when combined with the table name are " .
  220. "longer than 60 characters.";
  221. }
  222. }
  223. }
  224. // check unique key length
  225. if (array_key_exists('unique keys', $schema_array)) {
  226. foreach ($schema_array['unique keys'] as $index_name => $details) {
  227. if (strlen($schema_array['table'] . '_' . $index_name) > 60) {
  228. return "One ore more unique key names appear to be too long. For example: '" . $schema_array['table'] . '_' . $index_name .
  229. ".' Unique key names are created by concatenating the table name with the key name provided " .
  230. "in the 'unique keys' array of the schema. Please alter any unique keys that when combined with the table name are " .
  231. "longer than 60 characters.";
  232. }
  233. }
  234. }
  235. }
  236. /**
  237. * Retrieve the custom table id given the name
  238. *
  239. * @param $table_name
  240. * The name of the custom table
  241. *
  242. * @return
  243. * The unique identifier for the given table
  244. *
  245. * @ingroup tripal_custom_tables_api
  246. */
  247. function chado_get_custom_table_id($table_name) {
  248. if (db_table_exists('tripal_custom_tables')) {
  249. $sql = "SELECT * FROM {tripal_custom_tables} WHERE table_name = :table_name";
  250. $results = db_query($sql, array(':table_name' => $table_name));
  251. $custom_table = $results->fetchObject();
  252. if ($custom_table) {
  253. return $custom_table->table_id;
  254. }
  255. }
  256. return FALSE;
  257. }
  258. /**
  259. * Retrieves the list of custom tables in this site.
  260. *
  261. * @returns
  262. * An associative array where the key and value pairs are the table names.
  263. *
  264. * @ingroup tripal_custom_tables_api
  265. */
  266. function chado_get_custom_table_names($include_mview = TRUE) {
  267. $sql = "SELECT table_name FROM {tripal_custom_tables}";
  268. if (!$include_mview) {
  269. $sql .= " WHERE mview_id IS NULL";
  270. }
  271. $resource = db_query($sql);
  272. foreach ($resource as $r) {
  273. $tables[$r->table_name] = $r->table_name;
  274. }
  275. asort($tables);
  276. return $tables;
  277. }
  278. /**
  279. * Deletes the specified custom table
  280. *
  281. * @param $table_id
  282. * The unique ID of the custom table for the action to be performed on
  283. *
  284. * @ingroup tripal_custom_tables_api
  285. */
  286. function chado_delete_custom_table($table_id) {
  287. global $user;
  288. $args = array("$table_id");
  289. if (!$table_id) {
  290. return '';
  291. }
  292. // get this table details
  293. $sql = "SELECT * FROM {tripal_custom_tables} WHERE table_id = :table_id";
  294. $results = db_query($sql, array(':table_id' => $table_id));
  295. $custom_table = $results->fetchObject();
  296. // if this is a materialized view then don't allow deletion with this function
  297. if ($custom_table->mview_id) {
  298. tripal_report_error('tripal_chado', TRIPAL_ERROR, "Please use the tripal_delete_mview() function to delete this custom table as it is a materialized view. Table not deleted.", array());
  299. drupal_set_message("This custom table is a materialized view. Please use the " . l('Materialized View', 'admin/tripal/storage/chado/mviews') . " interface to delete it.", 'error');
  300. return FALSE;
  301. }
  302. // remove the entry from the tripal_custom tables table
  303. $sql = "DELETE FROM {tripal_custom_tables} WHERE table_id = $table_id";
  304. $success = db_query($sql);
  305. if ($success) {
  306. drupal_set_message(t("Custom Table '%name' removed", array('%name' => $custom_table->table_name)));
  307. }
  308. // drop the table from chado if it exists
  309. if (chado_table_exists($custom_table->table_name)) {
  310. $success = chado_query("DROP TABLE {" . $custom_table->table_name . "}");
  311. if ($success) {
  312. drupal_set_message(t("Custom Table '%name' dropped", array('%name' => $custom_table->table_name)));
  313. }
  314. else {
  315. tripal_report_error('tripal_chado', TRIPAL_ERROR, "Cannot drop the custom table: %name", array('%name' => $custom_table->table_name));
  316. drupal_set_message(t("Cannot drop the custom table: '%name'", array('%name' => $custom_table->table_name)));
  317. }
  318. }
  319. }