ChadoDatabaseConnection.inc 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. /**
  3. * Overrides the DatabaseConnection_pgsql.
  4. *
  5. * The primary purpose of this class is to allow for prefixing of Chado tables.
  6. * By default the only way to support this is to add an array to the 'prefix'
  7. * key of the settings.php file. But this is problematic. For example, what
  8. * if there is a contact table in the Drupal database as well as one in Chado.
  9. * The default prefix replacement would always rewrite it to be the one in
  10. * Chado. This class is intended to be used when the Chado tables
  11. * are needed.
  12. */
  13. class ChadoDatabaseConnection extends SelectQueryExtender {
  14. /**
  15. * A replacement constructor for DatabaseConnection_pgsql::__construct.
  16. *
  17. * The primary purpose for overiding the constructor is to dynamically add
  18. * a set of prefixes for replacing. This will allow Chado tables to be
  19. * prefixed with the 'chado.' schema prefix. The alternative to overridding
  20. * the DatabaseConnection_pgsql is to ask the end-user to add a prefix
  21. * entry for every Chado table and custom table they create. That's not
  22. * very manageable.
  23. */
  24. public function __construct() {
  25. }
  26. public function select($table, $alias = NULL, array $options = []) {
  27. $table = $this->prefixTables($table);
  28. $this->query->select($table, $alias, $options);
  29. return $this;
  30. }
  31. public function join($table, $alias = NULL, $condition = NULL, $arguments = []) {
  32. $table = $this->prefixTables($table);
  33. $this->query->join($table, $alias, $condition, $arguments);
  34. return $this;
  35. }
  36. public function prefixTables($sql) {
  37. $chado_schema_name = chado_get_schema_name('chado');
  38. $drupal_schema_name = chado_get_schema_name('drupal');
  39. $sql = preg_replace('/\{(.*?)\}/', $chado_schema_name.'.$1', $sql);
  40. $sql = preg_replace('/\[(\w+)\]/', $drupal_schema_name.'.$1', $sql);
  41. return $sql;
  42. }
  43. }