summaryrefslogtreecommitdiff
path: root/shared/Main.java
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2009-02-15 12:59:17 +0000
committerPaul Buetow <paul@buetow.org>2009-02-15 12:59:17 +0000
commit2a93a612375aa6c8fd35280778624d486a81d2d2 (patch)
tree5f0b88be2b6bb5b0eb8a33f5a3e996e2352655c5 /shared/Main.java
parent3f06de0d35403234601f3bc8325ec8d37071d4a3 (diff)
run astyle
Diffstat (limited to 'shared/Main.java')
-rw-r--r--shared/Main.java216
1 files changed, 108 insertions, 108 deletions
diff --git a/shared/Main.java b/shared/Main.java
index 24edc0d..37ebc03 100644
--- a/shared/Main.java
+++ b/shared/Main.java
@@ -10,116 +10,116 @@ import client.*;
/**
* This class contains the static main method to start the program from.
- * This class is also responsible for handling info ans status messages and
- * the logging option of those messages.
+ * This class is also responsible for handling info ans status messages and
+ * the logging option of those messages.
* @author buetow
*
*/
public final class Main {
- private static NetCalendarClient netCalendarClient = null;
- private static BufferedWriter bufferedLogfileWriter = null;
-
- /**
- * This method is the start point of the whole program. Its initializing the static Config object
- * and starts a calendar server and/or a calendar client thread depending on the "server_run" and
- * "client_run" configuration options.
- * @param args Specifies the program arguments (not used yet by the program)
- */
- public static void main(String[] args) {
- Config.initialize(args);
-
- try {
- FileWriter fileWriter = new FileWriter(Config.getStringValue("logfile"));
- bufferedLogfileWriter = new BufferedWriter(fileWriter);
-
- } catch (IOException e) {
- infoMessage("Error: Could not open logfile: " + e.getMessage());
- }
-
-
- if (Config.getBooleanValue("server_run")) {
- new NetCalendarServer(
- Config.getIntValue("server_port"),
- Config.getStringValue("server_database_dir"));
- }
-
- if (Config.getBooleanValue("client_run")) {
- new Thread(new SplashScreen()).start();
- //Make sure we have nice window decorations.
- JFrame.setDefaultLookAndFeelDecorated(true);
- netCalendarClient = new NetCalendarClient();
- }
- }
-
- /**
- * All info messages of the calendar client and the calendar server go through this method.
- * They are not using System.out.* directly.
- * @param sMessage Specifies the program info message.
- */
- public static void infoMessage(String sMessage) {
- // Later: Add logging to a logfile!
- System.out.println(sMessage);
- logMessage(sMessage);
- }
-
- /**
- * This method is for various messages. All messages will show up in the status bar of the client's main window.
- * If there is no main window, the infoMessage method will be used instead.
- * @param sMessage Specifies the message to be displayed in the status bar.
- */
- public static void statusMessage(String sMessage) {
- if (netCalendarClient != null)
- netCalendarClient.statusMessage(sMessage);
- else
- infoMessage(sMessage);
- }
-
- /**
- * This method writes a specific message string into a logfile which is specified in the config.txt.
- * @param sMessage Specified the message string to write into the logfile.
- */
- private static void logMessage(String sMessage) {
- if (bufferedLogfileWriter != null) {
- try {
- bufferedLogfileWriter.write(sMessage + "\n");
- // bufferedLogfileWriter.flush();
-
- } catch(IOException e) {
- Main.infoMessage("Error: Could not write to logfile: " + e.toString());
- }
- }
- }
-
- /**
- * This method is called thenever the server or the client process wants to exit.
- * @param iCode Specifies the exit code to use for the System.exit call.
- */
- public static void exit(int iCode) {
- infoMessage("Shutting down the current process");
-
- try {
- bufferedLogfileWriter.close();
- } catch(IOException e) {
- System.err.println("Error: Could not close logfile: " + e.toString());
- }
-
- System.exit(iCode);
- }
-
-
- /**
- * This method executes an external program.
- * @param sCommand Specifies the command string to execute.
- */
- public static void execExternalCommand(String sCommand) {
- if (sCommand.equals("none") || sCommand.equals(""))
- return;
-
- try {
- Runtime.getRuntime().exec(sCommand);
-
- } catch (IOException e) {
- Main.infoMessage("Error while executing external command: " + e.getMessage());
- }
- }
+ private static NetCalendarClient netCalendarClient = null;
+ private static BufferedWriter bufferedLogfileWriter = null;
+
+ /**
+ * This method is the start point of the whole program. Its initializing the static Config object
+ * and starts a calendar server and/or a calendar client thread depending on the "server_run" and
+ * "client_run" configuration options.
+ * @param args Specifies the program arguments (not used yet by the program)
+ */
+ public static void main(String[] args) {
+ Config.initialize(args);
+
+ try {
+ FileWriter fileWriter = new FileWriter(Config.getStringValue("logfile"));
+ bufferedLogfileWriter = new BufferedWriter(fileWriter);
+
+ } catch (IOException e) {
+ infoMessage("Error: Could not open logfile: " + e.getMessage());
+ }
+
+
+ if (Config.getBooleanValue("server_run")) {
+ new NetCalendarServer(
+ Config.getIntValue("server_port"),
+ Config.getStringValue("server_database_dir"));
+ }
+
+ if (Config.getBooleanValue("client_run")) {
+ new Thread(new SplashScreen()).start();
+ //Make sure we have nice window decorations.
+ JFrame.setDefaultLookAndFeelDecorated(true);
+ netCalendarClient = new NetCalendarClient();
+ }
+ }
+
+ /**
+ * All info messages of the calendar client and the calendar server go through this method.
+ * They are not using System.out.* directly.
+ * @param sMessage Specifies the program info message.
+ */
+ public static void infoMessage(String sMessage) {
+ // Later: Add logging to a logfile!
+ System.out.println(sMessage);
+ logMessage(sMessage);
+ }
+
+ /**
+ * This method is for various messages. All messages will show up in the status bar of the client's main window.
+ * If there is no main window, the infoMessage method will be used instead.
+ * @param sMessage Specifies the message to be displayed in the status bar.
+ */
+ public static void statusMessage(String sMessage) {
+ if (netCalendarClient != null)
+ netCalendarClient.statusMessage(sMessage);
+ else
+ infoMessage(sMessage);
+ }
+
+ /**
+ * This method writes a specific message string into a logfile which is specified in the config.txt.
+ * @param sMessage Specified the message string to write into the logfile.
+ */
+ private static void logMessage(String sMessage) {
+ if (bufferedLogfileWriter != null) {
+ try {
+ bufferedLogfileWriter.write(sMessage + "\n");
+ // bufferedLogfileWriter.flush();
+
+ } catch (IOException e) {
+ Main.infoMessage("Error: Could not write to logfile: " + e.toString());
+ }
+ }
+ }
+
+ /**
+ * This method is called thenever the server or the client process wants to exit.
+ * @param iCode Specifies the exit code to use for the System.exit call.
+ */
+ public static void exit(int iCode) {
+ infoMessage("Shutting down the current process");
+
+ try {
+ bufferedLogfileWriter.close();
+ } catch (IOException e) {
+ System.err.println("Error: Could not close logfile: " + e.toString());
+ }
+
+ System.exit(iCode);
+ }
+
+
+ /**
+ * This method executes an external program.
+ * @param sCommand Specifies the command string to execute.
+ */
+ public static void execExternalCommand(String sCommand) {
+ if (sCommand.equals("none") || sCommand.equals(""))
+ return;
+
+ try {
+ Runtime.getRuntime().exec(sCommand);
+
+ } catch (IOException e) {
+ Main.infoMessage("Error while executing external command: " + e.getMessage());
+ }
+ }
}