chado_install.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  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 "Install of Chado v1.2 (Step 1 of 2) Successful!\n";
  82. }
  83. else {
  84. print "Installation (Step 1 of 2) Problems! Please check output above for errors.\n";
  85. }
  86. $success = tripal_core_install_sql($init_file);
  87. if ($success) {
  88. print "Install of Chado v1.2 (Step 2 of 2) Successful.\nInstallation Complete\n";
  89. }
  90. else {
  91. print "Installation (Step 2 of 2) 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 "Upgrade from v1.11 to v1.2 (Step 1 of 2) Successful!\n";
  106. }
  107. else {
  108. print "Upgrade (Step 1 of 2) problems! Please check output above for errors.\n";
  109. }
  110. $success = tripal_core_install_sql($init_file);
  111. if ($success) {
  112. print "Upgrade from v1.11 to v1.2 (Step 2 of 2) Successful.\nUpgrade Complete!\n";
  113. }
  114. else {
  115. print "Upgrade (Step 2 of 2) 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 "Install of Chado v1.11 (Step 1 of 2) Successful!\n";
  126. }
  127. else {
  128. print "Installation (Step 1 of 2) Problems! Please check output above for errors.\n";
  129. }
  130. $success = tripal_core_install_sql($init_file);
  131. if ($success) {
  132. print "Install of Chado v1.11 (Step 2 of 2) Successful.\nInstallation Complete!\n";
  133. }
  134. else {
  135. print "Installation (Step 2 of 2) 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. // before creating the plpgsql language let's check to make sure
  174. // it doesn't already exists
  175. $sql = "SELECT COUNT(*) FROM pg_language WHERE lanname = 'plpgsql'";
  176. $count = db_fetch_object(db_query($sql));
  177. if (!$count or $count->count == 0) {
  178. db_query("create language plpgsql");
  179. }
  180. return TRUE;
  181. }
  182. return FALSE;
  183. }
  184. /**
  185. * Execute the provided SQL
  186. *
  187. * @param $sql_file
  188. * Contains SQL statements to be executed
  189. *
  190. * @ingroup tripal_core
  191. */
  192. function tripal_core_install_sql($sql_file) {
  193. $chado_local = tripal_core_schema_exists('chado');
  194. if($chado_local) {
  195. db_query("set search_path to chado");
  196. }
  197. print "Loading $sql_file...\n";
  198. $lines = file($sql_file, FILE_SKIP_EMPTY_LINES);
  199. if (!$lines) {
  200. return 'Cannot open $schema_file';
  201. }
  202. $stack = array();
  203. $in_string = 0;
  204. $query = '';
  205. $i = 0;
  206. $success = 1;
  207. foreach ($lines as $line_num => $line) {
  208. $i++;
  209. $type = '';
  210. // find and remove comments except when inside of strings
  211. if (preg_match('/--/', $line) and !$in_string and !preg_match("/'.*?--.*?'/", $line)) {
  212. $line = preg_replace('/--.*$/', '', $line); // remove comments
  213. }
  214. if (preg_match('/\/\*.*?\*\//', $line)) {
  215. $line = preg_replace('/\/\*.*?\*\//', '', $line); // remove comments
  216. }
  217. // skip empty lines
  218. if (preg_match('/^\s*$/', $line) or strcmp($line, '')==0) {
  219. continue;
  220. }
  221. // Find SQL for new objects
  222. if (preg_match('/^\s*CREATE\s+TABLE/i', $line) and !$in_string) {
  223. $stack[] = 'table';
  224. $line = preg_replace("/public./", "chado.", $line);
  225. }
  226. if (preg_match('/^\s*ALTER\s+TABLE/i', $line) and !$in_string) {
  227. $stack[] = 'alter table';
  228. $line = preg_replace("/public./", "chado.", $line);
  229. }
  230. if (preg_match('/^\s*SET/i', $line) and !$in_string) {
  231. $stack[] = 'set';
  232. }
  233. if (preg_match('/^\s*CREATE\s+SCHEMA/i', $line) and !$in_string) {
  234. $stack[] = 'schema';
  235. }
  236. if (preg_match('/^\s*CREATE\s+SEQUENCE/i', $line) and !$in_string) {
  237. $stack[] = 'sequence';
  238. $line = preg_replace("/public./", "chado.", $line);
  239. }
  240. if (preg_match('/^\s*CREATE\s+(?:OR\s+REPLACE\s+)*VIEW/i', $line) and !$in_string) {
  241. $stack[] = 'view';
  242. $line = preg_replace("/public./", "chado.", $line);
  243. }
  244. if (preg_match('/^\s*COMMENT/i', $line) and !$in_string and sizeof($stack)==0) {
  245. $stack[] = 'comment';
  246. $line = preg_replace("/public./", "chado.", $line);
  247. }
  248. if (preg_match('/^\s*CREATE\s+(?:OR\s+REPLACE\s+)*FUNCTION/i', $line) and !$in_string) {
  249. $stack[] = 'function';
  250. $line = preg_replace("/public./", "chado.", $line);
  251. }
  252. if (preg_match('/^\s*CREATE\s+INDEX/i', $line) and !$in_string) {
  253. $stack[] = 'index';
  254. }
  255. if (preg_match('/^\s*INSERT\s+INTO/i', $line) and !$in_string) {
  256. $stack[] = 'insert';
  257. $line = preg_replace("/public./", "chado.", $line);
  258. }
  259. if (preg_match('/^\s*CREATE\s+TYPE/i', $line) and !$in_string) {
  260. $stack[] = 'type';
  261. }
  262. if (preg_match('/^\s*GRANT/i', $line) and !$in_string) {
  263. $stack[] = 'grant';
  264. }
  265. if (preg_match('/^\s*CREATE\s+AGGREGATE/i', $line) and !$in_string) {
  266. $stack[] = 'aggregate';
  267. }
  268. // determine if we are in a string that spans a line
  269. $matches = preg_match_all("/[']/i", $line, $temp);
  270. $in_string = $in_string - ($matches % 2);
  271. $in_string = abs($in_string);
  272. // if we've reached the end of an object the pop the stack
  273. if (strcmp($stack[sizeof($stack)-1], 'table') == 0 and preg_match('/\);\s*$/', $line)) {
  274. $type = array_pop($stack);
  275. }
  276. if (strcmp($stack[sizeof($stack)-1], 'alter table') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  277. $type = array_pop($stack);
  278. }
  279. if (strcmp($stack[sizeof($stack)-1], 'set') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  280. $type = array_pop($stack);
  281. }
  282. if (strcmp($stack[sizeof($stack)-1], 'schema') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  283. $type = array_pop($stack);
  284. }
  285. if (strcmp($stack[sizeof($stack)-1], 'sequence') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  286. $type = array_pop($stack);
  287. }
  288. if (strcmp($stack[sizeof($stack)-1], 'view') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  289. $type = array_pop($stack);
  290. }
  291. if (strcmp($stack[sizeof($stack)-1], 'comment') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  292. $type = array_pop($stack);
  293. }
  294. if (strcmp($stack[sizeof($stack)-1], 'function') == 0 and preg_match("/LANGUAGE.*?;\s+$/i", $line)) {
  295. $type = array_pop($stack);
  296. }
  297. if (strcmp($stack[sizeof($stack)-1], 'index') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  298. $type = array_pop($stack);
  299. }
  300. if (strcmp($stack[sizeof($stack)-1], 'insert') == 0 and preg_match('/\);\s*$/', $line)) {
  301. $type = array_pop($stack);
  302. }
  303. if (strcmp($stack[sizeof($stack)-1], 'type') == 0 and preg_match('/\);\s*$/', $line)) {
  304. $type = array_pop($stack);
  305. }
  306. if (strcmp($stack[sizeof($stack)-1], 'grant') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  307. $type = array_pop($stack);
  308. }
  309. if (strcmp($stack[sizeof($stack)-1], 'aggregate') == 0 and preg_match('/\);\s*$/', $line)) {
  310. $type = array_pop($stack);
  311. }
  312. // if we're in a recognized SQL statement then let's keep track of lines
  313. if ($type or sizeof($stack) > 0) {
  314. $query .= "$line";
  315. }
  316. else {
  317. print "UNHANDLED $i, $in_string: $line";
  318. tripal_core_chado_install_done();
  319. return FALSE;
  320. }
  321. if (preg_match_all("/\n/", $query, $temp) > 100) {
  322. print "SQL query is too long. Terminating:\n$query\n";
  323. tripal_core_chado_install_done();
  324. return FALSE;
  325. }
  326. if ($type and sizeof($stack) == 0) {
  327. //print "Adding $type: line $i\n";
  328. // rewrite the set search_path to make 'public' be 'chado', but only if the
  329. // chado schema exists
  330. if (strcmp($type, 'set')==0 and $chado_local){
  331. $query = preg_replace("/public/m", "chado", $query);
  332. }
  333. if (!$chado_local) {
  334. $previous = tripal_db_set_active('chado');
  335. }
  336. $result = db_query($query);
  337. if (!$chado_local) {
  338. tripal_db_set_active($previous);
  339. }
  340. if (!$result) {
  341. $error = pg_last_error();
  342. print "FAILED!!\nError Message:\nSQL $i, $in_string: $query\n$error\n";
  343. tripal_core_chado_install_done();
  344. $success = 0;
  345. }
  346. $query = '';
  347. }
  348. }
  349. tripal_core_chado_install_done();
  350. return $success;
  351. }
  352. /**
  353. * Finish the Chado Schema Installation
  354. *
  355. * @ingroup tripal_core
  356. */
  357. function tripal_core_chado_install_done() {
  358. // return the search path to normal
  359. db_query("set search_path to public");
  360. }