summary refs log blame commit diff stats
path: root/setup.py
blob: 5d71cb53f4e852289e03956f3b8de8552e8d1a65 (plain) (tree)
1
2
3
4
5
6
7
8
                     
                                                             
                                                                        



                     
                          









                                                         
                                                                         










                                                            
                                       
                                    
#!/usr/bin/env python
# Copyright (C) 2009-2013  Roman Zimbelmann <hut@lavabit.com>
# This software is distributed under the terms of the GNU GPL version 3.

import distutils.core
import ranger

if __name__ == '__main__':
    distutils.core.setup(
        name='ranger',
        description='Vim-like file manager',
        long_description=ranger.__doc__,
        version=ranger.__version__,
        author=ranger.__author__,
        author_email=ranger.__email__,
        license=ranger.__license__,
        url='http://savannah.nongnu.org/projects/ranger',
        scripts=['scripts/ranger', 'scripts/rifle'],
        data_files=[('share/man/man1', ['doc/ranger.1', 'doc/rifle.1'])],
        package_data={'ranger': ['data/*', 'config/rc.conf',
            'config/rifle.conf']},
        packages=('ranger',
                  'ranger.api',
                  'ranger.colorschemes',
                  'ranger.container',
                  'ranger.core',
                  'ranger.config',
                  'ranger.ext',
                  'ranger.fsobject',
                  'ranger.gui',
                  'ranger.gui.widgets',
                  'ranger.ext.vcs'))
"cp">#include "chat_session.h" #include "log.h" #define PAUSED_TIMOUT 10.0 #define INACTIVE_TIMOUT 30.0 #define GONE_TIMOUT 600.0 static void _chat_session_free(ChatSession session); typedef enum { CHAT_STATE_STARTED, CHAT_STATE_ACTIVE, CHAT_STATE_PAUSED, CHAT_STATE_COMPOSING, CHAT_STATE_INACTIVE, CHAT_STATE_GONE } chat_state_t; struct chat_session_t { char *recipient; gboolean recipient_supports; chat_state_t state; GTimer *active_timer; gboolean sent; }; static GHashTable *sessions; void chat_sessions_init(void) { sessions = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, (GDestroyNotify)_chat_session_free); } void chat_sessions_clear(void) { g_hash_table_remove_all(sessions); } void chat_session_start(const char * const recipient, gboolean recipient_supports) { ChatSession new_session = malloc(sizeof(struct chat_session_t)); new_session->recipient = strdup(recipient); new_session->recipient_supports = recipient_supports; new_session->state = CHAT_STATE_STARTED; new_session->active_timer = g_timer_new(); new_session->sent = FALSE; g_hash_table_insert(sessions, strdup(recipient), new_session); } gboolean chat_session_exists(const char * const recipient) { ChatSession session = g_hash_table_lookup(sessions, recipient); if (session != NULL) { return TRUE; } else { return FALSE; } } void chat_session_set_composing(const char * const recipient) { ChatSession session = g_hash_table_lookup(sessions, recipient); if (session == NULL) { log_error("No chat session found for %s.", recipient); } else { if (session->state != CHAT_STATE_COMPOSING) { session->sent = FALSE; } session->state = CHAT_STATE_COMPOSING; g_timer_start(session->active_timer); } } void chat_session_no_activity(const char * const recipient) { ChatSession session = g_hash_table_lookup(sessions, recipient); if (session == NULL) { log_error("No chat session found for %s.", recipient); } else { if (session->active_timer != NULL) { gdouble elapsed = g_timer_elapsed(session->active_timer, NULL); if (elapsed > GONE_TIMOUT) { if (session->state != CHAT_STATE_GONE) { session->sent = FALSE; } session->state = CHAT_STATE_GONE; } else if (elapsed > INACTIVE_TIMOUT) { if (session->state != CHAT_STATE_INACTIVE) { session->sent = FALSE; } session->state = CHAT_STATE_INACTIVE; } else if (elapsed > PAUSED_TIMOUT) { if ((session->state != CHAT_STATE_PAUSED) && (session->state != CHAT_STATE_ACTIVE)) { session->sent = FALSE; } session->state = CHAT_STATE_PAUSED; } } } } void chat_session_set_sent(const char * const recipient) { ChatSession session = g_hash_table_lookup(sessions, recipient); if (session == NULL) { log_error("No chat session found for %s.", recipient); } else { session->sent = TRUE; } } gboolean chat_session_get_sent(const char * const recipient) { ChatSession session = g_hash_table_lookup(sessions, recipient); if (session == NULL) { log_error("No chat session found for %s.", recipient); return FALSE; } else { return session->sent; } } void chat_session_end(const char * const recipient) { g_hash_table_remove(sessions, recipient); } gboolean chat_session_is_inactive(const char * const recipient) { ChatSession session = g_hash_table_lookup(sessions, recipient); if (session == NULL) { log_error("No chat session found for %s.", recipient); return FALSE; } else { return (session->state == CHAT_STATE_INACTIVE); } } gboolean chat_session_is_active(const char * const recipient) { ChatSession session = g_hash_table_lookup(sessions, recipient); if (session == NULL) { log_error("No chat session found for %s.", recipient); return FALSE; } else { return (session->state == CHAT_STATE_ACTIVE); } } void chat_session_set_active(const char * const recipient) { ChatSession session = g_hash_table_lookup(sessions, recipient); if (session == NULL) { log_error("No chat session found for %s.", recipient); } else { session->state = CHAT_STATE_ACTIVE; g_timer_start(session->active_timer); session->sent = TRUE; } } gboolean chat_session_is_paused(const char * const recipient) { ChatSession session = g_hash_table_lookup(sessions, recipient); if (session == NULL) { log_error("No chat session found for %s.", recipient); return FALSE; } else { return (session->state == CHAT_STATE_PAUSED); } } gboolean chat_session_is_gone(const char * const recipient) { ChatSession session = g_hash_table_lookup(sessions, recipient); if (session == NULL) { log_error("No chat session found for %s.", recipient); return FALSE; } else { return (session->state == CHAT_STATE_GONE); } } void chat_session_set_gone(const char * const recipient) { ChatSession session = g_hash_table_lookup(sessions, recipient); if (session == NULL) { log_error("No chat session found for %s.", recipient); } else { session->state = CHAT_STATE_GONE; } } gboolean chat_session_get_recipient_supports(const char * const recipient) { ChatSession session = g_hash_table_lookup(sessions, recipient); if (session == NULL) { log_error("No chat session found for %s.", recipient); return FALSE; } else { return session->recipient_supports; } } void chat_session_set_recipient_supports(const char * const recipient, gboolean recipient_supports) { ChatSession session = g_hash_table_lookup(sessions, recipient); if (session == NULL) { log_error("No chat session found for %s.", recipient); } else { session->recipient_supports = recipient_supports; } } static void _chat_session_free(ChatSession session) { if (session != NULL) { if (session->recipient != NULL) { g_free(session->recipient); session->recipient = NULL; } if (session->active_timer != NULL) { g_timer_destroy(session->active_timer); session->active_timer = NULL; } g_free(session); } session = NULL; }