2 * Copyright (C) 2010, 2011 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;
23 import java.io.FilenameFilter;
24 import java.io.InputStream;
25 import java.sql.SQLException;
26 import java.util.ArrayList;
27 import java.util.Hashtable;
28 import java.util.Properties;
30 import javax.servlet.ServletException;
32 import org.glom.libglom.BakeryDocument.LoadFailureCodes;
33 import org.glom.libglom.Document;
34 import org.glom.libglom.Glom;
35 import org.glom.web.client.OnlineGlomService;
36 import org.glom.web.shared.DataItem;
37 import org.glom.web.shared.DetailsLayoutAndData;
38 import org.glom.web.shared.DocumentInfo;
39 import org.glom.web.shared.Documents;
40 import org.glom.web.shared.NavigationRecord;
41 import org.glom.web.shared.TypedDataItem;
42 import org.glom.web.shared.layout.LayoutGroup;
44 import com.google.gwt.user.server.rpc.RemoteServiceServlet;
45 import com.mchange.v2.c3p0.DataSources;
48 * This is the servlet class for setting up the server side of Online Glom. The client side can call the public methods
49 * in this class via OnlineGlom
51 * For instance, it loads all the available documents and provide a list - see getDocuments(). It then provides
52 * information from each document. For instance, see getListViewLayout().
54 * TODO: Watch for changes to the .glom files, to reload new versions and to load newly-added files. TODO: Watch for
55 * changes to the properties (configuration)?
57 @SuppressWarnings("serial")
58 public class OnlineGlomServiceImpl extends RemoteServiceServlet implements OnlineGlomService {
60 private static final String GLOM_FILE_EXTENSION = ".glom";
62 // convenience class for dealing with the Online Glom configuration file
63 private class OnlineGlomProperties extends Properties {
64 public String getKey(final String value) {
65 for (final String key : stringPropertyNames()) {
66 if (getProperty(key).trim().equals(value))
73 private final Hashtable<String, ConfiguredDocument> documentMapping = new Hashtable<String, ConfiguredDocument>();
74 private Exception configurationException = null;
77 * This is called when the servlet is started or restarted.
81 * @see javax.servlet.GenericServlet#init()
84 public void init() throws ServletException {
86 // All of the initialisation code is surrounded by a try/catch block so that the servlet can be in an
87 // initialised state and the error message can be retrieved by the client code.
89 // Find the configuration file. See this thread for background info:
90 // http://stackoverflow.com/questions/2161054/where-to-place-properties-files-in-a-jsp-servlet-web-application
91 // FIXME move onlineglom.properties to the WEB-INF folder (option number 2 from the stackoverflow question)
92 final OnlineGlomProperties config = new OnlineGlomProperties();
93 final InputStream is = Thread.currentThread().getContextClassLoader()
94 .getResourceAsStream("onlineglom.properties");
96 final String errorMessage = "onlineglom.properties not found.";
97 Log.fatal(errorMessage);
98 throw new Exception(errorMessage);
100 config.load(is); // can throw an IOException
102 // check if we can read the configured glom file directory
103 final String documentDirName = config.getProperty("glom.document.directory");
104 final File documentDir = new File(documentDirName);
105 if (!documentDir.isDirectory()) {
106 final String errorMessage = documentDirName + " is not a directory.";
107 Log.fatal(errorMessage);
108 throw new Exception(errorMessage);
110 if (!documentDir.canRead()) {
111 final String errorMessage = "Can't read the files in directory " + documentDirName + " .";
112 Log.fatal(errorMessage);
113 throw new Exception(errorMessage);
116 // get and check the glom files in the specified directory
117 final File[] glomFiles = documentDir.listFiles(new FilenameFilter() {
119 public boolean accept(final File dir, final String name) {
120 return name.endsWith(GLOM_FILE_EXTENSION);
124 // don't continue if there aren't any Glom files to configure
125 if (glomFiles.length <= 0) {
126 final String errorMessage = "Unable to find any Glom documents in the configured directory "
128 + " . Check the onlineglom.properties file to ensure that 'glom.document.directory' is set to the correct directory.";
129 Log.error(errorMessage);
130 throw new Exception(errorMessage);
133 // Check to see if the native library of java libglom is visible to the JVM
134 if (!isNativeLibraryVisibleToJVM()) {
135 final String errorMessage = "The java-libglom shared library is not visible to the JVM."
136 + " Ensure that 'java.library.path' is set with the path to the java-libglom shared library.";
137 Log.error(errorMessage);
138 throw new Exception(errorMessage);
141 // Check for a specified default locale,
142 // for table titles, field titles, etc:
143 final String globalLocaleID = config.getProperty("glom.document.locale");
145 // This initialisation method can throw an UnsatisfiedLinkError if the java-libglom native library isn't
146 // available. But since we're checking for the error condition above, the UnsatisfiedLinkError will never be
150 // Allow a fake connection, so sqlbuilder_get_full_query() can work:
151 Glom.set_fake_connection();
153 for (final File glomFile : glomFiles) {
154 final Document document = new Document();
155 document.set_file_uri("file://" + glomFile.getAbsolutePath());
157 final boolean retval = document.load(error);
158 if (retval == false) {
160 if (LoadFailureCodes.LOAD_FAILURE_CODE_NOT_FOUND == LoadFailureCodes.swigToEnum(error)) {
161 message = "Could not find file: " + glomFile.getAbsolutePath();
163 message = "An unknown error occurred when trying to load file: " + glomFile.getAbsolutePath();
166 // continue with for loop because there may be other documents in the directory
170 final ConfiguredDocument configuredDocument = new ConfiguredDocument(document); // can throw a
171 // PropertyVetoException
173 // check if a username and password have been set and work for the current document
174 final String filename = glomFile.getName();
175 final String key = config.getKey(filename);
177 final String[] keyArray = key.split("\\.");
178 if (keyArray.length == 3 && "filename".equals(keyArray[2])) {
179 // username/password could be set, let's check to see if it works
180 final String usernameKey = key.replaceAll(keyArray[2], "username");
181 final String passwordKey = key.replaceAll(keyArray[2], "password");
182 configuredDocument.setUsernameAndPassword(config.getProperty(usernameKey).trim(),
183 config.getProperty(passwordKey)); // can throw an SQLException
187 // check the if the global username and password have been set and work with this document
188 if (!configuredDocument.isAuthenticated()) {
189 configuredDocument.setUsernameAndPassword(config.getProperty("glom.document.username").trim(),
190 config.getProperty("glom.document.password")); // can throw an SQLException
193 if (globalLocaleID != null && !globalLocaleID.isEmpty()) {
194 configuredDocument.setDefaultLocaleID(globalLocaleID.trim());
197 // The key for the hash table is the file name without the .glom extension and with spaces ( ) replaced
198 // with pluses (+). The space/plus replacement makes the key more friendly for URLs.
199 final String documentID = filename.substring(0,
200 glomFile.getName().length() - GLOM_FILE_EXTENSION.length()).replace(' ', '+');
201 configuredDocument.setDocumentID(documentID);
202 documentMapping.put(documentID, configuredDocument);
205 } catch (final Exception e) {
206 // Don't throw the Exception so that servlet will be initialised and the error message can be retrieved.
207 configurationException = e;
213 * Checks if the java-libglom native library is visible to the JVM.
215 * @return true if the java-libglom native library is visible to the JVM, false if it's not
217 private boolean isNativeLibraryVisibleToJVM() {
218 final String javaLibraryPath = System.getProperty("java.library.path");
220 // Go through all the library paths and check for the java_libglom .so.
221 for (final String libDirName : javaLibraryPath.split(":")) {
222 final File libDir = new File(libDirName);
224 if (!libDir.isDirectory())
226 if (!libDir.canRead())
229 final File[] libs = libDir.listFiles(new FilenameFilter() {
231 public boolean accept(final File dir, final String name) {
232 return name.matches("libjava_libglom-[0-9]\\.[0-9].+\\.so");
236 // if at least one directory had the .so, we're done
245 * This is called when the servlet is stopped or restarted.
247 * @see javax.servlet.GenericServlet#destroy()
250 public void destroy() {
251 Glom.libglom_deinit();
253 for (final String documenTitle : documentMapping.keySet()) {
254 final ConfiguredDocument configuredDoc = documentMapping.get(documenTitle);
256 DataSources.destroy(configuredDoc.getCpds());
257 } catch (final SQLException e) {
258 Log.error(documenTitle, "Error cleaning up the ComboPooledDataSource.", e);
266 * @see org.glom.web.client.OnlineGlomService#getConfigurationErrorMessage()
269 public String getConfigurationErrorMessage() {
270 if (configurationException == null)
271 return "No configuration errors to report.";
272 else if (configurationException.getMessage() == null)
273 return configurationException.toString();
275 return configurationException.getMessage();
281 * @see org.glom.web.client.OnlineGlomService#getDocumentInfo(java.lang.String)
284 public DocumentInfo getDocumentInfo(final String documentID, final String localeID) {
286 final ConfiguredDocument configuredDoc = documentMapping.get(documentID);
288 // FIXME check for authentication
290 return configuredDoc.getDocumentInfo(localeID);
297 * @see org.glom.web.client.OnlineGlomService#getListViewLayout(java.lang.String, java.lang.String)
300 public LayoutGroup getListViewLayout(final String documentID, final String tableName, final String localeID) {
301 final ConfiguredDocument configuredDoc = documentMapping.get(documentID);
303 // FIXME check for authentication
305 return configuredDoc.getListViewLayoutGroup(tableName, localeID);
311 * @see org.glom.web.client.OnlineGlomService#getListViewData(java.lang.String, java.lang.String, int, int)
314 public ArrayList<DataItem[]> getListViewData(final String documentID, final String tableName,
315 final String quickFind, final int start, final int length) {
316 final ConfiguredDocument configuredDoc = documentMapping.get(documentID);
317 if (!configuredDoc.isAuthenticated()) {
318 return new ArrayList<DataItem[]>();
320 return configuredDoc.getListViewData(tableName, quickFind, start, length, false, 0, false);
326 * @see org.glom.web.client.OnlineGlomService#getSortedListViewData(java.lang.String, java.lang.String, int, int,
330 public ArrayList<DataItem[]> getSortedListViewData(final String documentID, final String tableName,
331 final String quickFind, final int start, final int length, final int sortColumnIndex,
332 final boolean isAscending) {
333 final ConfiguredDocument configuredDoc = documentMapping.get(documentID);
334 if (!configuredDoc.isAuthenticated()) {
335 return new ArrayList<DataItem[]>();
337 return configuredDoc.getListViewData(tableName, quickFind, start, length, true, sortColumnIndex, isAscending);
343 * @see org.glom.web.client.OnlineGlomService#getDocuments()
346 public Documents getDocuments() {
347 final Documents documents = new Documents();
348 for (final String documentID : documentMapping.keySet()) {
349 final ConfiguredDocument configuredDoc = documentMapping.get(documentID);
350 documents.addDocument(documentID, configuredDoc.getDocument().get_database_title(),
351 configuredDoc.getDefaultLocaleID());
359 * @see org.glom.web.client.OnlineGlomService#isAuthenticated(java.lang.String)
362 public boolean isAuthenticated(final String documentID) {
363 return documentMapping.get(documentID).isAuthenticated();
369 * @see org.glom.web.client.OnlineGlomService#checkAuthentication(java.lang.String, java.lang.String,
373 public boolean checkAuthentication(final String documentID, final String username, final String password) {
374 final ConfiguredDocument configuredDoc = documentMapping.get(documentID);
376 return configuredDoc.setUsernameAndPassword(username, password);
377 } catch (final SQLException e) {
378 Log.error(documentID, "Unknown SQL Error checking the database authentication.", e);
386 * @see org.glom.web.client.OnlineGlomService#getDetailsData(java.lang.String, java.lang.String, java.lang.String)
389 public DataItem[] getDetailsData(final String documentID, final String tableName,
390 final TypedDataItem primaryKeyValue) {
391 final ConfiguredDocument configuredDoc = documentMapping.get(documentID);
393 // FIXME check for authentication
395 return configuredDoc.getDetailsData(tableName, primaryKeyValue);
401 * @see org.glom.web.client.OnlineGlomService#getDetailsLayoutAndData(java.lang.String, java.lang.String,
405 public DetailsLayoutAndData getDetailsLayoutAndData(final String documentID, final String tableName,
406 final TypedDataItem primaryKeyValue, final String localeID) {
407 final ConfiguredDocument configuredDoc = documentMapping.get(documentID);
408 if (configuredDoc == null)
411 // FIXME check for authentication
413 final DetailsLayoutAndData initalDetailsView = new DetailsLayoutAndData();
414 initalDetailsView.setLayout(configuredDoc.getDetailsLayoutGroup(tableName, localeID));
415 initalDetailsView.setData(configuredDoc.getDetailsData(tableName, primaryKeyValue));
417 return initalDetailsView;
423 * @see org.glom.web.client.OnlineGlomService#getRelatedListData(java.lang.String, java.lang.String, int, int)
426 public ArrayList<DataItem[]> getRelatedListData(final String documentID, final String tableName,
427 final String relationshipName, final TypedDataItem foreignKeyValue, final int start, final int length) {
428 final ConfiguredDocument configuredDoc = documentMapping.get(documentID);
430 // FIXME check for authentication
432 return configuredDoc.getRelatedListData(tableName, relationshipName, foreignKeyValue, start, length, false, 0,
439 * @see org.glom.web.client.OnlineGlomService#getSortedRelatedListData(java.lang.String, java.lang.String, int, int,
443 public ArrayList<DataItem[]> getSortedRelatedListData(final String documentID, final String tableName,
444 final String relationshipName, final TypedDataItem foreignKeyValue, final int start, final int length,
445 final int sortColumnIndex, final boolean ascending) {
446 final ConfiguredDocument configuredDoc = documentMapping.get(documentID);
448 // FIXME check for authentication
450 return configuredDoc.getRelatedListData(tableName, relationshipName, foreignKeyValue, start, length, true,
451 sortColumnIndex, ascending);
455 public int getRelatedListRowCount(final String documentID, final String tableName, final String relationshipName,
456 final TypedDataItem foreignKeyValue) {
457 final ConfiguredDocument configuredDoc = documentMapping.get(documentID);
459 // FIXME check for authentication
461 return configuredDoc.getRelatedListRowCount(tableName, relationshipName, foreignKeyValue);
467 * @see org.glom.web.client.OnlineGlomService#getSuitableRecordToViewDetails(java.lang.String, java.lang.String,
468 * java.lang.String, java.lang.String)
471 public NavigationRecord getSuitableRecordToViewDetails(final String documentID, final String tableName,
472 final String relationshipName, final TypedDataItem primaryKeyValue) {
473 final ConfiguredDocument configuredDoc = documentMapping.get(documentID);
475 // FIXME check for authentication
477 return configuredDoc.getSuitableRecordToViewDetails(tableName, relationshipName, primaryKeyValue);