summaryrefslogtreecommitdiff
path: root/Sparkles/Logger.cs
blob: 3db3979cfac94eca874054e421a655d8a1972d9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
//   SparkleShare, a collaboration and sharing tool.
//   Copyright (C) 2010  Hylke Bons <hi@planetpeanut.uk>
//
//   This program is free software: you can redistribute it and/or modify
//   it under the terms of the GNU Lesser General Public License as 
//   published by the Free Software Foundation, either version 3 of the 
//   License, or (at your option) any later version.
//
//   This program is distributed in the hope that it will be useful,
//   but WITHOUT ANY WARRANTY; without even the implied warranty of
//   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
//   GNU General Public License for more details.
//
//   You should have received a copy of the GNU General Public License
//   along with this program. If not, see <http://www.gnu.org/licenses/>.


using System;
using System.IO;

namespace Sparkles {
    
    public static class Logger {

        static object debug_lock = new object ();
        static int log_size;


        public static void LogInfo (string type, string message)
        {
            LogInfo (type, message, null);
        }


        public static void LogInfo (string type, string message, Exception exception)
        {
            string timestamp = DateTime.Now.ToString ("HH:mm:ss");
            string line;

            if (string.IsNullOrEmpty (type))
                line = timestamp + " " + message;
            else
                line = timestamp + " " + type + " | " + message;

            if (exception != null)
                line += ": " + exception.Message + " " + exception.StackTrace;

            if (Configuration.DebugMode)
                Console.WriteLine (line);

            lock (debug_lock) {
                if (log_size >= 1000) {
                    File.WriteAllText (Configuration.DefaultConfiguration.LogFilePath, line + Environment.NewLine);
                    log_size = 0;

                } else {
                    File.AppendAllText (Configuration.DefaultConfiguration.LogFilePath, line + Environment.NewLine);
                    log_size++;
                }
            }
        }


        public static void WriteCrashReport (Exception e)
        {
            string home_path = Environment.GetFolderPath (Environment.SpecialFolder.Personal);

            if (InstallationInfo.OperatingSystem == OS.Windows)
                home_path = Environment.GetFolderPath (Environment.SpecialFolder.UserProfile);

            string crash_report_file_path = Path.Combine (home_path, "SparkleShare", "crash_report.txt");

            string n = Environment.NewLine;
            string crash_report =
                "Oops! SparkleShare has crashed... :(" + n +
                n +
                "If you want to help fix this crash, please report it at " + n +
                "https://github.com/hbons/SparkleShare/issues and include the lines below." + n +
                n +
                "Remove any sensitive information like file names, IP addresses, domain names, etc. if needed." + n +
                n +
                "------" + n +
                n;

            crash_report += e.GetType () + ": " + e.Message + n + e.StackTrace + n + n;

            if (e.InnerException != null)
                crash_report += n + e.InnerException.Message + n + e.InnerException.StackTrace + n;

            if (Configuration.DefaultConfiguration != null && File.Exists (Configuration.DefaultConfiguration.LogFilePath)) {
                string debug_log      = File.ReadAllText (Configuration.DefaultConfiguration.LogFilePath);
                string [] debug_lines = debug_log.Split (Environment.NewLine.ToCharArray ()); 
                int line_count        = 50;
                    
                if (debug_lines.Length > line_count)
                    crash_report += string.Join (n, debug_lines, (debug_lines.Length - line_count), line_count) + n;
                else
                    crash_report += debug_log + n;
            }

            File.WriteAllText (crash_report_file_path, crash_report);
            Console.WriteLine (DateTime.Now.ToString ("HH:mm:ss") + " | Wrote crash report to " + crash_report_file_path);
        }
    }
}