tests:docs: don't load or test the static param_table.
[Samba.git] / python / samba / ndr.py
blob39e4a482efbf32f47ff27f3a536e158a909c2722
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, allow_remaining=False):
37 """NDR unpack an object.
39 :param cls: Class of the object to unpack
40 :param data: Buffer to unpack
41 :param allow_remaining: allows remaining data at the end (default=False)
42 :return: Unpacked object
43 """
44 object = cls()
45 object.__ndr_unpack__(data, allow_remaining=allow_remaining)
46 return object
49 def ndr_print(object):
50 return object.__ndr_print__()