]> git.argeo.org Git - lgpl/argeo-commons.git/blobdiff - server/runtime/org.argeo.server.ads/src/main/java/org/argeo/server/ads/AdsContainer.java
Add license headers
[lgpl/argeo-commons.git] / server / runtime / org.argeo.server.ads / src / main / java / org / argeo / server / ads / AdsContainer.java
index 4a36f721db3c749c133fede75eb40e5c5dafac5d..0753e14ebd5cf46bd4c582ee424d20f1236b7f23 100644 (file)
@@ -1,6 +1,24 @@
+/*
+ * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *         http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 package org.argeo.server.ads;
 
 import java.io.File;
+import java.io.FileOutputStream;
+import java.io.OutputStream;
 import java.util.ArrayList;
 import java.util.List;
 import java.util.Properties;
@@ -11,16 +29,19 @@ import javax.naming.NamingException;
 import javax.naming.directory.InitialDirContext;
 
 import org.apache.commons.io.FileUtils;
+import org.apache.commons.io.IOUtils;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 import org.apache.directory.server.configuration.MutableServerStartupConfiguration;
 import org.apache.directory.server.core.configuration.ShutdownConfiguration;
 import org.apache.directory.server.jndi.ServerContextFactory;
+import org.argeo.ArgeoException;
 import org.springframework.beans.factory.DisposableBean;
 import org.springframework.beans.factory.InitializingBean;
 import org.springframework.core.io.Resource;
 import org.springframework.util.Assert;
 
+@SuppressWarnings("restriction")
 public class AdsContainer implements InitializingBean, DisposableBean {
        private final static Log log = LogFactory.getLog(AdsContainer.class);
 
@@ -55,15 +76,23 @@ public class AdsContainer implements InitializingBean, DisposableBean {
                                        .getAbsolutePath()
                                        + File.separator + "ldif"));
 
+               // Deals with provided LDIF files
                if (ldifs.size() > 0)
                        configuration.getLdifDirectory().mkdirs();
                for (Resource ldif : ldifs) {
-                       FileUtils.copyURLToFile(ldif.getURL(), new File(configuration
-                                       .getLdifDirectory().getAbsolutePath()
-                                       + File.separator + ldif.getFilename().replace(':', '_')));
-                       if (log.isDebugEnabled())
-                               log.debug("Copied " + ldif + " to LDIF directory "
-                                               + configuration.getLdifDirectory());
+                       File targetFile = new File(configuration.getLdifDirectory()
+                                       .getAbsolutePath()
+                                       + File.separator + ldif.getFilename().replace(':', '_'));
+                       OutputStream output = null;
+                       try {
+                               output = new FileOutputStream(targetFile);
+                               IOUtils.copy(ldif.getInputStream(), output);
+                               if (log.isDebugEnabled())
+                                       log.debug("Copied " + ldif + " to LDIF directory "
+                                                       + configuration.getLdifDirectory());
+                       } finally {
+                               IOUtils.closeQuietly(output);
+                       }
                }
 
                Properties env = new Properties();
@@ -76,8 +105,8 @@ public class AdsContainer implements InitializingBean, DisposableBean {
                try {
                        new InitialDirContext(env);
                } catch (NamingException e) {
-                       throw new RuntimeException(
-                                       "Failed to start Apache Directory server", e);
+                       throw new ArgeoException("Failed to start Apache Directory server",
+                                       e);
                }
        }
 
@@ -99,8 +128,8 @@ public class AdsContainer implements InitializingBean, DisposableBean {
                try {
                        new InitialContext(env);
                } catch (NamingException e) {
-                       throw new RuntimeException(
-                                       "Failed to stop Apache Directory server", e);
+                       throw new ArgeoException("Failed to stop Apache Directory server",
+                                       e);
                }
 
                if (workingDirectory.exists() && deleteWorkingDirOnExit) {