aboutsummaryrefslogtreecommitdiffstats
path: root/build-aux/qmi-codegen/Container.py
blob: ac156914ca76bf78e1ac382e7ac4d0d5d120e483 (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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
#!/usr/bin/env python
# -*- Mode: python; tab-width: 4; indent-tabs-mode: nil -*-
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Lesser 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 Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License along
# with this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright (C) 2012 Lanedo GmbH
#

import string

import utils
from FieldStruct import FieldStruct
from FieldArray  import FieldArray
from FieldBasic  import FieldBasic

class Container:
    """
    The Container class takes care of handling collections of Input or
    Output fields
    """

    def __init__(self, prefix, dictionary):
        # The field container prefix usually contains the name of the Message,
        # e.g. "Qmi Message Ctl Something"
        self.prefix = prefix

        # self.name needs to be set by the subclass
        if self.name != 'Input' and self.name != 'Output':
            raise ValueError('Cannot handle container \'%s\'' % self.name)

        # Create the composed full name (prefix + name),
        #  e.g. "Qmi Message Ctl Something Output Result"
        self.fullname = self.prefix + ' ' + self.name

        self.fields = None
        if dictionary is not None:
            self.fields = []
            for field_dictionary in dictionary:
                if field_dictionary['format'] == 'array':
                    self.fields.append(FieldArray(self.fullname, field_dictionary))
                elif field_dictionary['format'] == 'struct':
                    self.fields.append(FieldStruct(self.fullname, field_dictionary))
                elif field_dictionary['format'] == 'guint8' or \
                     field_dictionary['format'] == 'guint16' or \
                     field_dictionary['format'] == 'guint32' or \
                     field_dictionary['format'] == 'gint8' or \
                     field_dictionary['format'] == 'gint16' or \
                     field_dictionary['format'] == 'gint32':
                    self.fields.append(FieldBasic(self.fullname, field_dictionary))
                else:
                    raise ValueError('Cannot handle type \'%s\'' % field_dictionary['type'])


    def __emit_tlv_ids_enum(self, f):
        if self.fields is None:
            return

        translations = { 'enum_type' : utils.build_camelcase_name (self.fullname + ' TLV') }
        template = (
            '\n'
            '/**\n'
            ' * ${enum_type}:\n')
        f.write(string.Template(template).substitute(translations))

        for tlv in self.fields:
            translations['enum_name'] = tlv.id_enum_name
            translations['enum_value'] = tlv.id
            template = (
                ' * @${enum_name}: TODO,\n')
            f.write(string.Template(template).substitute(translations))

        template = (
            ' * TODO: comment enum\n'
            ' */\n'
            'typedef enum {\n')
        f.write(string.Template(template).substitute(translations))

        for tlv in self.fields:
            translations['enum_name'] = tlv.id_enum_name
            translations['enum_value'] = tlv.id
            template = (
                '    ${enum_name} = ${enum_value},\n')
            f.write(string.Template(template).substitute(translations))

        template = (
            '} ${enum_type};\n')
        f.write(string.Template(template).substitute(translations))


    def __emit_types(self, hfile, cfile, translations):
        # Emit types header
        template = (
            '\n'
            'typedef struct _${camelcase} ${camelcase};\n')
        hfile.write(string.Template(template).substitute(translations))

        # Emit types source
        template = (
            '\n'
            'struct _${camelcase} {\n'
            '    volatile gint ref_count;\n'
            '\n')
        cfile.write(string.Template(template).substitute(translations))

        if self.fields is not None:
            for field in self.fields:
                translations['field_type'] = field.field_type
                translations['field_variable_name'] = field.variable_name
                translations['field_name'] = field.name
                template = (
                    '\n'
                    '    /* ${field_name} */\n'
                    '    gboolean ${field_variable_name}_set;\n'
                    '    ${field_type} ${field_variable_name};\n')
                cfile.write(string.Template(template).substitute(translations))

        cfile.write(
            '};\n')


    def __emit_core(self, hfile, cfile, translations):
        # Emit container core header
        template = (
            '\n'
            '${camelcase} *${underscore}_ref (${camelcase} *self);\n'
            'void ${underscore}_unref (${camelcase} *self);\n')
        if self.readonly == False:
            template += (
                '${camelcase} *${underscore}_new (void);\n')
        hfile.write(string.Template(template).substitute(translations))

        # Emit container core source
        template = (
            '\n'
            '/**\n'
            ' * ${underscore}_ref:\n'
            ' * @self: a #${camelcase}.\n'
            ' *\n'
            ' * Atomically increments the reference count of @self by one.\n'
            ' *\n'
            ' * Returns: the new reference to @self.\n'
            ' */\n'
            '${camelcase} *\n'
            '${underscore}_ref (${camelcase} *self)\n'
            '{\n'
            '    g_return_val_if_fail (self != NULL, NULL);\n'
            '\n'
            '    g_atomic_int_inc (&self->ref_count);\n'
            '    return self;\n'
            '}\n'
            '\n'
            '/**\n'
            ' * ${underscore}_unref:\n'
            ' * @self: a #${camelcase}.\n'
            ' *\n'
            ' * Atomically decrements the reference count of @self by one.\n'
            ' * If the reference count drops to 0, @self is completely disposed.\n'
            ' */\n'
            'void\n'
            '${underscore}_unref (${camelcase} *self)\n'
            '{\n'
            '    g_return_if_fail (self != NULL);\n'
            '\n'
            '    if (g_atomic_int_dec_and_test (&self->ref_count)) {\n')
        cfile.write(string.Template(template).substitute(translations))

        if self.fields is not None:
            for field in self.fields:
                if field.dispose is not None:
                    translations['field_dispose'] = field.dispose
                    translations['field_variable_name'] = field.variable_name
                    template = (
                        '        ${field_dispose} (self->${field_variable_name});\n')
                    cfile.write(string.Template(template).substitute(translations))

        template = (
            '        g_slice_free (${camelcase}, self);\n'
            '    }\n'
            '}\n')
        cfile.write(string.Template(template).substitute(translations))

        # _new() is only generated if the container is not readonly
        if self.readonly == True:
            return

        template = (
            '\n'
            '/**\n'
            ' * ${underscore}_new:\n'
            ' *\n'
            ' * Allocates a new ${camelcase}.\n'
            ' *\n'
            ' * Returns: the newly created ${camelcase}.\n'
            ' */\n'
            '${camelcase} *\n'
            '${underscore}_new (void)\n'
            '{\n'
            '    return g_slice_new0 (${camelcase});\n'
            '}\n')
        cfile.write(string.Template(template).substitute(translations))


    def __emit_fields (self, hfile, cfile):
        # Emit field getter/setter
        if self.fields is None:
            return

        for field in self.fields:
            field.emit_types(hfile)
            field.emit_getter(hfile, cfile)
            if self.readonly == False:
                field.emit_setter(hfile, cfile)


    def emit(self, hfile, cfile):
        translations = { 'name'       : self.name,
                         'camelcase'  : utils.build_camelcase_name (self.fullname),
                         'underscore' : utils.build_underscore_name (self.fullname) }

        if self.fields is None:
            template = ('\n'
                        '/* Note: no fields in the ${name} container */\n')
            hfile.write(string.Template(template).substitute(translations))
            cfile.write(string.Template(template).substitute(translations))
            return

        # Emit the container types
        self.__emit_types(hfile, cfile, translations)

        # Emit TLV enums
        self.__emit_tlv_ids_enum(cfile)

        # Emit fields
        self.__emit_fields(hfile, cfile)

        # Emit the container core
        self.__emit_core(hfile, cfile, translations)