summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/swig/Ldb.py
blob: 315a393b3190b9ac5e5e81545bb3c83d572928a4 (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
"""Provide a more Pythonic and object-oriented interface to ldb."""

#
# Swig interface to Samba
#
# Copyright (C) Tim Potter 2006
#
# 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 2 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, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#

from ldb import *

ldb_global_init()

class LdbError(Exception):
    """An exception raised when a ldb error occurs."""
    pass

class LdbMessage:
    """A class representing a ldb message as a Python dictionary."""
    
    def __init__(self, msg = None):

        self._msg = msg
        if self._msg is None:
            self._msg = ldb_msg_new(None)

    def __del__(self):
        talloc_free(self._msg)

    def len(self):
        return self._msg.num_elements

    def __getitem__(self, key):
        elt = ldb_msg_find_element(self._msg, key)
        if elt is None:
            raise KeyError, "No such attribute '%s'" % key
        return [ldb_val_array_getitem(elt.values, i)
                for i in range(elt.num_values)]

    def __setitem__(self, key, value):
        result = ldb_msg_add_value(self._msg, key, str(value))
        if result != LDB_SUCCESS:
            raise LdbError, (result, ldb.strerror(result))
    
class Ldb:
    """A class representing a binding to a ldb file."""

    def __init__(self, url, flags = 0):
        """Initialise underlying ldb."""
    
        self.mem_ctx = talloc_init('mem_ctx for ldb 0x%x' % id(self))
        self.ldb_ctx = ldb_init(self.mem_ctx)

        result =  ldb_connect(self.ldb_ctx, url, flags, None)

        if result != LDB_SUCCESS:
            raise ldbError, (result, ldb.strerror(result))
        
    def __del__(self):
        ldb.talloc_free(self.mem_ctx)
        self.mem_ctx = None
        self.ldb_ctx = None

    def _ldb_call(self, fn, *args):
        """Call a ldb function with args.  Raise a LdbError exception
        if the function returns a non-zero return value."""
        
        result = fn(*args)

        if result != ldb.LDB_SUCCESS:
            raise LdbError, (result, ldb.strerror(result))

    def search(self, expression):
        """Search a ldb for a given expression."""

        self._ldb_call(ldb.search, self.ldb_ctx, None, ldb.LDB_SCOPE_DEFAULT,
                       expression, None);

        return [LdbMessage(ldb.ldb_message_ptr_array_getitem(result.msgs, ndx))
                for ndx in range(result.count)]

    def delete(self, dn):
        """Delete a dn."""

        _dn = ldb_dn_explode(self.ldb_ctx, dn)

        self._ldb_call(ldb.delete, self.ldb_ctx, _dn)

    def rename(self, olddn, newdn):
        """Rename a dn."""
        
        _olddn = ldb_dn_explode(self.ldb_ctx, olddn)
        _newdn = ldb_dn_explode(self.ldb_ctx, newdn)
        
        self._ldb_call(ldb.rename, self.ldb_ctx, _olddn, _newdn)

    def add(self, msg):
        self._ldb_call(ldb.add, self.ldb_ctx, msg)