chado_install.inc 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  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. '#description' => $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', 'tripal_core_install_chado', $args, $user->uid);
  61. }
  62. /**
  63. * Install Chado Schema
  64. *
  65. * @ingroup tripal_core
  66. */
  67. function tripal_core_install_chado($action) {
  68. $vsql = "
  69. INSERT INTO {chadoprop} (type_id, value)
  70. VALUES (
  71. (SELECT cvterm_id
  72. FROM {cvterm} CVT
  73. INNER JOIN {cv} CV on CVT.cv_id = CV.cv_id
  74. WHERE CV.name = 'chado_properties' AND CVT.name = 'version'),
  75. :version)
  76. ";
  77. if ($action == 'Install Chado v1.2') {
  78. $schema_file = drupal_get_path('module', 'tripal_core') . '/chado_schema/default_schema-1.2.sql';
  79. $init_file = drupal_get_path('module', 'tripal_core') . '/chado_schema/initialize-1.2.sql';
  80. if (tripal_core_reset_chado_schema()) {
  81. $success = tripal_core_install_sql($schema_file);
  82. if ($success) {
  83. print "Install of Chado v1.2 (Step 1 of 2) Successful!\n";
  84. }
  85. else {
  86. print "Installation (Step 1 of 2) Problems! Please check output above for errors.\n";
  87. exit;
  88. }
  89. $success = tripal_core_install_sql($init_file);
  90. if ($success) {
  91. print "Install of Chado v1.2 (Step 2 of 2) Successful.\nInstallation Complete\n";
  92. }
  93. else {
  94. print "Installation (Step 2 of 2) Problems! Please check output above for errors.\n";
  95. exit;
  96. }
  97. chado_query($vsql, array(':version' => '1.2')); # set the version
  98. }
  99. else {
  100. print "ERROR: cannot install chado. Please check database permissions\n";
  101. exit;
  102. }
  103. }
  104. elseif ($action == 'Upgrade Chado v1.11 to v1.2') {
  105. $schema_file = drupal_get_path('module', 'tripal_core') . '/chado_schema/default_schema-1.11-1.2-diff.sql';
  106. $init_file = drupal_get_path('module', 'tripal_core') . '/chado_schema/upgrade-1.11-1.2.sql';
  107. $success = tripal_core_install_sql($schema_file);
  108. if ($success) {
  109. print "Upgrade from v1.11 to v1.2 (Step 1 of 2) Successful!\n";
  110. }
  111. else {
  112. print "Upgrade (Step 1 of 2) problems! Please check output above for errors.\n";
  113. exit;
  114. }
  115. $success = tripal_core_install_sql($init_file);
  116. if ($success) {
  117. print "Upgrade from v1.11 to v1.2 (Step 2 of 2) Successful.\nUpgrade Complete!\n";
  118. }
  119. else {
  120. print "Upgrade (Step 2 of 2) problems! Please check output above for errors.\n";
  121. exit;
  122. }
  123. chado_query($vsql, array(':version' => '1.2')); # set the version
  124. }
  125. elseif ($action == 'Install Chado v1.11') {
  126. $schema_file = drupal_get_path('module', 'tripal_core') . '/chado_schema/default_schema-1.11.sql';
  127. $init_file = drupal_get_path('module', 'tripal_core') . '/chado_schema/initialize-1.11.sql';
  128. if (tripal_core_reset_chado_schema()) {
  129. $success = tripal_core_install_sql($schema_file);
  130. if ($success) {
  131. print "Install of Chado v1.11 (Step 1 of 2) Successful!\n";
  132. }
  133. else {
  134. print "Installation (Step 1 of 2) Problems! Please check output above for errors.\n";
  135. exit;
  136. }
  137. $success = tripal_core_install_sql($init_file);
  138. if ($success) {
  139. print "Install of Chado v1.11 (Step 2 of 2) Successful.\nInstallation Complete!\n";
  140. }
  141. else {
  142. print "Installation (Step 2 of 2) Problems! Please check output above for errors.\n";
  143. exit;
  144. }
  145. }
  146. else {
  147. print "ERROR: cannot install chado. Please check database permissions\n";
  148. exit;
  149. }
  150. }
  151. }
  152. /**
  153. * Reset the Chado Schema
  154. * This drops the current chado and chado-related schema and re-creates it
  155. *
  156. * @ingroup tripal_core
  157. */
  158. function tripal_core_reset_chado_schema() {
  159. // drop current chado and chado-related schema
  160. if (tripal_core_schema_exists('chado')) {
  161. print "Dropping existing 'chado' schema\n";
  162. db_query("drop schema chado cascade");
  163. }
  164. if (tripal_core_schema_exists('genetic_code')) {
  165. print "Dropping existing 'genetic_code' schema\n";
  166. db_query("drop schema genetic_code cascade");
  167. }
  168. if (tripal_core_schema_exists('so')) {
  169. print "Dropping existing 'so' schema\n";
  170. db_query("drop schema so cascade");
  171. }
  172. if (tripal_core_schema_exists('frange')) {
  173. print "Dropping existing 'frange' schema\n";
  174. db_query("drop schema frange cascade");
  175. }
  176. // create the new chado schema
  177. print "Creating 'chado' schema\n";
  178. db_query("create schema chado");
  179. if (tripal_core_schema_exists('chado')) {
  180. // before creating the plpgsql language let's check to make sure
  181. // it doesn't already exists
  182. $sql = "SELECT COUNT(*) FROM pg_language WHERE lanname = 'plpgsql'";
  183. $results = db_query($sql);
  184. $count = $results->fetchObject();
  185. if (!$count or $count->count == 0) {
  186. db_query("create language plpgsql");
  187. }
  188. return TRUE;
  189. }
  190. return FALSE;
  191. }
  192. /**
  193. * Execute the provided SQL
  194. *
  195. * @param $sql_file
  196. * Contains SQL statements to be executed
  197. *
  198. * @ingroup tripal_core
  199. */
  200. function tripal_core_install_sql($sql_file) {
  201. $chado_local = tripal_core_schema_exists('chado');
  202. if ($chado_local) {
  203. db_query("set search_path to chado");
  204. }
  205. print "Loading $sql_file...\n";
  206. $lines = file($sql_file, FILE_SKIP_EMPTY_LINES);
  207. if (!$lines) {
  208. return 'Cannot open $schema_file';
  209. }
  210. $stack = array();
  211. $in_string = 0;
  212. $query = '';
  213. $i = 0;
  214. $success = 1;
  215. foreach ($lines as $line_num => $line) {
  216. $i++;
  217. $type = '';
  218. // find and remove comments except when inside of strings
  219. if (preg_match('/--/', $line) and !$in_string and !preg_match("/'.*?--.*?'/", $line)) {
  220. $line = preg_replace('/--.*$/', '', $line); // remove comments
  221. }
  222. if (preg_match('/\/\*.*?\*\//', $line)) {
  223. $line = preg_replace('/\/\*.*?\*\//', '', $line); // remove comments
  224. }
  225. // skip empty lines
  226. if (preg_match('/^\s*$/', $line) or strcmp($line, '')==0) {
  227. continue;
  228. }
  229. // Find SQL for new objects
  230. if (preg_match('/^\s*CREATE\s+TABLE/i', $line) and !$in_string) {
  231. $stack[] = 'table';
  232. $line = preg_replace("/public./", "chado.", $line);
  233. }
  234. if (preg_match('/^\s*ALTER\s+TABLE/i', $line) and !$in_string) {
  235. $stack[] = 'alter table';
  236. $line = preg_replace("/public./", "chado.", $line);
  237. }
  238. if (preg_match('/^\s*SET/i', $line) and !$in_string) {
  239. $stack[] = 'set';
  240. }
  241. if (preg_match('/^\s*CREATE\s+SCHEMA/i', $line) and !$in_string) {
  242. $stack[] = 'schema';
  243. }
  244. if (preg_match('/^\s*CREATE\s+SEQUENCE/i', $line) and !$in_string) {
  245. $stack[] = 'sequence';
  246. $line = preg_replace("/public./", "chado.", $line);
  247. }
  248. if (preg_match('/^\s*CREATE\s+(?:OR\s+REPLACE\s+)*VIEW/i', $line) and !$in_string) {
  249. $stack[] = 'view';
  250. $line = preg_replace("/public./", "chado.", $line);
  251. }
  252. if (preg_match('/^\s*COMMENT/i', $line) and !$in_string and sizeof($stack)==0) {
  253. $stack[] = 'comment';
  254. $line = preg_replace("/public./", "chado.", $line);
  255. }
  256. if (preg_match('/^\s*CREATE\s+(?:OR\s+REPLACE\s+)*FUNCTION/i', $line) and !$in_string) {
  257. $stack[] = 'function';
  258. $line = preg_replace("/public./", "chado.", $line);
  259. }
  260. if (preg_match('/^\s*CREATE\s+INDEX/i', $line) and !$in_string) {
  261. $stack[] = 'index';
  262. }
  263. if (preg_match('/^\s*INSERT\s+INTO/i', $line) and !$in_string) {
  264. $stack[] = 'insert';
  265. $line = preg_replace("/public./", "chado.", $line);
  266. }
  267. if (preg_match('/^\s*CREATE\s+TYPE/i', $line) and !$in_string) {
  268. $stack[] = 'type';
  269. }
  270. if (preg_match('/^\s*GRANT/i', $line) and !$in_string) {
  271. $stack[] = 'grant';
  272. }
  273. if (preg_match('/^\s*CREATE\s+AGGREGATE/i', $line) and !$in_string) {
  274. $stack[] = 'aggregate';
  275. }
  276. // determine if we are in a string that spans a line
  277. $matches = preg_match_all("/[']/i", $line, $temp);
  278. $in_string = $in_string - ($matches % 2);
  279. $in_string = abs($in_string);
  280. // if we've reached the end of an object the pop the stack
  281. if (strcmp($stack[sizeof($stack)-1], 'table') == 0 and preg_match('/\);\s*$/', $line)) {
  282. $type = array_pop($stack);
  283. }
  284. if (strcmp($stack[sizeof($stack)-1], 'alter table') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  285. $type = array_pop($stack);
  286. }
  287. if (strcmp($stack[sizeof($stack)-1], 'set') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  288. $type = array_pop($stack);
  289. }
  290. if (strcmp($stack[sizeof($stack)-1], 'schema') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  291. $type = array_pop($stack);
  292. }
  293. if (strcmp($stack[sizeof($stack)-1], 'sequence') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  294. $type = array_pop($stack);
  295. }
  296. if (strcmp($stack[sizeof($stack)-1], 'view') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  297. $type = array_pop($stack);
  298. }
  299. if (strcmp($stack[sizeof($stack)-1], 'comment') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  300. $type = array_pop($stack);
  301. }
  302. if (strcmp($stack[sizeof($stack)-1], 'function') == 0 and preg_match("/LANGUAGE.*?;\s+$/i", $line)) {
  303. $type = array_pop($stack);
  304. }
  305. if (strcmp($stack[sizeof($stack)-1], 'index') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  306. $type = array_pop($stack);
  307. }
  308. if (strcmp($stack[sizeof($stack)-1], 'insert') == 0 and preg_match('/\);\s*$/', $line)) {
  309. $type = array_pop($stack);
  310. }
  311. if (strcmp($stack[sizeof($stack)-1], 'type') == 0 and preg_match('/\);\s*$/', $line)) {
  312. $type = array_pop($stack);
  313. }
  314. if (strcmp($stack[sizeof($stack)-1], 'grant') == 0 and preg_match('/;\s*$/', $line) and !$in_string) {
  315. $type = array_pop($stack);
  316. }
  317. if (strcmp($stack[sizeof($stack)-1], 'aggregate') == 0 and preg_match('/\);\s*$/', $line)) {
  318. $type = array_pop($stack);
  319. }
  320. // if we're in a recognized SQL statement then let's keep track of lines
  321. if ($type or sizeof($stack) > 0) {
  322. $query .= "$line";
  323. }
  324. else {
  325. print "UNHANDLED $i, $in_string: $line";
  326. tripal_core_chado_install_done();
  327. return FALSE;
  328. }
  329. if (preg_match_all("/\n/", $query, $temp) > 100) {
  330. print "SQL query is too long. Terminating:\n$query\n";
  331. tripal_core_chado_install_done();
  332. return FALSE;
  333. }
  334. if ($type and sizeof($stack) == 0) {
  335. //print "Adding $type: line $i\n";
  336. // rewrite the set search_path to make 'public' be 'chado', but only if the
  337. // chado schema exists
  338. if (strcmp($type, 'set') == 0 and $chado_local) {
  339. $query = preg_replace("/public/m", "chado", $query);
  340. }
  341. // execute the statement
  342. $result = db_query($query);
  343. if (!$result) {
  344. $error = pg_last_error();
  345. print "FAILED. Line $i, $in_string\n$error:\n$query\n\n";
  346. tripal_core_chado_install_done();
  347. $success = 0;
  348. return $success;
  349. }
  350. $query = '';
  351. }
  352. }
  353. tripal_core_chado_install_done();
  354. return $success;
  355. }
  356. /**
  357. * Finish the Chado Schema Installation
  358. *
  359. * @ingroup tripal_core
  360. */
  361. function tripal_core_chado_install_done() {
  362. db_query("set search_path to default");
  363. }