gajim-plural/src/common/logger.py

124 lines
3.2 KiB
Python
Raw Normal View History

## logger.py
2003-11-30 17:02:00 +01:00
##
## Gajim Team:
## - Yann Le Boulanger <asterix@lagaule.org>
## - Vincent Hanquez <tab@snarc.org>
## - Nikos Kouremenos <kourem@gmail.com>
2003-11-30 17:02:00 +01:00
##
## Copyright (C) 2003-2005 Gajim Team
2003-11-30 17:02:00 +01:00
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published
## by the Free Software Foundation; version 2 only.
##
## 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.
##
import os
import sys
2003-11-30 17:02:00 +01:00
import time
2005-04-16 00:02:13 +02:00
import common.gajim
2004-05-17 01:47:14 +02:00
from common import i18n
_ = i18n._
2003-11-30 17:02:00 +01:00
2005-05-12 19:17:20 +02:00
LOGPATH = os.path.expanduser('~/.gajim/logs')
if os.name == 'nt':
try:
# Documents and Settings\[User Name]\Application Data\Gajim\logs
LOGPATH = os.environ['appdata'] + '/Gajim/logs'
except KeyError:
2005-05-20 02:12:15 +02:00
# win9x, so use ~/Gajim/logs which is WINDOWS\Application Data\Gajim\logs
LOGPATH = os.path.expanduser('~/Gajim/logs')
2005-05-12 19:17:20 +02:00
2005-04-16 00:02:13 +02:00
class Logger:
def __init__(self):
dot_gajim = os.path.dirname(LOGPATH)
if os.path.isfile(dot_gajim):
print dot_gajim, 'is file but it should be a directory'
print 'Gajim will now exit'
sys.exit()
if os.path.isdir(dot_gajim):
if os.path.isfile(LOGPATH):
2005-05-20 02:12:15 +02:00
print LOGPATH, 'is file but it should be a directory'
print 'Gajim will now exit'
sys.exit()
2005-05-12 19:17:20 +02:00
else: #create ~/.gajim/logs if it doesn't exist
os.mkdir(dot_gajim)
print 'creating', dot_gajim , 'directory'
2003-11-30 17:02:00 +01:00
os.mkdir(LOGPATH)
print 'creating', LOGPATH, 'directory'
2005-04-16 00:02:13 +02:00
def write(self, kind, msg, jid, show = None, tim = None):
if not tim:
tim = time.time()
else:
tim = time.mktime(tim)
if not msg:
msg = ''
msg = msg.replace('\n', '\\n')
ji = jid.split('/')[0]
files = []
if kind == 'status': #we save time:jid:show:msg
if not show:
show = 'online'
if common.gajim.config.get('log_notif_in_user_file'):
2005-04-16 00:02:13 +02:00
files.append(ji)
if common.gajim.config.get('log_notif_in_sep_file'):
2005-04-16 00:02:13 +02:00
files.append('notify.log')
elif kind == 'incoming': # we save time:recv:message
2005-04-16 00:02:13 +02:00
files.append(ji)
jid = 'recv'
show = msg
msg = ''
elif kind == 'outgoing': # we save time:sent:message
2005-04-16 00:02:13 +02:00
files.append(ji)
jid = 'sent'
show = msg
msg = ''
elif kind == 'gc':
files.append(ji)
jid = 'recv'
jids = jid.split('/')
nick = ''
if len(jids) > 1:
nick = jids[1]
show = nick
for f in files:
path_to_file = os.path.join(LOGPATH, f)
fic = open(path_to_file, 'a')
2005-04-16 11:36:18 +02:00
fic.write('%s:%s:%s' % (tim, jid, show))
if msg:
fic.write(':' + msg)
fic.write('\n')
2005-04-16 00:02:13 +02:00
fic.close()
def get_nb_line(self, jid):
path_to_file = os.path.join(LOGPATH, jid.split('/')[0])
fic = open(path_to_file, 'r')
2005-04-16 00:02:13 +02:00
nb = 0
while (fic.readline()):
nb += 1
fic.close()
return nb
def read(self, jid, begin_line, end_line):
path_to_file = os.path.join(LOGPATH, jid.split('/')[0])
fic = open(path_to_file, 'r')
2005-04-16 00:02:13 +02:00
nb = 0
lines = []
while (nb < begin_line and fic.readline()):
nb += 1
while nb < end_line:
line = fic.readline()
if line:
line = line.replace('\\n', '\n')
2005-04-16 00:02:13 +02:00
lineSplited = line.split(':')
if len(lineSplited) > 2:
lines.append(lineSplited)
nb += 1
return nb, lines