chado_install.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  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. chado_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. chado_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. db_query("drop schema chado cascade");
  156. }
  157. if (tripal_core_schema_exists('genetic_code')) {
  158. print "Dropping existing 'genetic_code' schema\n";
  159. db_query("drop schema genetic_code cascade");
  160. }
  161. if (tripal_core_schema_exists('so')) {
  162. print "Dropping existing 'so' schema\n";
  163. db_query("drop schema so cascade");
  164. }
  165. if (tripal_core_schema_exists('frange')) {
  166. print "Dropping existing 'frange' schema\n";
  167. db_query("drop schema frange cascade");
  168. }
  169. // create the new chado schema
  170. print "Creating 'chado' schema\n";
  171. db_query("create schema chado");
  172. if (tripal_core_schema_exists('chado')) {
  173. db_query("create language plpgsql");
  174. return TRUE;
  175. }
  176. return FALSE;
  177. }
  178. /**
  179. * Execute the provided SQL
  180. *
  181. * @param $sql_file
  182. * Contains SQL statements to be executed
  183. *
  184. * @ingroup tripal_core
  185. */
  186. function tripal_core_install_sql($sql_file) {
  187. $chado_local = tripal_core_schema_exists('chado');
  188. if($chado_local) {
  189. db_query("set search_path to chado");
  190. }
  191. print "Loading $sql_file...\n";
  192. $lines = file($sql_file, FILE_SKIP_EMPTY_LINES);
  193. if (!$lines) {
  194. return 'Cannot open $schema_file';
  195. }
  196. $stack = array();
  197. $in_string = 0;
  198. $query = '';
  199. $i = 0;
  200. $success = 1;
  201. foreach ($lines as $line_num => $line) {
  202. $i++;
  203. $type = '';
  204. // find and remove comments except when inside of strings
  205. if (preg_match('/--/', $line) and !$in_string and !preg_match("/'.*?--.*?'/", $line)) {
  206. $line = preg_replace('/--.*$/', '', $line); // remove comments
  207. }
  208. if (preg_match('/\/\*.*?\*\//', $line)) {
  209. $line = preg_replace('/\/\*.*?\*\//', '', $line); // remove comments
  210. }
  211. // skip empty lines
  212. if (preg_match('/^\s*$/', $line) or strcmp($line, '')==0) {
  213. continue;
  214. }
  215. // Find SQL for new objects
  216. if (preg_match('/^\s*CREATE\s+TABLE/i', $line) and !$in_string) {
  217. $stack[] = 'table';
  218. $line = preg_replace("/public./", "chado.", $line);
  219. }
  220. if (preg_match('/^\s*ALTER\s+TABLE/i', $line) and !$in_string) {
  221. $stack[] = 'alter table';
  222. $line = preg_replace("/public./", "chado.", $line);
  223. }
  224. if (preg_match('/^\s*SET/i', $line) and !$in_string) {
  225. $stack[] = 'set';
  226. }
  227. if (preg_match('/^\s*CREATE\s+SCHEMA/i', $line) and !$in_string) {
  228. $stack[] = 'schema';
  229. }
  230. if (preg_match('/^\s*CREATE\s+SEQUENCE/i', $line) and !$in_string) {
  231. $stack[] = 'sequence';
  232. $line = preg_replace("/public./", "chado.", $line);
  233. }
  234. if (preg_match('/^\s*CREATE\s+(?:OR\s+REPLACE\s+)*VIEW/i', $line) and !$in_string) {
  235. $stack[] = 'view';
  236. $line = preg_replace("/public./", "chado.", $line);
  237. }
  238. if (preg_match('/^\s*COMMENT/i', $line) and !$in_string and sizeof($stack)==0) {
  239. $stack[] = 'comment';
  240. $line = preg_replace("/public./", "chado.", $line);
  241. }
  242. if (preg_match('/^\s*CREATE\s+(?:OR\s+REPLACE\s+)*FUNCTION/i', $line) and !$in_string) {
  243. $stack[] = 'function';
  244. $line = preg_replace("/public./", "chado.", $line);
  245. }
  246. if (preg_match('/^\s*CREATE\s+INDEX/i', $line) and !$in_string) {
  247. $stack[] = 'index';
  248. }
  249. if (preg_match('/^\s*INSERT\s+INTO/i', $line) and !$in_string) {
  250. $stack[] = 'insert';
  251. $line = preg_replace("/public./", "chado.", $line);
  252. }
  253. if (preg_match('/^\s*CREATE\s+TYPE/i', $line) and !$in_string) {
  254. $stack[] = 'type';
  255. }
  256. if (preg_match('/^\s*GRANT/i', $line) and !$in_string) {
  257. $stack[] = 'grant';
  258. }
  259. if (preg_match('/^\s*CREATE\s+AGGREGATE/i', $line) and !$in_string) {
  260. $stack[] = 'aggregate';
  261. }
  262. // determine if we are in a string that spans a line
  263. $matches = preg_match_all("/[']/i", $line, $temp);
  264. $in_string = $in_string - ($matches % 2);
  265. $in_string = abs($in_string);
  266. // if we've reached the end of an object the pop the stack
  267. if (strcmp($stack[sizeof($stack)-1], 'table') == 0 and preg_match('/\);\s*$/', $line)) {
  268. $type = array_pop($stack);
  269. }
  270. if (strcmp($stack[sizeof($stack)-1], 'alter table') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  271. $type = array_pop($stack);
  272. }
  273. if (strcmp($stack[sizeof($stack)-1], 'set') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  274. $type = array_pop($stack);
  275. }
  276. if (strcmp($stack[sizeof($stack)-1], 'schema') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  277. $type = array_pop($stack);
  278. }
  279. if (strcmp($stack[sizeof($stack)-1], 'sequence') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  280. $type = array_pop($stack);
  281. }
  282. if (strcmp($stack[sizeof($stack)-1], 'view') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  283. $type = array_pop($stack);
  284. }
  285. if (strcmp($stack[sizeof($stack)-1], 'comment') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  286. $type = array_pop($stack);
  287. }
  288. if (strcmp($stack[sizeof($stack)-1], 'function') == 0 and preg_match("/LANGUAGE.*?;\s+$/i", $line)) {
  289. $type = array_pop($stack);
  290. }
  291. if (strcmp($stack[sizeof($stack)-1], 'index') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  292. $type = array_pop($stack);
  293. }
  294. if (strcmp($stack[sizeof($stack)-1], 'insert') == 0 and preg_match('/\);\s*$/', $line)) {
  295. $type = array_pop($stack);
  296. }
  297. if (strcmp($stack[sizeof($stack)-1], 'type') == 0 and preg_match('/\);\s*$/', $line)) {
  298. $type = array_pop($stack);
  299. }
  300. if (strcmp($stack[sizeof($stack)-1], 'grant') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  301. $type = array_pop($stack);
  302. }
  303. if (strcmp($stack[sizeof($stack)-1], 'aggregate') == 0 and preg_match('/\);\s*$/', $line)) {
  304. $type = array_pop($stack);
  305. }
  306. // if we're in a recognized SQL statement then let's keep track of lines
  307. if ($type or sizeof($stack) > 0) {
  308. $query .= "$line";
  309. }
  310. else {
  311. print "UNHANDLED $i, $in_string: $line";
  312. tripal_core_chado_install_done();
  313. return FALSE;
  314. }
  315. if (preg_match_all("/\n/", $query, $temp) > 100) {
  316. print "SQL query is too long. Terminating:\n$query\n";
  317. tripal_core_chado_install_done();
  318. return FALSE;
  319. }
  320. if ($type and sizeof($stack) == 0) {
  321. //print "Adding $type: line $i\n";
  322. // rewrite the set search_path to make 'public' be 'chado', but only if the
  323. // chado schema exists
  324. if (strcmp($type, 'set')==0 and $chado_local){
  325. $query = preg_replace("/public/m", "chado", $query);
  326. }
  327. if (!$chado_local) {
  328. $previous = tripal_core_db_set_active('chado');
  329. }
  330. $result = db_query($query);
  331. if (!$chado_local) {
  332. tripal_core_db_set_active($previous);
  333. }
  334. if (!$result) {
  335. $error = pg_last_error();
  336. print "FAILED!!\nError Message:\nSQL $i, $in_string: $query\n$error\n";
  337. tripal_core_chado_install_done();
  338. $success = 0;
  339. }
  340. $query = '';
  341. }
  342. }
  343. tripal_core_chado_install_done();
  344. return $success;
  345. }
  346. /**
  347. * Finish the Chado Schema Installation
  348. *
  349. * @ingroup tripal_core
  350. */
  351. function tripal_core_chado_install_done() {
  352. // return the search path to normal
  353. db_query("set search_path to public");
  354. }