unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 2473f0421ed18e003b9282f6480cf8bdf19b11ad 2804 bytes (raw)
name: bindings/python/notmuch/globals.py 	 # note: path name is non-authoritative(*)

 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
 
"""
This file is part of notmuch.

Notmuch 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.

Notmuch 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 notmuch.  If not, see <http://www.gnu.org/licenses/>.

Copyright 2010 Sebastian Spaeth <Sebastian@SSpaeth.de>
"""

from ctypes import CDLL, Structure, POINTER

#-----------------------------------------------------------------------------
#package-global instance of the notmuch library
try:
    nmlib = CDLL("libnotmuch.so.3")
except:
    try:
        # If Notmuch is installed to a location not searched by
        # dlopen(3), we must import it using an absolute path.  We
        # can't just reset LD_LIBRARY_PATH because ld.so reads it when
        # Python is starting and will not reread the environment.  We
        # assume the install directory structure has the form:
        #
        #   /base-path/lib/pythonX.Y/site-packages/notmuch/globals.py
        #
        # so that we can get the library directory by stripping off
        # the last four elements of the path.
        import os.path
        path = os.path.abspath(__file__)
        for i in range(4):
            path = os.path.dirname(path)
        nmlib = CDLL(os.path.join(path, 'libnotmuch.so.3'))
    except:
        raise ImportError("Could not find shared 'notmuch' library.")

from .compat import Python3StringMixIn, encode_utf8 as _str

class Enum(object):
    """Provides ENUMS as "code=Enum(['a','b','c'])" where code.a=0 etc..."""
    def __init__(self, names):
        for number, name in enumerate(names):
            setattr(self, name, number)


class NotmuchDatabaseS(Structure):
    pass
NotmuchDatabaseP = POINTER(NotmuchDatabaseS)


class NotmuchQueryS(Structure):
    pass
NotmuchQueryP = POINTER(NotmuchQueryS)


class NotmuchThreadsS(Structure):
    pass
NotmuchThreadsP = POINTER(NotmuchThreadsS)


class NotmuchThreadS(Structure):
    pass
NotmuchThreadP = POINTER(NotmuchThreadS)


class NotmuchMessagesS(Structure):
    pass
NotmuchMessagesP = POINTER(NotmuchMessagesS)


class NotmuchMessageS(Structure):
    pass
NotmuchMessageP = POINTER(NotmuchMessageS)


class NotmuchTagsS(Structure):
    pass
NotmuchTagsP = POINTER(NotmuchTagsS)


class NotmuchDirectoryS(Structure):
    pass
NotmuchDirectoryP = POINTER(NotmuchDirectoryS)


class NotmuchFilenamesS(Structure):
    pass
NotmuchFilenamesP = POINTER(NotmuchFilenamesS)

debug log:

solving 2473f04 ...
found 2473f04 in https://yhetil.org/notmuch/1365475646-22926-1-git-send-email-jed@59A2.org/
found c7632c3 in https://yhetil.org/notmuch.git/
preparing index
index prepared:
100644 c7632c3266d428cc42ee43c652701df13c7364dd	bindings/python/notmuch/globals.py

applying [1/1] https://yhetil.org/notmuch/1365475646-22926-1-git-send-email-jed@59A2.org/
diff --git a/bindings/python/notmuch/globals.py b/bindings/python/notmuch/globals.py
index c7632c3..2473f04 100644

Checking patch bindings/python/notmuch/globals.py...
Applied patch bindings/python/notmuch/globals.py cleanly.

index at:
100644 2473f0421ed18e003b9282f6480cf8bdf19b11ad	bindings/python/notmuch/globals.py

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).