aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/data/scripts/uzbl-event-manager
blob: 99b215acf9de281301d15f5065e648e04b6f6865 (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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
#!/usr/bin/env python

# Event Manager for Uzbl
# Copyright (c) 2009, Mason Larobina <mason.larobina@gmail.com>
# Copyright (c) 2009, Dieter Plaetinck <dieter@plaetinck.be>
#
# 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/>.

'''

E V E N T _ M A N A G E R . P Y
===============================

Event manager for uzbl written in python.

'''

import imp
import os
import sys
import re
import socket
import pprint
import time
import atexit
from select import select
from signal import signal, SIGTERM
from optparse import OptionParser
from traceback import print_exc
from functools import partial


def xdghome(key, default):
    '''Attempts to use the environ XDG_*_HOME paths if they exist otherwise
    use $HOME and the default path.'''

    xdgkey = "XDG_%s_HOME" % key
    if xdgkey in os.environ.keys() and os.environ[xdgkey]:
        return os.environ[xdgkey]

    return os.path.join(os.environ['HOME'], default)


# ============================================================================
# ::: Default configuration section ::::::::::::::::::::::::::::::::::::::::::
# ============================================================================

# `make install` will put the correct value here for your system
PREFIX = '/usr/local/'

# Setup xdg paths.
DATA_DIR = os.path.join(xdghome('DATA', '.local/share/'), 'uzbl/')
CACHE_DIR = os.path.join(xdghome('CACHE', '.cache/'), 'uzbl/')

# Event manager config dictionary. This is not to be confused with the config
# dict that tracks variables in the uzbl instance.
CONFIG = {
    'verbose':         False,
    'daemon_mode':     True,
    'auto_close':      False,

    'plugins_load':    [],
    'plugins_ignore':  [],

    'plugin_dirs':     [os.path.join(DATA_DIR, 'plugins/'),
        os.path.join(PREFIX, 'share/uzbl/examples/data/plugins/')],

    'server_socket':   os.path.join(CACHE_DIR, 'event_daemon'),
    'pid_file':        os.path.join(CACHE_DIR, 'event_daemon.pid'),
}

# ============================================================================
# ::: End of configuration section :::::::::::::::::::::::::::::::::::::::::::
# ============================================================================


# Define some globals.
SCRIPTNAME = os.path.basename(sys.argv[0])
FINDSPACES = re.compile("\s+")


class ArgumentError(Exception):
    pass


def echo(msg):
    '''Prints only if the verbose flag has been set.'''

    if CONFIG['verbose']:
        sys.stdout.write("%s: %s\n" % (SCRIPTNAME, msg))


def error(msg):
    '''Prints error messages to stderr.'''

    sys.stderr.write("%s: error: %s\n" % (SCRIPTNAME, msg))


def counter():
    '''Generate unique object id's.'''

    i = 0
    while True:
        i += 1
        yield i


def find_plugins(plugin_dirs):
    '''Find all event manager plugins in the plugin dirs and return a
    dictionary of {'plugin-name.py': '/full/path/to/plugin-name.py', ...}'''

    plugins = {}

    for plugin_dir in plugin_dirs:
        plugin_dir = os.path.realpath(os.path.expandvars(plugin_dir))
        if not os.path.isdir(plugin_dir):
            continue

        for filename in os.listdir(plugin_dir):
            if not filename.lower().endswith('.py'):
                continue

            path = os.path.join(plugin_dir, filename)
            if not os.path.isfile(path):
                continue

            if filename not in plugins:
                plugins[filename] = plugin_dir

    return plugins


def load_plugins(plugin_dirs, load=None, ignore=None):
    '''Load event manager plugins found in the plugin_dirs.'''

    load = [] if load is None else load
    ignore = [] if ignore is None else ignore

    # Find the plugins in the plugin_dirs.
    found = find_plugins(plugin_dirs)

    if load:
        # Ignore anything not in the load list.
        for plugin in found.keys():
            if plugin not in load:
                del found[plugin]

    if ignore:
        # Ignore anything in the ignore list.
        for plugin in found.keys():
            if plugin in ignore:
                del found[plugin]

    # Print plugin list to be loaded.
    pprint.pprint(found)

    loaded = {}
    # Load all found plugins into the loaded dict.
    for (filename, plugin_dir) in found.items():
        name = filename[:-3]
        info = imp.find_module(name, [plugin_dir])
        plugin = imp.load_module(name, *info)
        loaded[(plugin_dir, filename)] = plugin

    return loaded


def daemonize():
    '''Daemonize the process using the Stevens' double-fork magic.'''

    try:
        if os.fork():
            os._exit(0)

    except OSError:
        print_exc()
        sys.stderr.write("fork #1 failed")
        sys.exit(1)

    os.chdir('/')
    os.setsid()
    os.umask(0)

    try:
        if os.fork():
            os._exit(0)

    except OSError:
        print_exc()
        sys.stderr.write("fork #2 failed")
        sys.exit(1)

    sys.stdout.flush()
    sys.stderr.flush()

    devnull = '/dev/null'
    stdin = file(devnull, 'r')
    stdout = file(devnull, 'a+')
    stderr = file(devnull, 'a+', 0)

    os.dup2(stdin.fileno(), sys.stdin.fileno())
    os.dup2(stdout.fileno(), sys.stdout.fileno())
    os.dup2(stderr.fileno(), sys.stderr.fileno())


def make_dirs(path):
    '''Make all basedirs recursively as required.'''

    dirname = os.path.dirname(path)
    if not os.path.isdir(dirname):
        os.makedirs(dirname)


def make_pid_file(pid_file):
    '''Make pid file at given pid_file location.'''

    make_dirs(pid_file)
    fileobj = open(pid_file, 'w')
    fileobj.write('%d' % os.getpid())
    fileobj.close()


def del_pid_file(pid_file):
    '''Delete pid file at given pid_file location.'''

    if os.path.isfile(pid_file):
        os.remove(pid_file)


def get_pid(pid_file):
    '''Read pid from pid_file.'''

    try:
        fileobj = open(pid_file, 'r')
        pid = int(fileobj.read())
        fileobj.close()
        return pid

    except IOError, ValueError:
        print_exc()
        return None


def pid_running(pid):
    '''Returns True if a process with the given pid is running.'''

    try:
        os.kill(pid, 0)

    except OSError:
        return False

    else:
        return True


def term_process(pid):
    '''Send a SIGTERM signal to the process with the given pid.'''

    if not pid_running(pid):
        return False

    os.kill(pid, SIGTERM)

    start = time.time()
    while True:
        if not pid_running(pid):
            return True

        if time.time() - start > 5:
            raise OSError('failed to stop process with pid: %d' % pid)

        time.sleep(0.25)


def parse_msg(uzbl, msg):
    '''Parse an incoming msg from a uzbl instance. All non-event messages
    will be printed here and not be passed to the uzbl instance event
    handler function.'''

    if not msg:
        return

    cmd = FINDSPACES.split(msg, 3)
    if not cmd or cmd[0] != 'EVENT':
        # Not an event message.
        print '---', msg
        return

    while len(cmd) < 4:
        cmd.append('')

    event, args = cmd[2], cmd[3]
    if not event:
        return

    try:
        uzbl.event(event, args)

    except:
        print_exc()


class EventHandler(object):

    nexthid = counter().next

    def __init__(self, event, handler, *args, **kargs):
        if not callable(handler):
            raise ArgumentError("EventHandler object requires a callable "
                "object function for the handler argument not: %r" % handler)

        self.function = handler
        self.args = args
        self.kargs = kargs
        self.event = event
        self.hid = self.nexthid()


    def __repr__(self):
        args = ["event=%s" % self.event, "hid=%d" % self.hid,
            "function=%r" % self.function]

        if self.args:
            args.append("args=%r" % self.args)

        if self.kargs:
            args.append("kargs=%r" % self.kargs)

        return "<EventHandler(%s)>" % ', '.join(args)


class UzblInstance(object):

    # Give all plugins access to the main config dict.
    config = CONFIG

    def __init__(self, parent, client_socket):

        # Internal variables.
        self.exports = {}
        self.handlers = {}
        self.parent = parent
        self.client_socket = client_socket

        self.depth = 0
        self.buffer = ''
        self.pid = None

        # Call the init function in every plugin. The init function in each
        # plugin is where that plugin connects functions to events and exports
        # functions to the uzbl object.
        for plugin in self.parent['plugins'].values():
            try:
                plugin.init(self)

            except:
                raise


    def send(self, msg):
        '''Send a command to the uzbl instance via the socket file.'''

        msg = msg.strip()
        if self.client_socket:
            print '%s<-- %s' % ('  ' * self.depth, msg)
            self.client_socket.send(("%s\n" % msg).encode('utf-8'))

        else:
            print '%s!-- %s' % ('  ' * self.depth, msg)


    def export(self, name, function):
        '''Export `function(uzbl, *args, ..)` inside a plugin to the uzbl
        object like so `uzbl.function(*args, ..)`. This will allow other
        plugins to call functions inside the current plugin (which is currently
        calling this function) via the uzbl object.'''

        self.__dict__.__setitem__(name, partial(function, self))


    def export_dict(self, export_dict):
        '''Export multiple (name, function)'s at once inside a dict of the
        form `{name1: function1, name2: function2, ...}`.'''

        for (name, function) in export_dict.items():
            self.export(name, function)


    def connect(self, event, handler, *args, **kargs):
        '''Connect a uzbl event with a handler. Handlers can either be a
        function or a uzbl command string.'''

        event = event.upper().strip()
        assert event and ' ' not in event

        if event not in self.handlers.keys():
            self.handlers[event] = []

        handlerobj = EventHandler(event, handler, *args, **kargs)
        self.handlers[event].append(handlerobj)
        print handlerobj


    def connect_dict(self, connect_dict):
        '''Connect a dictionary comprising of {"EVENT_NAME": handler, ..} to
        the event handler stack.

        If you need to supply args or kargs to an event use the normal connect
        function.'''

        for (event, handler) in connect_dict.items():
            self.connect(event, handler)


    def remove_by_id(self, hid):
        '''Remove connected event handler by unique handler id.'''

        for (event, handlers) in self.handlers.items():
            for handler in list(handlers):
                if hid != handler.hid:
                    continue

                echo("removed %r" % handler)
                handlers.remove(handler)
                return

        echo('unable to find & remove handler with id: %d' % hid)


    def remove(self, handler):
        '''Remove connected event handler.'''

        for (event, handlers) in self.handlers.items():
            if handler in handlers:
                echo("removed %r" % handler)
                handlers.remove(handler)
                return

        echo('unable to find & remove handler: %r' % handler)


    def exec_handler(self, handler, *args, **kargs):
        '''Execute event handler function.'''

        args += handler.args
        kargs = dict(handler.kargs.items()+kargs.items())
        handler.function(self, *args, **kargs)


    def event(self, event, *args, **kargs):
        '''Raise an event.'''

        event = event.upper()
        elems = [event,]
        if args: elems.append(unicode(args))
        if kargs: elems.append(unicode(kargs))
        print "%s--> %s" % ('  ' * self.depth, ' '.join(elems))

        if event == "INSTANCE_START" and args:
            self.pid = int(args[0])

        if event not in self.handlers:
            return

        for handler in self.handlers[event]:
            self.depth += 1
            try:
                self.exec_handler(handler, *args, **kargs)

            except:
                print_exc()

            self.depth -= 1


    def close(self):
        '''Close the client socket and clean up.'''

        try:
            self.client_socket.close()

        except:
            pass

        for (name, plugin) in self.parent['plugins'].items():
            if hasattr(plugin, 'cleanup'):
                plugin.cleanup(self)


class UzblEventDaemon(dict):
    def __init__(self):

        # Init variables and dict keys.
        dict.__init__(self, {'uzbls': {}})
        self.running = None
        self.server_socket = None
        self.socket_location = None

        # Register that the event daemon server has started by creating the
        # pid file.
        make_pid_file(CONFIG['pid_file'])

        # Register a function to clean up the socket and pid file on exit.
        atexit.register(self.quit)

        # Make SIGTERM act orderly.
        signal(SIGTERM, lambda signum, stack_frame: sys.exit(1))

        # Load plugins, first-build of the plugins may be a costly operation.
        self['plugins'] = load_plugins(CONFIG['plugin_dirs'],
            CONFIG['plugins_load'], CONFIG['plugins_ignore'])


    def _create_server_socket(self):
        '''Create the event manager daemon socket for uzbl instance duplex
        communication.'''

        server_socket = CONFIG['server_socket']
        server_socket = os.path.realpath(os.path.expandvars(server_socket))
        self.socket_location = server_socket

        # Delete socket if it exists.
        if os.path.exists(server_socket):
            os.remove(server_socket)

        self.server_socket = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
        self.server_socket.bind(server_socket)
        self.server_socket.listen(5)


    def _close_server_socket(self):
        '''Close and delete the server socket.'''

        try:
            self.server_socket.close()
            self.server_socket = None

            if os.path.exists(self.socket_location):
                os.remove(self.socket_location)

        except:
            pass


    def run(self):
        '''Main event daemon loop.'''

        # Create event daemon socket.
        self._create_server_socket()
        echo('listening on: %s' % self.socket_location)

        if CONFIG['daemon_mode']:
            echo('entering daemon mode.')
            daemonize()
            # The pid has changed so update the pid file.
            make_pid_file(CONFIG['pid_file'])

        # Now listen for incoming connections and or data.
        self.listen()

        # Clean up.
        self.quit()


    def listen(self):
        '''Accept incoming connections and constantly poll instance sockets
        for incoming data.'''

        self.running = True
        while self.running:

            sockets = [self.server_socket] + self['uzbls'].keys()

            reads, _, errors = select(sockets, [], sockets, 1)

            if self.server_socket in reads:
                self.accept_connection()
                reads.remove(self.server_socket)

            for client in reads:
                self.read_socket(client)

            for client in errors:
                error('Unknown error on socket: %r' % client)
                self.close_connection(client)


    def read_socket(self, client):
        '''Read data from an instance socket and pass to the uzbl objects
        event handler function.'''

        uzbl = self['uzbls'][client]
        try:
            raw = unicode(client.recv(8192), 'utf-8', 'ignore')

        except:
            print_exc()
            raw = None

        if not raw:
            # Read null byte, close socket.
            return self.close_connection(client)

        uzbl.buffer += raw
        msgs = uzbl.buffer.split('\n')
        uzbl.buffer = msgs.pop()

        for msg in msgs:
            try:
                parse_msg(uzbl, msg.strip())

            except:
                print_exc()


    def accept_connection(self):
        '''Accept incoming connection to the server socket.'''

        client_socket = self.server_socket.accept()[0]

        uzbl = UzblInstance(self, client_socket)
        self['uzbls'][client_socket] = uzbl


    def close_connection(self, client):
        '''Clean up after instance close.'''

        try:
            if client in self['uzbls']:
                uzbl = self['uzbls'][client]
                uzbl.close()
                del self['uzbls'][client]

        except:
            print_exc()

        if not len(self['uzbls']) and CONFIG['auto_close']:
            echo('auto closing event manager.')
            self.running = False


    def quit(self):
        '''Close all instance socket objects, server socket and delete the
        pid file.'''

        echo('shutting down event manager.')

        for client in self['uzbls'].keys():
            self.close_connection(client)

        echo('unlinking: %r' % self.socket_location)
        self._close_server_socket()

        echo('deleting pid file: %r' % CONFIG['pid_file'])
        del_pid_file(CONFIG['pid_file'])


def stop_action():
    '''Stop the event manager daemon.'''

    pid_file = CONFIG['pid_file']
    if not os.path.isfile(pid_file):
        return echo('no running daemon found.')

    echo('found pid file: %r' % pid_file)
    pid = get_pid(pid_file)
    if not pid_running(pid):
        echo('no process with pid: %d' % pid)
        return os.remove(pid_file)

    echo("terminating process with pid: %d" % pid)
    term_process(pid)
    if os.path.isfile(pid_file):
        os.remove(pid_file)

    echo('stopped event daemon.')


def start_action():
    '''Start the event manager daemon.'''

    pid_file = CONFIG['pid_file']
    if os.path.isfile(pid_file):
        echo('found pid file: %r' % pid_file)
        pid = get_pid(pid_file)
        if pid_running(pid):
            return echo('event daemon already started with pid: %d' % pid)

        echo('no process with pid: %d' % pid)
        os.remove(pid_file)

    echo('starting event manager.')
    UzblEventDaemon().run()


def restart_action():
    '''Restart the event manager daemon.'''

    echo('restarting event manager daemon.')
    stop_action()
    start_action()


def list_action():
    '''List all the plugins being loaded by the event daemon.'''

    plugins = find_plugins(CONFIG['plugin_dirs'])
    dirs = {}

    for (plugin, plugin_dir) in plugins.items():
        if plugin_dir not in dirs:
            dirs[plugin_dir] = []

        dirs[plugin_dir].append(plugin)

    for (index, (plugin_dir, plugin_list)) in enumerate(sorted(dirs.items())):
        if index:
            print

        print "%s:" % plugin_dir
        for plugin in sorted(plugin_list):
            print "    %s" % plugin


if __name__ == "__main__":
    USAGE = "usage: %prog [options] {start|stop|restart|list}"
    PARSER = OptionParser(usage=USAGE)
    PARSER.add_option('-v', '--verbose', dest='verbose', action="store_true",
      help="print verbose output.")

    PARSER.add_option('-d', '--plugin-dirs', dest='plugin_dirs', action="store",
      metavar="DIRS", help="Specify plugin directories in the form of "\
      "'dir1:dir2:dir3'.")

    PARSER.add_option('-l', '--load-plugins', dest="load", action="store",
      metavar="PLUGINS", help="comma separated list of plugins to load")

    PARSER.add_option('-i', '--ignore-plugins', dest="ignore", action="store",
      metavar="PLUGINS", help="comma separated list of plugins to ignore")

    PARSER.add_option('-p', '--pid-file', dest='pid', action='store',
      metavar='FILE', help="specify pid file location")

    PARSER.add_option('-s', '--server-socket', dest='socket', action='store',
      metavar='SOCKET', help="specify the daemon socket location")

    PARSER.add_option('-n', '--no-daemon', dest="daemon",
      action="store_true", help="don't enter daemon mode.")

    PARSER.add_option('-a', '--auto-close', dest='autoclose',
      action='store_true', help='auto close after all instances disconnect.')

    (OPTIONS, ARGS) = PARSER.parse_args()

    # init like {start|stop|..} daemon actions dict.
    DAEMON_ACTIONS = {'start': start_action, 'stop': stop_action,
        'restart': restart_action, 'list': list_action}

    if not ARGS:
        ACTION = 'start'

    elif len(ARGS) == 1:
        ACTION = ARGS[0]
        if ACTION not in DAEMON_ACTIONS:
            raise ArgumentError("unknown argument: %r" % ACTION)

    else:
        raise ArgumentError("too many arguments: %r" % ARGS)

    # parse other flags & options.
    if OPTIONS.verbose:
        CONFIG['verbose'] = True

    if OPTIONS.plugin_dirs:
        PLUGIN_DIRS = []
        for DIR in OPTIONS.plugin_dirs.split(':'):
            if not DIR:
                continue

            PLUGIN_DIRS.append(os.path.realpath(DIR))

        CONFIG['plugin_dirs'] = PLUGIN_DIRS
        echo("plugin search dirs: %r" % PLUGIN_DIRS)

    if OPTIONS.load and OPTIONS.ignore:
        error("you can't load and ignore at the same time.")
        sys.exit(1)

    elif OPTIONS.load:
        LOAD = CONFIG['plugins_load']
        for PLUGIN in OPTIONS.load.split(','):
            if PLUGIN.strip():
                LOAD.append(PLUGIN.strip())

        echo('only loading plugin(s): %s' % ', '.join(LOAD))

    elif OPTIONS.ignore:
        IGNORE = CONFIG['plugins_ignore']
        for PLUGIN in OPTIONS.ignore.split(','):
            if PLUGIN.strip():
                IGNORE.append(PLUGIN.strip())

        echo('ignoring plugin(s): %s' % ', '.join(IGNORE))

    if OPTIONS.autoclose:
        CONFIG['auto_close'] = True
        echo('will auto close.')

    if OPTIONS.pid:
        CONFIG['pid_file'] = os.path.realpath(OPTIONS.pid)
        echo("pid file location: %r" % CONFIG['pid_file'])

    if OPTIONS.socket:
        CONFIG['server_socket'] = os.path.realpath(OPTIONS.socket)
        echo("daemon socket location: %s" % CONFIG['server_socket'])

    if OPTIONS.daemon:
        CONFIG['daemon_mode'] = False

    # Now {start|stop|...}
    DAEMON_ACTIONS[ACTION]()