summaryrefslogtreecommitdiff
path: root/alot/init.py
blob: 9972e42fe8957f887989a95b8743782d34bd2e7d (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
#!/usr/bin/python
"""
This file is part of alot, a terminal UI to notmuch mail (notmuchmail.org).
Copyright (C) 2011 Patrick Totzke <patricktotzke@gmail.com>

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, 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/>.
"""
import argparse
import logging
import os

import settings
from account import AccountManager
from db import DBManager
from ui import UI
from urwid.command_map import command_map


def parse_args():
    parser = argparse.ArgumentParser()
    parser.add_argument('-c', dest='configfile',
                        default='~/.alot.rc',
                        help='alot\'s config file')
    parser.add_argument('-n', dest='notmuchconfigfile',
                        default='~/.notmuch-config',
                        help='notmuch\'s config file')
    parser.add_argument('-C', dest='colours',
                        type=int,
                        choices=[1, 16, 256],
                        help='colour mode')
    parser.add_argument('-r', dest='read_only',
                        action='store_true',
                        help='open db in read only mode')
    parser.add_argument('-p', dest='db_path',
                        help='path to notmuch index')
    parser.add_argument('-d', dest='debug_level',
                        default='info',
                        choices=['debug', 'info', 'warning', 'error'],
                        help='debug level')
    parser.add_argument('-l', dest='logfile',
                        default='/dev/null',
                        help='logfile')
    parser.add_argument('query', nargs='?',
                        default='',
                        help='initial searchstring')
    return parser.parse_args()


def main():
    # interpret cml arguments
    args = parse_args()

    #read config file
    configfilename = os.path.expanduser(args.configfile)
    settings.config.read(configfilename)
    notmuchfile = os.path.expanduser(args.notmuchconfigfile)
    settings.notmuchconfig.read(notmuchfile)
    settings.hooks.setup(settings.config.get('general', 'hooksfile'))

    # setup logging
    numeric_loglevel = getattr(logging, args.debug_level.upper(), None)
    logfilename = os.path.expanduser(args.logfile)
    logging.basicConfig(level=numeric_loglevel, filename=logfilename)
    logger = logging.getLogger()

    #accountman
    aman = AccountManager(settings.config)

    # get ourselves a database manager
    dbman = DBManager(path=args.db_path, ro=args.read_only)

    # set up global urwid command maps
    command_map['j'] = 'cursor down'
    command_map['k'] = 'cursor up'
    command_map[' '] = 'cursor page down'
    command_map['enter'] = 'select'
    command_map['esc'] = 'cancel'

    # get initial searchstring
    query = settings.config.get('general','initial_searchstring')
    if args.query != '':
        query = args.query

    # set up and start interface
    ui = UI(dbman,
            logger,
            aman,
            query,
            args.colours,
    )

if __name__ == "__main__":
    main()