s4 provision/dns: Move secretsdb_setup_dns to the AD DNS specific setup
[Samba/gebeck_regimport.git] / source4 / scripting / python / samba / ndr.py
blobccab1123d962814621848c504531aac99078eabd
1 # -*- coding: utf-8 -*-
3 # Unix SMB/CIFS implementation.
4 # Copyright © Jelmer Vernooij <jelmer@samba.org> 2008
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 """Network Data Representation (NDR) marshalling and unmarshalling."""
24 def ndr_pack(object):
25 """Pack a NDR object.
27 :param object: Object to pack
28 :return: String object with marshalled object.
29 """
30 ndr_pack = getattr(object, "__ndr_pack__", None)
31 if ndr_pack is None:
32 raise TypeError("%r is not a NDR object" % object)
33 return ndr_pack()
36 def ndr_unpack(cls, data):
37 """NDR unpack an object.
39 :param cls: Class of the object to unpack
40 :param data: Buffer to unpack
41 :return: Unpacked object
42 """
43 object = cls()
44 object.__ndr_unpack__(data)
45 return object
48 def ndr_print(object):
49 return object.__ndr_print__()