2 * Copyright (C) 2012 Openismus GmbH
4 * This file is part of GWT-Glom.
6 * GWT-Glom is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU Lesser General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or (at your
9 * option) any later version.
11 * GWT-Glom is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with GWT-Glom. If not, see <http://www.gnu.org/licenses/>.
20 package org.glom.web.server;
22 import java.io.BufferedReader;
24 import java.io.FileNotFoundException;
25 import java.io.FileOutputStream;
26 import java.io.IOException;
27 import java.io.InputStream;
28 import java.io.InputStreamReader;
29 import java.net.ServerSocket;
30 import java.sql.Connection;
31 import java.sql.DriverManager;
32 import java.sql.SQLException;
33 import java.util.ArrayList;
34 import java.util.List;
35 import java.util.Locale;
37 import java.util.Map.Entry;
38 import java.util.Properties;
40 import org.apache.commons.lang3.StringUtils;
41 import org.glom.web.server.libglom.Document;
42 import org.glom.web.shared.DataItem;
43 import org.glom.web.shared.libglom.Field;
44 import org.jooq.InsertResultStep;
45 import org.jooq.InsertSetStep;
46 import org.jooq.Record;
47 import org.jooq.SQLDialect;
48 import org.jooq.Table;
49 import org.jooq.exception.DataAccessException;
50 import org.jooq.impl.Factory;
52 import com.google.common.io.Files;
53 import com.ibm.icu.text.NumberFormat;
56 * @author Murray Cumming <murrayc@murrayc.com>
59 public class SelfHoster {
60 // private String tempFilepathDir = "";
61 private boolean selfHostingActive = false;
62 private Document document = null;
63 private String username = "";
64 private String password = "";
66 SelfHoster(final Document document) {
67 this.document = document;
70 private static final int PORT_POSTGRESQL_SELF_HOSTED_START = 5433;
71 private static final int PORT_POSTGRESQL_SELF_HOSTED_END = 5500;
73 private static final String DEFAULT_CONFIG_PG_HBA_LOCAL_8p4 = "# TYPE DATABASE USER CIDR-ADDRESS METHOD\n"
75 + "# local is for Unix domain socket connections only\n"
76 + "# trust allows connection from the current PC without a password:\n"
77 + "local all all trust\n"
78 + "local all all ident\n"
79 + "local all all md5\n"
81 + "# TCP connections from the same computer, with a password:\n"
82 + "host all all 127.0.0.1 255.255.255.255 md5\n"
83 + "# IPv6 local connections:\n"
84 + "host all all ::1/128 md5\n";
86 private static final String DEFAULT_CONFIG_PG_IDENT = "";
87 private static final String FILENAME_DATA = "data";
89 public boolean createAndSelfHostFromExample(final Document.HostingMode hostingMode) {
91 if (!createAndSelfHostNewEmpty(hostingMode)) {
92 // std::cerr << G_STRFUNC << ": test_create_and_selfhost_new_empty() failed." << std::endl;
96 final boolean recreated = recreateDatabaseFromDocument(); /* TODO: Progress callback */
109 * @param subDirectoryPath
112 private boolean createAndSelfHostNewEmpty(final Document.HostingMode hostingMode) {
113 if (hostingMode != Document.HostingMode.HOSTING_MODE_POSTGRES_SELF) {
114 // TODO: std::cerr << G_STRFUNC << ": This test function does not support the specified hosting_mode: " <<
115 // hosting_mode << std::endl;
119 // Save a copy, specifying the path to file in a directory:
120 // For instance, /tmp/testglom/testglom.glom");
121 final String tempFilename = "testglom";
122 final File tempFolder = Files.createTempDir();
123 final File tempDir = new File(tempFolder, tempFilename);
125 final String tempDirPath = tempDir.getPath();
126 final String tempFilePath = tempDirPath + File.separator + tempFilename;
127 final File file = new File(tempFilePath);
129 // Make sure that the file does not exist yet:
134 // Save the example as a real file:
135 document.setFileURI(file.getPath());
137 document.setHostingMode(hostingMode);
138 document.setIsExampleFile(false);
139 final boolean saved = document.save();
141 System.out.println("createAndSelfHostNewEmpty(): Document.save() failed.");
142 return false; // TODO: Delete the directory.
145 // We must specify a default username and password:
146 final String user = "glom_default_developer_user";
147 final String password = "glom_default_developer_password";
149 // Create the self-hosting files:
150 if (!initialize(user, password)) {
151 System.out.println("createAndSelfHostNewEmpty(): initialize failed.");
152 // TODO: Delete directory.
155 // Check that it really created some files:
156 if (!tempDir.exists()) {
157 System.out.println("createAndSelfHostNewEmpty(): tempDir does not exist.");
158 // TODO: Delete directory.
161 return selfHost(user, password);
170 private boolean selfHost(final String user, final String password) {
171 // TODO: m_network_shared = network_shared;
173 if (getSelfHostingActive()) {
174 // TODO: std::cerr << G_STRFUNC << ": Already started." << std::endl;
175 return false; // STARTUPERROR_NONE; //Just do it once.
178 final String dbDirData = getSelfHostingDataPath(false);
179 if (StringUtils.isEmpty(dbDirData) || !fileExists(dbDirData)) {
181 * final String dbDirBackup = dbDir + File.separator + FILENAME_BACKUP;
183 * if(fileExists(dbDirBackup)) { //TODO: std::cerr << G_STRFUNC <<
184 * ": There is no data, but there is backup data." << std::endl; //Let the caller convert the backup to real
185 * data and then try again: return false; // STARTUPERROR_FAILED_NO_DATA_HAS_BACKUP_DATA; } else {
187 // TODO: std::cerr << "ConnectionPool::create_self_hosting(): The data sub-directory could not be found." <<
188 // dbdir_data_uri << std::endl;
189 return false; // STARTUPERROR_FAILED_NO_DATA;
193 final int availablePort = discoverFirstFreePort(PORT_POSTGRESQL_SELF_HOSTED_START,
194 PORT_POSTGRESQL_SELF_HOSTED_END);
195 // std::cout << "debug: " << G_STRFUNC << ":() : debug: Available port for self-hosting: " << available_port <<
197 if (availablePort == 0) {
198 // TODO: Use a return enum or exception so we can tell the user about this:
199 // TODO: std::cerr << G_STRFUNC << ": No port was available between " << PORT_POSTGRESQL_SELF_HOSTED_START
200 // << " and " << PORT_POSTGRESQL_SELF_HOSTED_END << std::endl;
201 return false; // STARTUPERROR_FAILED_UNKNOWN_REASON;
204 final NumberFormat format = NumberFormat.getInstance(Locale.US);
205 format.setGroupingUsed(false); // TODO: Does this change it system-wide?
206 final String portAsText = format.format(availablePort);
208 // -D specifies the data directory.
209 // -c config_file= specifies the configuration file
210 // -k specifies a directory to use for the socket. This must be writable by us.
211 // Make sure to use double quotes for the executable path, because the
212 // CreateProcess() API used on Windows does not support single quotes.
213 final String dbDir = getSelfHostingPath("", false);
214 final String dbDirConfig = getSelfHostingPath("config", false);
215 final String dbDirHba = dbDirConfig + File.separator + "pg_hba.conf";
216 final String dbDirIdent = dbDirConfig + File.separator + "pg_ident.conf";
217 final String dbDirPid = getSelfHostingPath("pid", false);
219 // Note that postgres returns this error if we split the arguments more,
220 // for instance splitting -D and dbDirData into separate strings:
221 // too many command-line arguments (first is "(null)")
222 // Note: If we use "-D " instead of "-D" then the initdb seems to make the space part of the filepath,
223 // though that does not happen with the normal command line.
224 // However, we must have a space after -k.
225 // Also, the c hba_file=path argument must be split after -c, or postgres will get a " hba_file" configuration
226 // parameter instead of "hba_file".
227 final String commandPathStart = getPathToPostgresExecutable("postgres");
228 if(StringUtils.isEmpty(commandPathStart)) {
229 System.out.println("selfHost(): getPathToPostgresExecutable(postgres) failed.");
232 final ProcessBuilder commandPostgresStart = new ProcessBuilder(commandPathStart, "-D"
233 + shellQuote(dbDirData), "-p", portAsText, "-i", // Equivalent to -h "*", which in turn is equivalent
235 // listen_addresses in postgresql.conf. Listen to all IP addresses,
236 // so any client can connect (with a username+password)
237 "-c", "hba_file=" + shellQuote(dbDirHba), "-c", "ident_file=" + shellQuote(dbDirIdent), "-k"
238 + shellQuote(dbDir), "--external_pid_file=" + shellQuote(dbDirPid));
239 // std::cout << G_STRFUNC << ": debug: " << command_postgres_start << std::endl;
241 // Make sure to use double quotes for the executable path, because the
242 // CreateProcess() API used on Windows does not support single quotes.
244 // Note that postgres returns this error if we split the arguments more,
245 // for instance splitting -D and dbDirData into separate strings:
246 // too many command-line arguments (first is "(null)")
247 // Note: If we use "-D " instead of "-D" then the initdb seems to make the space part of the filepath,
248 // though that does not happen with the normal command line.
249 final String commandPathCheck = getPathToPostgresExecutable("pg_ctl");
250 if(StringUtils.isEmpty(commandPathCheck)) {
251 System.out.println("selfHost(): getPathToPostgresExecutable(pg_ctl) failed.");
254 final ProcessBuilder commandCheckPostgresHasStarted = new ProcessBuilder(commandPathCheck,
255 "status", "-D" + shellQuote(dbDirData));
257 // For postgres 8.1, this is "postmaster is running".
258 // For postgres 8.2, this is "server is running".
259 // This is a big hack that we should avoid. murrayc.
261 // pg_ctl actually seems to return a 0 result code for "is running" and a 1 for not running, at least with
263 // so maybe we can avoid this in future.
264 // Please do test it with your postgres version, using "echo $?" to see the result code of the last command.
265 final String secondCommandSuccessText = "is running"; // TODO: This is not a stable API. Also, watch out for
268 // The first command does not return, but the second command can check whether it succeeded:
270 final boolean result = executeCommandLineAndWaitUntilSecondCommandReturnsSuccess(commandPostgresStart,
271 commandCheckPostgresHasStarted, secondCommandSuccessText);
273 System.out.println("selfHost(): Error while attempting to self-host a database.");
274 return false; // STARTUPERROR_FAILED_UNKNOWN_REASON;
277 // Remember the port for later:
278 document.setConnectionPort(availablePort);
280 //Check that we can really connect:
282 //pg_ctl sometimes reports success before it is really ready to let us connect,
283 //so in this case we can just keep trying until it works, for a while:
284 for(int i = 0; i < 10; i++) {
288 } catch (InterruptedException e) {
289 // TODO Auto-generated catch block
293 final String dbName = document.getConnectionDatabase();
294 document.setConnectionDatabase(""); //We have not created the database yet.
295 final Connection connection = createConnection();
296 document.setConnectionDatabase(dbName);
297 if(connection != null) {
298 return true; // STARTUPERROR_NONE;
301 System.out.println("selfHost(): Waiting and retrying the connection due to suspected too-early success of pg_ctl. retries=" + i);
304 System.out.println("selfHost(): Test connection failed after multiple retries.");
312 private String shellQuote(final String str) {
313 // TODO: If we add the quotes then they seem to be used as part of the path, though that is not a problem with
314 // the normal command line.
318 // return "'" + str + "'";
321 private String getSelfHostingPath(final String subpath, final boolean create) {
322 final String dbDir = document.getSelfHostedDirectoryPath();
323 if (StringUtils.isEmpty(subpath)) {
327 final String dbDirData = dbDir + File.separator + subpath;
328 final File file = new File(dbDirData);
330 // Return the path regardless of whether it exists:
335 if (!file.exists()) {
337 Files.createParentDirs(file);
338 } catch (final IOException e) {
339 // TODO Auto-generated catch block
352 private String getSelfHostingDataPath(final boolean create) {
353 return getSelfHostingPath(FILENAME_DATA, create);
356 private boolean executeCommandLineAndWait(final ProcessBuilder command) {
358 command.redirectErrorStream(true);
360 // Run the first command, and wait for it to return:
361 Process process = null;
363 process = command.start();
364 } catch (final IOException e) {
365 // TODO Auto-generated catch block
370 final InputStream stderr = process.getInputStream();
371 final InputStreamReader isr = new InputStreamReader(stderr);
372 final BufferedReader br = new BufferedReader(isr);
376 * try { //TODO: readLine() can hang, waiting for an end of line that never comes. while ((line = br.readLine())
377 * != null) { output += line + "\n"; } } catch (final IOException e1) { e1.printStackTrace(); return false; }
382 result = process.waitFor();
383 } catch (final InterruptedException e) {
384 // TODO Auto-generated catch block
390 System.out.println("executeCommandLineAndWait(): Command failed: " + command.command().toString());
391 System.out.print(" Output: " + output);
398 private boolean executeCommandLineAndWaitUntilSecondCommandReturnsSuccess(final ProcessBuilder command,
399 final ProcessBuilder commandSecond, final String secondCommandSuccessText) {
400 command.redirectErrorStream(true);
402 // Run the first command, and do not wait for it to return:
403 Process process = null;
405 process = command.start();
406 } catch (final IOException e) {
407 // TODO Auto-generated catch block
412 final InputStream stderr = process.getInputStream();
413 final InputStreamReader isr = new InputStreamReader(stderr);
414 final BufferedReader br = new BufferedReader(isr);
417 * We do not wait, because this (postgres, for instance), does not return: final int result = process.waitFor();
418 * if (result != 0) { // TODO: Warn. return false; }
421 // Now run the second command, usually to verify that the first command has really done its work:
422 // We run this repeatedly until it succeeds, to show that the first command has finished.
423 boolean result = false;
425 result = executeCommandLineAndWait(commandSecond);
427 System.out.println("executeCommandLineAndWait(): second command succeeded.");
432 } catch (InterruptedException e) {
433 // TODO Auto-generated catch block
438 System.out.println("executeCommandLineAndWait(): Trying the second command again.");
442 // Try to get the output:
444 * if (!result) { String output = ""; /* String line; try { // TODO: readLine() can hang, waiting for an end of
445 * line that never comes. while ((line = br.readLine()) != null) { output += line + "\n";
446 * System.out.println(line); } } catch (final IOException e1) { // TODO Auto-generated catch block
447 * e1.printStackTrace(); return false; }
450 // System.out.println(" Output of first command: " + output);
451 // System.out.println(" first command: " + command.command().toString());
452 // System.out.println(" second command: " + commandSecond.command().toString());
460 private static String getPathToPostgresExecutable(final String string) {
461 final List<String> dirPaths = new ArrayList<String>();
462 dirPaths.add("/usr/bin");
463 dirPaths.add("/usr/lib/postgresql/9.1/bin");
464 dirPaths.add("/usr/lib/postgresql/9.0/bin");
465 dirPaths.add("/usr/lib/postgresql/8.4/bin");
467 for(String dir : dirPaths) {
468 final String path = dir + File.separator + string;
469 if(fileExistsAndIsExecutable(path)) {
481 private static boolean fileExistsAndIsExecutable(String path) {
482 final File file = new File(path);
487 if(!file.canExecute()) {
499 private static int discoverFirstFreePort(final int start, final int end) {
500 for (int port = start; port <= end; ++port) {
502 final ServerSocket socket = new ServerSocket(port);
504 // If the instantiation succeeded then the port was free:
505 return socket.getLocalPort(); // This must equal port.
506 } catch (final IOException ex) {
507 continue; // try next port
518 private static boolean fileExists(final String filePath) {
519 final File file = new File(filePath);
520 return file.exists();
526 private boolean getSelfHostingActive() {
527 return selfHostingActive;
534 private boolean initialize(final String initialUsername, final String initialPassword) {
535 if (!initializeConfFiles()) {
536 System.out.println("initialize(): initializeConfFiles() failed.");
540 // initdb creates a new postgres database cluster:
542 // Get file:// URI for the tmp/ directory:
543 File filePwFile = null;
545 filePwFile = File.createTempFile("glom_initdb_pwfile", "");
546 } catch (final IOException e) {
547 // TODO Auto-generated catch block
550 final String tempPwFile = filePwFile.getPath();
552 final boolean pwfileCreationSucceeded = createTextFile(tempPwFile, initialPassword);
553 if (!pwfileCreationSucceeded) {
554 System.out.println("initialize(): createTextFile() failed.");
558 // Make sure to use double quotes for the executable path, because the
559 // CreateProcess() API used on Windows does not support single quotes.
560 final String dbDirData = getSelfHostingDataPath(false /* create */);
562 // Note that initdb returns this error if we split the arguments more,
563 // for instance splitting -D and dbDirData into separate strings:
564 // too many command-line arguments (first is "(null)")
565 // TODO: If we quote tempPwFile then initdb says that it cannot find it.
566 // Note: If we use "-D " instead of "-D" then the initdb seems to make the space part of the filepath,
567 // though that does not happen with the normal command line.
568 boolean result = false;
569 final String commandPath = getPathToPostgresExecutable("initdb");
570 if(StringUtils.isEmpty(commandPath)) {
571 System.out.println("initialize(): getPathToPostgresExecutable(initdb) failed.");
573 final ProcessBuilder commandInitdb = new ProcessBuilder(commandPath, "-D"
574 + shellQuote(dbDirData), "-U", initialUsername, "--pwfile=" + tempPwFile);
576 // Note that --pwfile takes the password from the first line of a file. It's an alternative to supplying it when
577 // prompted on stdin.
578 result = executeCommandLineAndWait(commandInitdb);
581 // Of course, we don't want this to stay around. It would be a security risk.
582 final File fileTempPwFile = new File(tempPwFile);
583 if (!fileTempPwFile.delete()) {
584 System.out.println("initialize(): Failed to delete the password file.");
588 System.out.println("initialize(): Error while attempting to create self-hosting database.");
592 // Save the username and password for later;
593 this.username = initialUsername;
594 this.password = initialPassword;
596 return result; // ? INITERROR_NONE : INITERROR_COULD_NOT_START_SERVER;
600 private boolean initializeConfFiles() {
601 final String dataDirPath = document.getSelfHostedDirectoryPath();
603 final String dbDirConfig = dataDirPath + File.separator + "config";
604 // String defaultConfContents = "";
606 // Choose the configuration contents based on the postgresql version
607 // and whether we want to be network-shared:
608 // final float postgresqlVersion = 9.0f; //TODO: get_postgresql_utils_version_as_number(slot_progress);
609 // final boolean networkShared = true;
610 // std::cout << "DEBUG: postgresql_version=" << postgresql_version << std::endl;
612 // TODO: Support the other configurations, as in libglom.
613 final String defaultConfContents = DEFAULT_CONFIG_PG_HBA_LOCAL_8p4;
615 // std::cout << "DEBUG: default_conf_contents=" << default_conf_contents << std::endl;
617 final boolean hbaConfCreationSucceeded = createTextFile(dbDirConfig + File.separator + "pg_hba.conf",
618 defaultConfContents);
619 if (!hbaConfCreationSucceeded) {
620 System.out.println("initialize(): createTextFile() failed.");
624 final boolean identConfCreationSucceeded = createTextFile(dbDirConfig + File.separator + "pg_ident.conf",
625 DEFAULT_CONFIG_PG_IDENT);
626 if (!identConfCreationSucceeded) {
627 System.out.println("initialize(): createTextFile() failed.");
639 private static boolean createTextFile(final String path, final String contents) {
640 final File file = new File(path);
641 final File parent = file.getParentFile();
642 if (parent == null) {
643 System.out.println("initialize(): getParentFile() failed.");
649 file.createNewFile();
650 } catch (final IOException e) {
651 // TODO Auto-generated catch block
656 FileOutputStream output = null;
658 output = new FileOutputStream(file);
659 } catch (final FileNotFoundException e) {
660 // TODO Auto-generated catch block
666 output.write(contents.getBytes());
667 } catch (final IOException e) {
668 // TODO Auto-generated catch block
680 private boolean recreateDatabaseFromDocument() {
681 // Check whether the database exists already.
682 final String dbName = document.getConnectionDatabase();
683 if (StringUtils.isEmpty(dbName)) {
687 document.setConnectionDatabase(dbName);
688 Connection connection = createConnection();
689 if (connection != null) {
690 // Connection to the database succeeded, so the database
694 } catch (final SQLException e) {
695 // TODO Auto-generated catch block
701 // Create the database:
703 document.setConnectionDatabase("");
705 connection = createConnection();
706 if (connection == null) {
707 System.out.println("recreatedDatabase(): createConnection() failed, before creating the database.");
711 final boolean dbCreated = createDatabase(connection, dbName);
719 // Check that we can connect:
722 } catch (final SQLException e) {
723 // TODO Auto-generated catch block
728 document.setConnectionDatabase(dbName);
729 connection = createConnection();
730 if (connection == null) {
731 System.out.println("recreatedDatabase(): createConnection() failed, after creating the database.");
737 // Create each table:
738 final List<String> tables = document.getTableNames();
739 for (final String tableName : tables) {
741 // Create SQL to describe all fields in this table:
742 final List<Field> fields = document.getTableFields(tableName);
745 final boolean tableCreationSucceeded = createTable(connection, document, tableName, fields);
747 if (!tableCreationSucceeded) {
748 // TODO: std::cerr << G_STRFUNC << ": CREATE TABLE failed with the newly-created database." <<
754 // Note that create_database() has already called add_standard_tables() and add_standard_groups(document).
756 // Add groups from the document:
758 if (!addGroupsFromDocument(document)) {
759 // TODO: std::cerr << G_STRFUNC << ": add_groups_from_document() failed." << std::endl;
763 // Set table privileges, using the groups we just added:
765 if (!setTablePrivilegesGroupsFromDocument(document)) {
766 // TODO: std::cerr << G_STRFUNC << ": set_table_privileges_groups_from_document() failed." << std::endl;
770 for (final String tableName : tables) {
771 // Add any example data to the table:
777 final boolean tableInsertSucceeded = insertExampleData(connection, document, tableName);
779 if (!tableInsertSucceeded) {
780 // TODO: std::cerr << G_STRFUNC << ": INSERT of example data failed with the newly-created database." <<
785 // catch(final std::exception& ex)
787 // std::cerr << G_STRFUNC << ": exception: " << ex.what() << std::endl;
793 return true; // All tables created successfully.
798 * @throws SQLException
800 private Connection createConnection() {
801 final Properties connectionProps = new Properties();
802 connectionProps.put("user", this.username);
803 connectionProps.put("password", this.password);
805 String jdbcURL = "jdbc:postgresql://" + document.getConnectionServer() + ":" + document.getConnectionPort();
806 String db = document.getConnectionDatabase();
807 if (StringUtils.isEmpty(db)) {
808 // Use the default PostgreSQL database, because ComboPooledDataSource.connect() fails otherwise.
811 jdbcURL += "/" + db; // TODO: Quote the database name?
813 Connection conn = null;
815 conn = DriverManager.getConnection(jdbcURL + "/", connectionProps);
816 } catch (final SQLException e) {
817 //e.printStackTrace();
827 private void progress() {
828 // TODO Auto-generated method stub
837 private boolean insertExampleData(final Connection connection, final Document document, final String tableName) {
839 final Factory factory = new Factory(connection, SQLDialect.POSTGRES);
840 final Table<Record> table = Factory.tableByName(tableName);
842 final List<Map<String, DataItem>> exampleRows = document.getExampleRows(tableName);
843 for (final Map<String, DataItem> row : exampleRows) {
844 InsertSetStep<Record> insertStep = factory.insertInto(table);
846 for (final Entry<String, DataItem> entry : row.entrySet()) {
847 final String fieldName = entry.getKey();
848 final DataItem value = entry.getValue();
853 final Field field = document.getField(tableName, fieldName);
858 final org.jooq.Field<Object> jooqField = Factory.fieldByName(field.getName());
859 if (jooqField == null) {
863 final Object fieldValue = value.getValue(field.getGlomType());
864 insertStep = insertStep.set(jooqField, fieldValue);
867 if (!(insertStep instanceof InsertResultStep<?>)) {
871 // We suppress the warning because we _do_ check the cast above.
872 @SuppressWarnings("unchecked")
873 final InsertResultStep<Record> insertResultStep = (InsertResultStep<Record>) insertStep;
876 insertResultStep.fetchOne();
877 } catch (final DataAccessException e) {
878 // e.printStackTrace();
881 // TODO: Check that it worked.
891 private boolean setTablePrivilegesGroupsFromDocument(final Document document2) {
892 // TODO Auto-generated method stub
900 private boolean addGroupsFromDocument(final Document document2) {
901 // TODO Auto-generated method stub
911 private boolean createTable(final Connection connection, final Document document, final String tableName,
912 final List<Field> fields) {
913 boolean tableCreationSucceeded = false;
916 * TODO: //Create the standard field too: //(We don't actually use this yet) if(std::find_if(fields.begin(),
917 * fields.end(), predicate_FieldHasName<Field>(GLOM_STANDARD_FIELD_LOCK)) == fields.end()) { sharedptr<Field>
918 * field = sharedptr<Field>::create(); field->set_name(GLOM_STANDARD_FIELD_LOCK);
919 * field->set_glom_type(Field::TYPE_TEXT); fields.push_back(field); }
922 // Create SQL to describe all fields in this table:
923 String sqlFields = "";
924 for (final Field field : fields) {
925 // Create SQL to describe this field:
926 String sqlFieldDescription = escapeSqlId(field.getName()) + " " + field.getSqlType();
928 if (field.getPrimaryKey()) {
929 sqlFieldDescription += " NOT NULL PRIMARY KEY";
933 if (!StringUtils.isEmpty(sqlFields)) {
937 sqlFields += sqlFieldDescription;
940 if (StringUtils.isEmpty(sqlFields)) {
941 // TODO: std::cerr << G_STRFUNC << ": sql_fields is empty." << std::endl;
944 // Actually create the table
945 final String query = "CREATE TABLE " + escapeSqlId(tableName) + " (" + sqlFields + ");";
946 final Factory factory = new Factory(connection, SQLDialect.POSTGRES);
947 factory.execute(query);
948 tableCreationSucceeded = true;
949 if (!tableCreationSucceeded) {
950 System.out.println("recreatedDatabase(): CREATE TABLE() failed.");
953 return tableCreationSucceeded;
960 private String escapeSqlId(final String name) {
962 return "\"" + name + "\"";
968 private static boolean createDatabase(final Connection connection, final String databaseName) {
970 final String query = "CREATE DATABASE \"" + databaseName + "\""; // TODO: Escaping.
971 final Factory factory = new Factory(connection, SQLDialect.POSTGRES);
973 factory.execute(query);
981 public boolean cleanup() {
982 boolean result = true;
985 if ((document != null) && (document.getConnectionPort() != 0)) {
986 final String dbDirData = getSelfHostingDataPath(false);
988 // -D specifies the data directory.
989 // -c config_file= specifies the configuration file
990 // -k specifies a directory to use for the socket. This must be writable by us.
991 // We use "-m fast" instead of the default "-m smart" because that waits for clients to disconnect (and
992 // sometimes never succeeds).
993 // TODO: Warn about connected clients on other computers? Warn those other users?
994 // Make sure to use double quotes for the executable path, because the
995 // CreateProcess() API used on Windows does not support single quotes.
996 final String commandPath = getPathToPostgresExecutable("pg_ctl");
997 if(StringUtils.isEmpty(commandPath)) {
998 System.out.println("cleanup(): getPathToPostgresExecutable(pg_ctl) failed.");
1000 final ProcessBuilder commandPostgresStop = new ProcessBuilder(commandPath, "-D"
1001 + shellQuote(dbDirData), "stop", "-m", "fast");
1002 result = executeCommandLineAndWait(commandPostgresStop);
1004 System.out.println("cleanup(): Failed to stop the PostgreSQL server.");
1008 document.setConnectionPort(0);
1011 // Delete the files:
1012 final String selfhostingPath = getSelfHostingPath("", false);
1013 final File fileSelfHosting = new File(selfhostingPath);
1014 fileSelfHosting.delete();
1016 final String docPath = document.getFileURI();
1017 final File fileDoc = new File(docPath);