about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-10-09 00:10:06 +0100
committerJames Booth <boothj5@gmail.com>2012-10-09 00:10:06 +0100
commit3c5a50a6640d42a4591cf079033c562d8b62316a (patch)
tree85084706eed5eec9b3c272b3bf87265eb537cca1 /src
parentf8160fc0949b04ae12a8b4c5c0aadd4cd031310f (diff)
downloadprofani-tty-3c5a50a6640d42a4591cf079033c562d8b62316a.tar.gz
Refactored creating new logs
Diffstat (limited to 'src')
-rw-r--r--src/chat_log.c120
1 files changed, 54 insertions, 66 deletions
diff --git a/src/chat_log.c b/src/chat_log.c
index 7db3c13f..cc1356f4 100644
--- a/src/chat_log.c
+++ b/src/chat_log.c
@@ -39,6 +39,7 @@ struct dated_chat_log {
 
 static void _close_file(gpointer key, gpointer value, gpointer user_data);
 static gboolean _log_roll_needed(struct dated_chat_log *dated_log);
+static struct dated_chat_log *_create_log(char *other, const  char * const login);
 
 void
 chat_log_init(void)
@@ -57,69 +58,18 @@ chat_log_chat(const gchar * const login, gchar *other,
     
     // no log for user
     if (dated_log == NULL) {
-        GString *log_file = g_string_new(getenv("HOME"));
-        g_string_append(log_file, "/.profanity/log");
-        create_dir(log_file->str);
-    
-        gchar *login_dir = str_replace(login, "@", "_at_");
-        g_string_append_printf(log_file, "/%s", login_dir);
-        create_dir(log_file->str);
-        free(login_dir);
-    
-        gchar *other_file = str_replace(other, "@", "_at_");
-        g_string_append_printf(log_file, "/%s", other_file);
-
-        GDateTime *dt = g_date_time_new_now_local();
-        gchar *date = g_date_time_format(dt, "_%d_%m_%Y.log");
-        g_string_append_printf(log_file, date);
-
-        logp = fopen(log_file->str, "a");
-        
-        free(other_file);
-        g_string_free(log_file, TRUE);
-
-        struct dated_chat_log *new_log = malloc(sizeof(struct dated_chat_log));
-        new_log->logpp = logp;
-        new_log->date = dt;
-        
-        g_hash_table_insert(logs, other, new_log);
+        dated_log = _create_log(other, login);
+        g_hash_table_insert(logs, other, dated_log);
 
     // log exists but needs rolling
     } else if (_log_roll_needed(dated_log)) {
         fclose(dated_log->logpp);        
-
-        GString *log_file = g_string_new(getenv("HOME"));
-        g_string_append(log_file, "/.profanity/log");
-        create_dir(log_file->str);
-    
-        gchar *login_dir = str_replace(login, "@", "_at_");
-        g_string_append_printf(log_file, "/%s", login_dir);
-        create_dir(log_file->str);
-        free(login_dir);
-    
-        gchar *other_file = str_replace(other, "@", "_at_");
-        g_string_append_printf(log_file, "/%s", other_file);
-
-        GDateTime *dt = g_date_time_new_now_local();
-        gchar *date = g_date_time_format(dt, "_%d_%m_%Y.log");
-        g_string_append_printf(log_file, date);
-
-        logp = fopen(log_file->str, "a");
-        
-        free(other_file);
-        g_string_free(log_file, TRUE);
-
-        struct dated_chat_log *new_log = malloc(sizeof(struct dated_chat_log));
-        new_log->logpp = logp;
-        new_log->date = dt;
-
-        g_hash_table_replace(logs, other, new_log);
-
-    // log exists for user
-    } else {
-        logp = (FILE *) dated_log->logpp;
+        dated_log = _create_log(other, login);
+        g_hash_table_replace(logs, other, dated_log);
     }
 
+    logp = (FILE *) dated_log->logpp;
+
     GDateTime *dt = g_date_time_new_now(tz);
     gchar *date_fmt = g_date_time_format(dt, "%H:%M:%S");
 
@@ -133,13 +83,58 @@ chat_log_chat(const gchar * const login, gchar *other,
     g_date_time_unref(dt);
 }
 
+void
+chat_log_close(void)
+{
+    g_hash_table_foreach(logs, (GHFunc) _close_file, NULL);
+    g_time_zone_unref(tz);
+}
+
+static struct dated_chat_log *
+_create_log(char *other, const char * const login)
+{
+    GString *log_file = g_string_new(getenv("HOME"));
+    g_string_append(log_file, "/.profanity/log");
+    create_dir(log_file->str);
+
+    gchar *login_dir = str_replace(login, "@", "_at_");
+    g_string_append_printf(log_file, "/%s", login_dir);
+    create_dir(log_file->str);
+    free(login_dir);
+
+    gchar *other_file = str_replace(other, "@", "_at_");
+    g_string_append_printf(log_file, "/%s", other_file);
+
+    GDateTime *dt = g_date_time_new_now_local();
+    //gchar *date = g_date_time_format(dt, "_%d_%m_%Y.log");
+    gchar *date = g_date_time_format(dt, "_%d_%m_%Y_%H_%M.log");
+    g_string_append_printf(log_file, date);
+
+    gpointer logp = fopen(log_file->str, "a");
+    
+    free(other_file);
+    g_string_free(log_file, TRUE);
+
+    struct dated_chat_log *new_log = malloc(sizeof(struct dated_chat_log));
+    new_log->logpp = logp;
+    new_log->date = dt;
+
+    return new_log;
+}
+
+
 static gboolean
 _log_roll_needed(struct dated_chat_log *dated_log)
 {
     gboolean result = FALSE;
     GDateTime *now = g_date_time_new_now_local();
-    if (g_date_time_get_day_of_year(dated_log->date) !=
-            g_date_time_get_day_of_year(now)) {
+
+
+
+    if (g_date_time_get_minute(dated_log->date) !=
+            g_date_time_get_minute(now)) {
+//    if (g_date_time_get_day_of_year(dated_log->date) !=
+//            g_date_time_get_day_of_year(now)) {
         result = TRUE;
     }
     g_date_time_unref(now);
@@ -147,13 +142,6 @@ _log_roll_needed(struct dated_chat_log *dated_log)
     return result;
 }
 
-void
-chat_log_close(void)
-{
-    g_hash_table_foreach(logs, (GHFunc) _close_file, NULL);
-    g_time_zone_unref(tz);
-}
-
 static void
 _close_file(gpointer key, gpointer value, gpointer user_data)
 {