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
|
#!/usr/bin/env python
# -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
#
# 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 Field import Field
class FieldString(Field):
"""
The FieldString class takes care of handling 'string' format based
Input and Output TLVs
"""
def __init__(self, prefix, dictionary, common_objects_dictionary):
# Call the parent constructor
Field.__init__(self, prefix, dictionary, common_objects_dictionary)
# The field type will be the given string name
self.field_type = 'gchar *'
# The string needs to get disposed
self.dispose = 'g_free'
# The string needs to be copied when set
self.copy = 'g_strdup'
def emit_input_tlv_add(self, cfile, line_prefix):
translations = { 'name' : self.name,
'tlv_id' : self.id_enum_name,
'variable_name' : self.variable_name,
'lp' : line_prefix }
template = (
'${lp}if (!qmi_message_tlv_add (self,\n'
'${lp} (guint8)${tlv_id},\n'
'${lp} strlen (input->${variable_name}) + 1,\n'
'${lp} input->${variable_name},\n'
'${lp} error)) {\n'
'${lp} g_prefix_error (error, \"Couldn\'t set the \'${name}\' TLV: \");\n'
'${lp} qmi_message_unref (self);\n'
'${lp} return NULL;\n'
'${lp}}\n')
cfile.write(string.Template(template).substitute(translations))
def emit_output_tlv_get(self, f, line_prefix):
translations = { 'name' : self.name,
'container_underscore' : utils.build_underscore_name (self.prefix),
'field_type' : self.field_type,
'tlv_id' : self.id_enum_name,
'variable_name' : self.variable_name,
'lp' : line_prefix,
'error' : 'error' if self.mandatory == 'yes' else 'NULL'}
template = (
'${lp}self->${variable_name} = qmi_message_tlv_get_string (message,\n'
'${lp} ${tlv_id},\n'
'${lp} ${error});\n'
'${lp}if (self->${variable_name}) {\n'
'${lp} self->${variable_name}_set = TRUE;\n')
if self.mandatory is 'yes':
template += (
'${lp}} else {\n'
'${lp} g_prefix_error (error, \"Couldn\'t get the ${name} TLV: \");\n'
'${lp} ${container_underscore}_unref (self);\n'
'${lp} return NULL;\n'
'${lp}}\n')
else:
template += (
'${lp}}\n')
f.write(string.Template(template).substitute(translations))
|