chado_install.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  1. <?php
  2. /**
  3. * @file
  4. * Functions to install chado schema through Drupal
  5. */
  6. /**
  7. * Load Chado Schema Form
  8. *
  9. * @ingroup tripal_core
  10. */
  11. function tripal_core_chado_load_form() {
  12. // we want to force the version of Chado to be set properly
  13. $real_version = tripal_core_set_chado_version();
  14. // get the effective version. Pass true as second argument
  15. // to warn the user if the current version is not compatible
  16. $version = tripal_core_get_chado_version(FALSE, TRUE);
  17. $form['current_version'] = array(
  18. '#type' => 'item',
  19. '#title' => t("Current installed version of Chado"),
  20. '#value' => $real_version,
  21. );
  22. $form['action_to_do'] = array(
  23. '#type' => 'radios',
  24. '#title' => 'Installation/Upgrade Action',
  25. '#options' => array(
  26. 'Install Chado v1.2' => t('New Install of Chado v1.2 (erases all existing Chado data if Chado already exists)'),
  27. 'Upgrade Chado v1.11 to v1.2' => t('Upgrade existing Chado v1.11 to v1.2 (no data is lost)'),
  28. 'Install Chado v1.11' => t('New Install of Chado v1.11 (erases all existing Chado data if Chado already exists)')
  29. ),
  30. '#description' => t('Select an action to perform'),
  31. '#required' => TRUE
  32. );
  33. $form['description'] = array(
  34. '#type' => 'item',
  35. '#value' => t("<font color=\"red\">WARNING:</font> A new install of Chado v1.2 or v1.11 "
  36. ."will install Chado within the Drupal database in a \"chado\" schema. If the \"chado\" schema already exists it will "
  37. ."be overwritten and all data will be lost. You may choose to update an existing Chado v1.11 if it was installed with a previous "
  38. ."version of Tripal (e.g. v0.3b or v0.3.1). The update will not erase any data. "
  39. ."If you are using chado in a database external to the "
  40. ."Drupal database with a 'chado' entry in the 'settings.php' \$db_url argument "
  41. ."then Chado will be installed but will not be used . The external "
  42. ."database specified in the settings.php file takes precedence."),
  43. );
  44. $form['button'] = array(
  45. '#type' => 'submit',
  46. '#value' => t('Install/Upgrade Chado'),
  47. '#weight' => 2,
  48. );
  49. return $form;
  50. }
  51. /**
  52. * Submit Load Chado Schema 1.11 Form
  53. *
  54. * @ingroup tripal_core
  55. */
  56. function tripal_core_chado_load_form_submit($form, &$form_state) {
  57. global $user;
  58. $action_to_do = trim($form_state['values']['action_to_do']);
  59. $args = array($action_to_do);
  60. tripal_add_job($action_to_do, 'tripal_core',
  61. 'tripal_core_install_chado', $args, $user->uid);
  62. }
  63. /**
  64. * Install Chado Schema
  65. *
  66. * @ingroup tripal_core
  67. */
  68. function tripal_core_install_chado($action) {
  69. $vsql = "INSERT INTO chadoprop (type_id, value) VALUES " .
  70. "((SELECT cvterm_id " .
  71. "FROM cvterm CVT " .
  72. " INNER JOIN cv CV on CVT.cv_id = CV.cv_id " .
  73. "WHERE CV.name = 'chado_properties' AND CVT.name = 'version'), " .
  74. "'%s') ";
  75. if($action == 'Install Chado v1.2'){
  76. $schema_file = drupal_get_path('module', 'tripal_core') . '/chado_schema/default_schema-1.2.sql';
  77. $init_file = drupal_get_path('module', 'tripal_core') . '/chado_schema/initialize-1.2.sql';
  78. if (tripal_core_reset_chado_schema()) {
  79. $success = tripal_core_install_sql($schema_file);
  80. if ($success) {
  81. print "Installation Complete!\n";
  82. }
  83. else {
  84. print "Installation Problems! Please check output above for errors.\n";
  85. }
  86. $success = tripal_core_install_sql($init_file);
  87. if ($success) {
  88. print "Installation Complete!\n";
  89. }
  90. else {
  91. print "Installation Problems! Please check output above for errors.\n";
  92. }
  93. db_query($vsql,'1.2'); # set the version
  94. }
  95. else {
  96. print "ERROR: cannot install chado. Please check database permissions\n";
  97. exit;
  98. }
  99. }
  100. elseif($action == 'Upgrade Chado v1.11 to v1.2') {
  101. $schema_file = drupal_get_path('module', 'tripal_core') . '/chado_schema/default_schema-1.11-1.2-diff.sql';
  102. $init_file = drupal_get_path('module', 'tripal_core') . '/chado_schema/upgrade-1.11-1.2.sql';
  103. $success = tripal_core_install_sql($schema_file);
  104. if ($success) {
  105. print "Installation Complete!\n";
  106. }
  107. else {
  108. print "Installation Problems! Please check output above for errors.\n";
  109. }
  110. $success = tripal_core_install_sql($init_file);
  111. if ($success) {
  112. print "Installation Complete!\n";
  113. }
  114. else {
  115. print "Installation Problems! Please check output above for errors.\n";
  116. }
  117. db_query($vsql,'1.2'); # set the version
  118. }
  119. elseif($action == 'Install Chado v1.11'){
  120. $schema_file = drupal_get_path('module', 'tripal_core') . '/chado_schema/default_schema-1.11.sql';
  121. $init_file = drupal_get_path('module', 'tripal_core') . '/chado_schema/initialize-1.11.sql';
  122. if (tripal_core_reset_chado_schema()) {
  123. $success = tripal_core_install_sql($schema_file);
  124. if ($success) {
  125. print "Installation Complete!\n";
  126. }
  127. else {
  128. print "Installation Problems! Please check output above for errors.\n";
  129. }
  130. $success = tripal_core_install_sql($init_file);
  131. if ($success) {
  132. print "Installation Complete!\n";
  133. }
  134. else {
  135. print "Installation Problems! Please check output above for errors.\n";
  136. }
  137. }
  138. else {
  139. print "ERROR: cannot install chado. Please check database permissions\n";
  140. exit;
  141. }
  142. }
  143. }
  144. /**
  145. * Reset the Chado Schema
  146. * This drops the current chado and chado-related schema and re-creates it
  147. *
  148. * @ingroup tripal_core
  149. */
  150. function tripal_core_reset_chado_schema() {
  151. global $active_db;
  152. // drop current chado and chado-related schema
  153. if (tripal_core_schema_exists('chado')) {
  154. print "Dropping existing 'chado' schema\n";
  155. chado_query("drop schema chado cascade");
  156. }
  157. if (tripal_core_schema_exists('genetic_code')) {
  158. print "Dropping existing 'genetic_code' schema\n";
  159. chado_query("drop schema genetic_code cascade");
  160. }
  161. if (tripal_core_schema_exists('so')) {
  162. print "Dropping existing 'so' schema\n";
  163. chado_query("drop schema so cascade");
  164. }
  165. if (tripal_core_schema_exists('frange')) {
  166. print "Dropping existing 'frange' schema\n";
  167. chado_query("drop schema frange cascade");
  168. }
  169. // create the new chado schema
  170. print "Creating 'chado' schema\n";
  171. chado_query("create schema chado");
  172. if (tripal_core_schema_exists('chado')) {
  173. chado_query("create language plpgsql");
  174. return TRUE;
  175. }
  176. return FALSE;
  177. }
  178. /**
  179. * Check that a given schema exists
  180. *
  181. * @param $schema
  182. * The name of the schema to check the existence of
  183. *
  184. * @return
  185. * TRUE/FALSE depending upon whether or not the schema exists
  186. *
  187. * @ingroup tripal_core
  188. */
  189. function tripal_core_schema_exists($schema) {
  190. // check that the chado schema now exists
  191. $sql = "SELECT nspname
  192. FROM pg_namespace
  193. WHERE has_schema_privilege(nspname, 'USAGE') and nspname = '%s'
  194. ORDER BY nspname";
  195. $name = db_fetch_object(db_query($sql, $schema));
  196. if (strcmp($name->nspname, $schema) != 0) {
  197. return FALSE;
  198. }
  199. return TRUE;
  200. }
  201. /**
  202. * Execute the provided SQL
  203. *
  204. * @param $sql_file
  205. * Contains SQL statements to be executed
  206. *
  207. * @ingroup tripal_core
  208. */
  209. function tripal_core_install_sql($sql_file) {
  210. chado_query("set search_path to chado,public");
  211. print "Loading $sql_file...\n";
  212. $lines = file($sql_file, FILE_SKIP_EMPTY_LINES);
  213. if (!$lines) {
  214. return 'Cannot open $schema_file';
  215. }
  216. $stack = array();
  217. $in_string = 0;
  218. $query = '';
  219. $i = 0;
  220. $success = 1;
  221. foreach ($lines as $line_num => $line) {
  222. $i++;
  223. $type = '';
  224. // find and remove comments except when inside of strings
  225. if (preg_match('/--/', $line) and !$in_string and !preg_match("/'.*?--.*?'/", $line)) {
  226. $line = preg_replace('/--.*$/', '', $line); // remove comments
  227. }
  228. if (preg_match('/\/\*.*?\*\//', $line)) {
  229. $line = preg_replace('/\/\*.*?\*\//', '', $line); // remove comments
  230. }
  231. // skip empty lines
  232. if (preg_match('/^\s*$/', $line) or strcmp($line, '')==0) {
  233. continue;
  234. }
  235. // Find SQL for new objects
  236. if (preg_match('/^\s*CREATE\s+TABLE/i', $line) and !$in_string) {
  237. $stack[] = 'table';
  238. $line = preg_replace("/public./", "chado.", $line);
  239. }
  240. if (preg_match('/^\s*ALTER\s+TABLE/i', $line) and !$in_string) {
  241. $stack[] = 'alter table';
  242. $line = preg_replace("/public./", "chado.", $line);
  243. }
  244. if (preg_match('/^\s*SET/i', $line) and !$in_string) {
  245. $stack[] = 'set';
  246. }
  247. if (preg_match('/^\s*CREATE\s+SCHEMA/i', $line) and !$in_string) {
  248. $stack[] = 'schema';
  249. }
  250. if (preg_match('/^\s*CREATE\s+SEQUENCE/i', $line) and !$in_string) {
  251. $stack[] = 'sequence';
  252. $line = preg_replace("/public./", "chado.", $line);
  253. }
  254. if (preg_match('/^\s*CREATE\s+(?:OR\s+REPLACE\s+)*VIEW/i', $line) and !$in_string) {
  255. $stack[] = 'view';
  256. $line = preg_replace("/public./", "chado.", $line);
  257. }
  258. if (preg_match('/^\s*COMMENT/i', $line) and !$in_string and sizeof($stack)==0) {
  259. $stack[] = 'comment';
  260. $line = preg_replace("/public./", "chado.", $line);
  261. }
  262. if (preg_match('/^\s*CREATE\s+(?:OR\s+REPLACE\s+)*FUNCTION/i', $line) and !$in_string) {
  263. $stack[] = 'function';
  264. $line = preg_replace("/public./", "chado.", $line);
  265. }
  266. if (preg_match('/^\s*CREATE\s+INDEX/i', $line) and !$in_string) {
  267. $stack[] = 'index';
  268. }
  269. if (preg_match('/^\s*INSERT\s+INTO/i', $line) and !$in_string) {
  270. $stack[] = 'insert';
  271. $line = preg_replace("/public./", "chado.", $line);
  272. }
  273. if (preg_match('/^\s*CREATE\s+TYPE/i', $line) and !$in_string) {
  274. $stack[] = 'type';
  275. }
  276. if (preg_match('/^\s*GRANT/i', $line) and !$in_string) {
  277. $stack[] = 'grant';
  278. }
  279. if (preg_match('/^\s*CREATE\s+AGGREGATE/i', $line) and !$in_string) {
  280. $stack[] = 'aggregate';
  281. }
  282. // determine if we are in a string that spans a line
  283. $matches = preg_match_all("/[']/i", $line, $temp);
  284. $in_string = $in_string - ($matches % 2);
  285. $in_string = abs($in_string);
  286. // if we've reached the end of an object the pop the stack
  287. if (strcmp($stack[sizeof($stack)-1], 'table') == 0 and preg_match('/\);\s*$/', $line)) {
  288. $type = array_pop($stack);
  289. }
  290. if (strcmp($stack[sizeof($stack)-1], 'alter table') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  291. $type = array_pop($stack);
  292. }
  293. if (strcmp($stack[sizeof($stack)-1], 'set') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  294. $type = array_pop($stack);
  295. }
  296. if (strcmp($stack[sizeof($stack)-1], 'schema') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  297. $type = array_pop($stack);
  298. }
  299. if (strcmp($stack[sizeof($stack)-1], 'sequence') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  300. $type = array_pop($stack);
  301. }
  302. if (strcmp($stack[sizeof($stack)-1], 'view') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  303. $type = array_pop($stack);
  304. }
  305. if (strcmp($stack[sizeof($stack)-1], 'comment') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  306. $type = array_pop($stack);
  307. }
  308. if (strcmp($stack[sizeof($stack)-1], 'function') == 0 and preg_match("/LANGUAGE.*?;\s+$/i", $line)) {
  309. $type = array_pop($stack);
  310. }
  311. if (strcmp($stack[sizeof($stack)-1], 'index') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  312. $type = array_pop($stack);
  313. }
  314. if (strcmp($stack[sizeof($stack)-1], 'insert') == 0 and preg_match('/\);\s*$/', $line)) {
  315. $type = array_pop($stack);
  316. }
  317. if (strcmp($stack[sizeof($stack)-1], 'type') == 0 and preg_match('/\);\s*$/', $line)) {
  318. $type = array_pop($stack);
  319. }
  320. if (strcmp($stack[sizeof($stack)-1], 'grant') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  321. $type = array_pop($stack);
  322. }
  323. if (strcmp($stack[sizeof($stack)-1], 'aggregate') == 0 and preg_match('/\);\s*$/', $line)) {
  324. $type = array_pop($stack);
  325. }
  326. // if we're in a recognized SQL statement then let's keep track of lines
  327. if ($type or sizeof($stack) > 0) {
  328. $query .= "$line";
  329. }
  330. else {
  331. print "UNHANDLED $i, $in_string: $line";
  332. tripal_core_chado_install_done();
  333. return FALSE;
  334. }
  335. if (preg_match_all("/\n/", $query, $temp) > 100) {
  336. print "SQL query is too long. Terminating:\n$query\n";
  337. tripal_core_chado_install_done();
  338. return FALSE;
  339. }
  340. if ($type and sizeof($stack) == 0) {
  341. //print "Adding $type: line $i\n";
  342. // rewrite the set serach_path to make 'public' be 'chado'
  343. if (strcmp($type, 'set')==0) {
  344. $query = preg_replace("/public/m", "chado", $query);
  345. }
  346. $result = chado_query($query);
  347. if (!$result) {
  348. $error = pg_last_error();
  349. print "FAILED!!\nError Message:\nSQL $i, $in_string: $query\n$error\n";
  350. chado_query("set search_path to public,chado");
  351. $success = 0;
  352. }
  353. $query = '';
  354. }
  355. }
  356. tripal_core_chado_install_done();
  357. return $success;
  358. }
  359. /**
  360. * Finish the Chado Schema Installation
  361. *
  362. * @ingroup tripal_core
  363. */
  364. function tripal_core_chado_install_done() {
  365. // return the search path to normal
  366. chado_query("set search_path to public,chado");
  367. }