[or-cvs] [ernie/master 2/4] Warn if our configuration is empty.

karsten at torproject.org karsten at torproject.org
Tue Apr 13 12:53:00 UTC 2010


Author: Karsten Loesing <karsten.loesing at gmx.net>
Date: Tue, 13 Apr 2010 09:27:11 +0200
Subject: Warn if our configuration is empty.
Commit: 8ba0daf4359a5b994e1d5ede19059ad3e76f6028

---
 src/Configuration.java |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/src/Configuration.java b/src/Configuration.java
index 455f90a..a5edf31 100644
--- a/src/Configuration.java
+++ b/src/Configuration.java
@@ -51,6 +51,12 @@ public class Configuration {
     /* Read config file, if present. */
     File configFile = new File("config");
     if (!configFile.exists()) {
+      logger.warning("Could not find config file. In the default "
+          + "configuration, we are not configured to read data from any "
+          + "data source or write data to any data sink. You need to "
+          + "create a config file (" + configFile.getAbsolutePath()
+          + ") and provide at least one data source and one data sink. "
+          + "Refer to the manual for more information.");
       return;
     }
     String line = null;
@@ -180,6 +186,22 @@ public class Configuration {
     }
 
     /** Make some checks if configuration is valid. */
+    if (!this.importCachedRelayDescriptors &&
+        !this.importDirectoryArchives && !this.downloadRelayDescriptors &&
+        !this.importSanitizedBridges && !this.importBridgeSnapshots &&
+        !this.importWriteTorperfStats &&
+        !this.downloadProcessGetTorStats && !this.downloadExitList &&
+        !this.writeDirectoryArchives &&
+        !this.writeRelayDescriptorDatabase &&
+        !this.writeSanitizedBridges && !this.writeConsensusStats &&
+        !this.writeDirreqStats && !this.writeBridgeStats &&
+        !this.writeServerDescriptorStats) {
+      logger.warning("We have not been configured to read data from any "
+          + "data source or write data to any data sink. You need to "
+          + "edit your config file (" + configFile.getAbsolutePath()
+          + ") and provide at least one data source and one data sink. "
+          + "Refer to the manual for more information.");
+    }
     if ((this.importCachedRelayDescriptors ||
         this.importDirectoryArchives || this.downloadRelayDescriptors) &&
         !(this.writeDirectoryArchives ||
-- 
1.6.5




More information about the tor-commits mailing list