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" + shellQuote(dbDirData),
233 "-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, "status", "-D"
255 + 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;
302 .println("selfHost(): Waiting and retrying the connection due to suspected too-early success of pg_ctl. retries="
306 System.out.println("selfHost(): Test connection failed after multiple retries.");
314 private String shellQuote(final String str) {
315 // TODO: If we add the quotes then they seem to be used as part of the path, though that is not a problem with
316 // the normal command line.
320 // return "'" + str + "'";
323 private String getSelfHostingPath(final String subpath, final boolean create) {
324 final String dbDir = document.getSelfHostedDirectoryPath();
325 if (StringUtils.isEmpty(subpath)) {
329 final String dbDirData = dbDir + File.separator + subpath;
330 final File file = new File(dbDirData);
332 // Return the path regardless of whether it exists:
337 if (!file.exists()) {
339 Files.createParentDirs(file);
340 } catch (final IOException e) {
341 // TODO Auto-generated catch block
354 private String getSelfHostingDataPath(final boolean create) {
355 return getSelfHostingPath(FILENAME_DATA, create);
358 private boolean executeCommandLineAndWait(final ProcessBuilder command) {
360 command.redirectErrorStream(true);
362 // Run the first command, and wait for it to return:
363 Process process = null;
365 process = command.start();
366 } catch (final IOException e) {
367 // TODO Auto-generated catch block
372 final InputStream stderr = process.getInputStream();
373 final InputStreamReader isr = new InputStreamReader(stderr);
374 final BufferedReader br = new BufferedReader(isr);
378 * try { //TODO: readLine() can hang, waiting for an end of line that never comes. while ((line = br.readLine())
379 * != null) { output += line + "\n"; } } catch (final IOException e1) { e1.printStackTrace(); return false; }
384 result = process.waitFor();
385 } catch (final InterruptedException e) {
386 // TODO Auto-generated catch block
392 System.out.println("executeCommandLineAndWait(): Command failed: " + command.command().toString());
393 System.out.print(" Output: " + output);
400 private boolean executeCommandLineAndWaitUntilSecondCommandReturnsSuccess(final ProcessBuilder command,
401 final ProcessBuilder commandSecond, final String secondCommandSuccessText) {
402 command.redirectErrorStream(true);
404 // Run the first command, and do not wait for it to return:
405 Process process = null;
407 process = command.start();
408 } catch (final IOException e) {
409 // TODO Auto-generated catch block
414 final InputStream stderr = process.getInputStream();
415 final InputStreamReader isr = new InputStreamReader(stderr);
416 final BufferedReader br = new BufferedReader(isr);
419 * We do not wait, because this (postgres, for instance), does not return: final int result = process.waitFor();
420 * if (result != 0) { // TODO: Warn. return false; }
423 // Now run the second command, usually to verify that the first command has really done its work:
424 // We run this repeatedly until it succeeds, to show that the first command has finished.
425 boolean result = false;
427 result = executeCommandLineAndWait(commandSecond);
429 System.out.println("executeCommandLineAndWait(): second command succeeded.");
434 } catch (InterruptedException e) {
435 // TODO Auto-generated catch block
440 System.out.println("executeCommandLineAndWait(): Trying the second command again.");
444 // Try to get the output:
446 * if (!result) { String output = ""; /* String line; try { // TODO: readLine() can hang, waiting for an end of
447 * line that never comes. while ((line = br.readLine()) != null) { output += line + "\n";
448 * System.out.println(line); } } catch (final IOException e1) { // TODO Auto-generated catch block
449 * e1.printStackTrace(); return false; }
452 // System.out.println(" Output of first command: " + output);
453 // System.out.println(" first command: " + command.command().toString());
454 // System.out.println(" second command: " + commandSecond.command().toString());
462 private static String getPathToPostgresExecutable(final String string) {
463 final List<String> dirPaths = new ArrayList<String>();
464 dirPaths.add("/usr/bin");
465 dirPaths.add("/usr/lib/postgresql/9.1/bin");
466 dirPaths.add("/usr/lib/postgresql/9.0/bin");
467 dirPaths.add("/usr/lib/postgresql/8.4/bin");
469 for (String dir : dirPaths) {
470 final String path = dir + File.separator + string;
471 if (fileExistsAndIsExecutable(path)) {
483 private static boolean fileExistsAndIsExecutable(String path) {
484 final File file = new File(path);
485 if (!file.exists()) {
489 if (!file.canExecute()) {
501 private static int discoverFirstFreePort(final int start, final int end) {
502 for (int port = start; port <= end; ++port) {
504 final ServerSocket socket = new ServerSocket(port);
506 // If the instantiation succeeded then the port was free:
507 return socket.getLocalPort(); // This must equal port.
508 } catch (final IOException ex) {
509 continue; // try next port
520 private static boolean fileExists(final String filePath) {
521 final File file = new File(filePath);
522 return file.exists();
528 private boolean getSelfHostingActive() {
529 return selfHostingActive;
536 private boolean initialize(final String initialUsername, final String initialPassword) {
537 if (!initializeConfFiles()) {
538 System.out.println("initialize(): initializeConfFiles() failed.");
542 // initdb creates a new postgres database cluster:
544 // Get file:// URI for the tmp/ directory:
545 File filePwFile = null;
547 filePwFile = File.createTempFile("glom_initdb_pwfile", "");
548 } catch (final IOException e) {
549 // TODO Auto-generated catch block
552 final String tempPwFile = filePwFile.getPath();
554 final boolean pwfileCreationSucceeded = createTextFile(tempPwFile, initialPassword);
555 if (!pwfileCreationSucceeded) {
556 System.out.println("initialize(): createTextFile() failed.");
560 // Make sure to use double quotes for the executable path, because the
561 // CreateProcess() API used on Windows does not support single quotes.
562 final String dbDirData = getSelfHostingDataPath(false /* create */);
564 // Note that initdb returns this error if we split the arguments more,
565 // for instance splitting -D and dbDirData into separate strings:
566 // too many command-line arguments (first is "(null)")
567 // TODO: If we quote tempPwFile then initdb says that it cannot find it.
568 // Note: If we use "-D " instead of "-D" then the initdb seems to make the space part of the filepath,
569 // though that does not happen with the normal command line.
570 boolean result = false;
571 final String commandPath = getPathToPostgresExecutable("initdb");
572 if (StringUtils.isEmpty(commandPath)) {
573 System.out.println("initialize(): getPathToPostgresExecutable(initdb) failed.");
575 final ProcessBuilder commandInitdb = new ProcessBuilder(commandPath, "-D" + shellQuote(dbDirData), "-U",
576 initialUsername, "--pwfile=" + tempPwFile);
578 // Note that --pwfile takes the password from the first line of a file. It's an alternative to supplying it
580 // prompted on stdin.
581 result = executeCommandLineAndWait(commandInitdb);
584 // Of course, we don't want this to stay around. It would be a security risk.
585 final File fileTempPwFile = new File(tempPwFile);
586 if (!fileTempPwFile.delete()) {
587 System.out.println("initialize(): Failed to delete the password file.");
591 System.out.println("initialize(): Error while attempting to create self-hosting database.");
595 // Save the username and password for later;
596 this.username = initialUsername;
597 this.password = initialPassword;
599 return result; // ? INITERROR_NONE : INITERROR_COULD_NOT_START_SERVER;
603 private boolean initializeConfFiles() {
604 final String dataDirPath = document.getSelfHostedDirectoryPath();
606 final String dbDirConfig = dataDirPath + File.separator + "config";
607 // String defaultConfContents = "";
609 // Choose the configuration contents based on the postgresql version
610 // and whether we want to be network-shared:
611 // final float postgresqlVersion = 9.0f; //TODO: get_postgresql_utils_version_as_number(slot_progress);
612 // final boolean networkShared = true;
613 // std::cout << "DEBUG: postgresql_version=" << postgresql_version << std::endl;
615 // TODO: Support the other configurations, as in libglom.
616 final String defaultConfContents = DEFAULT_CONFIG_PG_HBA_LOCAL_8p4;
618 // std::cout << "DEBUG: default_conf_contents=" << default_conf_contents << std::endl;
620 final boolean hbaConfCreationSucceeded = createTextFile(dbDirConfig + File.separator + "pg_hba.conf",
621 defaultConfContents);
622 if (!hbaConfCreationSucceeded) {
623 System.out.println("initialize(): createTextFile() failed.");
627 final boolean identConfCreationSucceeded = createTextFile(dbDirConfig + File.separator + "pg_ident.conf",
628 DEFAULT_CONFIG_PG_IDENT);
629 if (!identConfCreationSucceeded) {
630 System.out.println("initialize(): createTextFile() failed.");
642 private static boolean createTextFile(final String path, final String contents) {
643 final File file = new File(path);
644 final File parent = file.getParentFile();
645 if (parent == null) {
646 System.out.println("initialize(): getParentFile() failed.");
652 file.createNewFile();
653 } catch (final IOException e) {
654 // TODO Auto-generated catch block
659 FileOutputStream output = null;
661 output = new FileOutputStream(file);
662 } catch (final FileNotFoundException e) {
663 // TODO Auto-generated catch block
669 output.write(contents.getBytes());
670 } catch (final IOException e) {
671 // TODO Auto-generated catch block
683 private boolean recreateDatabaseFromDocument() {
684 // Check whether the database exists already.
685 final String dbName = document.getConnectionDatabase();
686 if (StringUtils.isEmpty(dbName)) {
690 document.setConnectionDatabase(dbName);
691 Connection connection = createConnection();
692 if (connection != null) {
693 // Connection to the database succeeded, so the database
697 } catch (final SQLException e) {
698 // TODO Auto-generated catch block
704 // Create the database:
706 document.setConnectionDatabase("");
708 connection = createConnection();
709 if (connection == null) {
710 System.out.println("recreatedDatabase(): createConnection() failed, before creating the database.");
714 final boolean dbCreated = createDatabase(connection, dbName);
722 // Check that we can connect:
725 } catch (final SQLException e) {
726 // TODO Auto-generated catch block
731 document.setConnectionDatabase(dbName);
732 connection = createConnection();
733 if (connection == null) {
734 System.out.println("recreatedDatabase(): createConnection() failed, after creating the database.");
740 // Create each table:
741 final List<String> tables = document.getTableNames();
742 for (final String tableName : tables) {
744 // Create SQL to describe all fields in this table:
745 final List<Field> fields = document.getTableFields(tableName);
748 final boolean tableCreationSucceeded = createTable(connection, document, tableName, fields);
750 if (!tableCreationSucceeded) {
751 // TODO: std::cerr << G_STRFUNC << ": CREATE TABLE failed with the newly-created database." <<
757 // Note that create_database() has already called add_standard_tables() and add_standard_groups(document).
759 // Add groups from the document:
761 if (!addGroupsFromDocument(document)) {
762 // TODO: std::cerr << G_STRFUNC << ": add_groups_from_document() failed." << std::endl;
766 // Set table privileges, using the groups we just added:
768 if (!setTablePrivilegesGroupsFromDocument(document)) {
769 // TODO: std::cerr << G_STRFUNC << ": set_table_privileges_groups_from_document() failed." << std::endl;
773 for (final String tableName : tables) {
774 // Add any example data to the table:
780 final boolean tableInsertSucceeded = insertExampleData(connection, document, tableName);
782 if (!tableInsertSucceeded) {
783 // TODO: std::cerr << G_STRFUNC << ": INSERT of example data failed with the newly-created database." <<
788 // catch(final std::exception& ex)
790 // std::cerr << G_STRFUNC << ": exception: " << ex.what() << std::endl;
796 return true; // All tables created successfully.
801 * @throws SQLException
803 private Connection createConnection() {
804 final Properties connectionProps = new Properties();
805 connectionProps.put("user", this.username);
806 connectionProps.put("password", this.password);
808 String jdbcURL = "jdbc:postgresql://" + document.getConnectionServer() + ":" + document.getConnectionPort();
809 String db = document.getConnectionDatabase();
810 if (StringUtils.isEmpty(db)) {
811 // Use the default PostgreSQL database, because ComboPooledDataSource.connect() fails otherwise.
814 jdbcURL += "/" + db; // TODO: Quote the database name?
816 Connection conn = null;
818 conn = DriverManager.getConnection(jdbcURL + "/", connectionProps);
819 } catch (final SQLException e) {
820 // e.printStackTrace();
830 private void progress() {
831 // TODO Auto-generated method stub
840 private boolean insertExampleData(final Connection connection, final Document document, final String tableName) {
842 final Factory factory = new Factory(connection, SQLDialect.POSTGRES);
843 final Table<Record> table = Factory.tableByName(tableName);
845 final List<Map<String, DataItem>> exampleRows = document.getExampleRows(tableName);
846 for (final Map<String, DataItem> row : exampleRows) {
847 InsertSetStep<Record> insertStep = factory.insertInto(table);
849 for (final Entry<String, DataItem> entry : row.entrySet()) {
850 final String fieldName = entry.getKey();
851 final DataItem value = entry.getValue();
856 final Field field = document.getField(tableName, fieldName);
861 final org.jooq.Field<Object> jooqField = Factory.fieldByName(field.getName());
862 if (jooqField == null) {
866 final Object fieldValue = value.getValue(field.getGlomType());
867 insertStep = insertStep.set(jooqField, fieldValue);
870 if (!(insertStep instanceof InsertResultStep<?>)) {
874 // We suppress the warning because we _do_ check the cast above.
875 @SuppressWarnings("unchecked")
876 final InsertResultStep<Record> insertResultStep = (InsertResultStep<Record>) insertStep;
879 insertResultStep.fetchOne();
880 } catch (final DataAccessException e) {
881 // e.printStackTrace();
884 // TODO: Check that it worked.
894 private boolean setTablePrivilegesGroupsFromDocument(final Document document2) {
895 // TODO Auto-generated method stub
903 private boolean addGroupsFromDocument(final Document document2) {
904 // TODO Auto-generated method stub
914 private boolean createTable(final Connection connection, final Document document, final String tableName,
915 final List<Field> fields) {
916 boolean tableCreationSucceeded = false;
919 * TODO: //Create the standard field too: //(We don't actually use this yet) if(std::find_if(fields.begin(),
920 * fields.end(), predicate_FieldHasName<Field>(GLOM_STANDARD_FIELD_LOCK)) == fields.end()) { sharedptr<Field>
921 * field = sharedptr<Field>::create(); field->set_name(GLOM_STANDARD_FIELD_LOCK);
922 * field->set_glom_type(Field::TYPE_TEXT); fields.push_back(field); }
925 // Create SQL to describe all fields in this table:
926 String sqlFields = "";
927 for (final Field field : fields) {
928 // Create SQL to describe this field:
929 String sqlFieldDescription = escapeSqlId(field.getName()) + " " + field.getSqlType();
931 if (field.getPrimaryKey()) {
932 sqlFieldDescription += " NOT NULL PRIMARY KEY";
936 if (!StringUtils.isEmpty(sqlFields)) {
940 sqlFields += sqlFieldDescription;
943 if (StringUtils.isEmpty(sqlFields)) {
944 // TODO: std::cerr << G_STRFUNC << ": sql_fields is empty." << std::endl;
947 // Actually create the table
948 final String query = "CREATE TABLE " + escapeSqlId(tableName) + " (" + sqlFields + ");";
949 final Factory factory = new Factory(connection, SQLDialect.POSTGRES);
950 factory.execute(query);
951 tableCreationSucceeded = true;
952 if (!tableCreationSucceeded) {
953 System.out.println("recreatedDatabase(): CREATE TABLE() failed.");
956 return tableCreationSucceeded;
963 private String escapeSqlId(final String name) {
965 return "\"" + name + "\"";
971 private static boolean createDatabase(final Connection connection, final String databaseName) {
973 final String query = "CREATE DATABASE \"" + databaseName + "\""; // TODO: Escaping.
974 final Factory factory = new Factory(connection, SQLDialect.POSTGRES);
976 factory.execute(query);
984 public boolean cleanup() {
985 boolean result = true;
988 if ((document != null) && (document.getConnectionPort() != 0)) {
989 final String dbDirData = getSelfHostingDataPath(false);
991 // -D specifies the data directory.
992 // -c config_file= specifies the configuration file
993 // -k specifies a directory to use for the socket. This must be writable by us.
994 // We use "-m fast" instead of the default "-m smart" because that waits for clients to disconnect (and
995 // sometimes never succeeds).
996 // TODO: Warn about connected clients on other computers? Warn those other users?
997 // Make sure to use double quotes for the executable path, because the
998 // CreateProcess() API used on Windows does not support single quotes.
999 final String commandPath = getPathToPostgresExecutable("pg_ctl");
1000 if (StringUtils.isEmpty(commandPath)) {
1001 System.out.println("cleanup(): getPathToPostgresExecutable(pg_ctl) failed.");
1003 final ProcessBuilder commandPostgresStop = new ProcessBuilder(commandPath,
1004 "-D" + shellQuote(dbDirData), "stop", "-m", "fast");
1005 result = executeCommandLineAndWait(commandPostgresStop);
1007 System.out.println("cleanup(): Failed to stop the PostgreSQL server.");
1011 document.setConnectionPort(0);
1014 // Delete the files:
1015 final String selfhostingPath = getSelfHostingPath("", false);
1016 final File fileSelfHosting = new File(selfhostingPath);
1017 fileSelfHosting.delete();
1019 final String docPath = document.getFileURI();
1020 final File fileDoc = new File(docPath);