File: TableInNestedNS.py

package info (click to toggle)
flatbuffers 1.12.1~git20200711.33e2d80%2Bdfsg1-0.6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 8,240 kB
  • sloc: cpp: 34,954; python: 5,085; java: 4,080; cs: 4,036; php: 1,455; ansic: 1,323; javascript: 1,074; sh: 733; xml: 727; makefile: 35
file content (64 lines) | stat: -rw-r--r-- 1,840 bytes parent folder | download | duplicates (5)
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
# automatically generated by the FlatBuffers compiler, do not modify

# namespace: NamespaceB

import flatbuffers
from flatbuffers.compat import import_numpy
np = import_numpy()

class TableInNestedNS(object):
    __slots__ = ['_tab']

    @classmethod
    def GetRootAsTableInNestedNS(cls, buf, offset):
        n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
        x = TableInNestedNS()
        x.Init(buf, n + offset)
        return x

    # TableInNestedNS
    def Init(self, buf, pos):
        self._tab = flatbuffers.table.Table(buf, pos)

    # TableInNestedNS
    def Foo(self):
        o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
        if o != 0:
            return self._tab.Get(flatbuffers.number_types.Int32Flags, o + self._tab.Pos)
        return 0

def TableInNestedNSStart(builder): builder.StartObject(1)
def TableInNestedNSAddFoo(builder, foo): builder.PrependInt32Slot(0, foo, 0)
def TableInNestedNSEnd(builder): return builder.EndObject()


class TableInNestedNST(object):

    # TableInNestedNST
    def __init__(self):
        self.foo = 0  # type: int

    @classmethod
    def InitFromBuf(cls, buf, pos):
        tableInNestedNS = TableInNestedNS()
        tableInNestedNS.Init(buf, pos)
        return cls.InitFromObj(tableInNestedNS)

    @classmethod
    def InitFromObj(cls, tableInNestedNS):
        x = TableInNestedNST()
        x._UnPack(tableInNestedNS)
        return x

    # TableInNestedNST
    def _UnPack(self, tableInNestedNS):
        if tableInNestedNS is None:
            return
        self.foo = tableInNestedNS.Foo()

    # TableInNestedNST
    def Pack(self, builder):
        TableInNestedNSStart(builder)
        TableInNestedNSAddFoo(builder, self.foo)
        tableInNestedNS = TableInNestedNSEnd(builder)
        return tableInNestedNS