summaryrefslogtreecommitdiffstats
path: root/kode/kwsdl/typemapper.cpp
blob: 3ec0a20a3db7df646266406e1699290793636bbf (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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
/*
    This file is part of KDE.

    Copyright (c) 2005 Tobias Koenig <tokoe@kde.org>

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License as published by the Free Software Foundation; either
    version 2 of the License, or (at your option) any later version.

    This library 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
    Library General Public License for more details.

    You should have received a copy of the GNU Library General Public License
    along with this library; see the file COPYING.LIB.  If not, write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA 02110-1301, USA.
*/

#include <tqmap.h>

#include <schema/attribute.h>
#include <schema/complextype.h>
#include <schema/element.h>
#include <schema/simpletype.h>
#include <schema/xsdtype.h>

#include "typemapper.h"

using namespace KWSDL;

TypeMapper::TypeMapper()
{
  mMap.insert( "any", TypeInfo( "any", TQSTRING_OBJECT_NAME_STRING, "tqstring.h" ) );
  mMap.insert( "anyURI", TypeInfo( "anyUri", TQSTRING_OBJECT_NAME_STRING, "tqstring.h" ) );
  mMap.insert( "base64Binary", TypeInfo( "base64Binary", TQBYTEARRAY_OBJECT_NAME_STRING, "tqcstring.h" ) );
  mMap.insert( "binary", TypeInfo( "binary", TQBYTEARRAY_OBJECT_NAME_STRING, "tqcstring.h" ) );
  mMap.insert( "boolean", TypeInfo( "boolean", "bool", "" ) );
  mMap.insert( "byte", TypeInfo( "byte", "char", "" ) );
  mMap.insert( "date", TypeInfo( "date", "TQDate", "tqdatetime.h" ) );
  mMap.insert( "dateTime", TypeInfo( "dateTime", "TQDateTime", "tqdatetime.h" ) );
  mMap.insert( "decimal", TypeInfo( "decimal", "float", "" ) );
  mMap.insert( "double", TypeInfo( "double", "double", "" ) );
  mMap.insert( "duration", TypeInfo( "duration", TQSTRING_OBJECT_NAME_STRING, "tqstring.h" ) ); // TODO: add duration class
  mMap.insert( "int", TypeInfo( "int", "int", "" ) );
  mMap.insert( "language", TypeInfo( "language", TQSTRING_OBJECT_NAME_STRING, "tqstring.h" ) );
  mMap.insert( "short", TypeInfo( "short", "short", "" ) );
  mMap.insert( "string", TypeInfo( "string", TQSTRING_OBJECT_NAME_STRING, "tqstring.h" ) );
  mMap.insert( "unsignedByte", TypeInfo( "unsignedByte", "unsigned char", "" ) );
  mMap.insert( "unsignedInt", TypeInfo( "unsignedInt", "unsigned int", "" ) );
}

void TypeMapper::setTypes( const Schema::Types &types )
{
  mTypes = types;
}

TQString TypeMapper::type( const Schema::XSDType *type ) const
{
  TQString typeName = type->name();
  typeName[ 0 ] = typeName[ 0 ].upper();

  return typeName;
}

TQString TypeMapper::type( const Schema::Element *element ) const
{
  TQString typeName = element->typeName();

  TQString type;
  // check basic types
  TQMap<TQString, TypeInfo>::ConstIterator it = mMap.find( typeName );
  if ( it != mMap.end() )
    type = it.data().type;

  if ( type.isEmpty() ) {
    type = typeName;
    type[ 0 ] = type[ 0 ].upper();
  }

  return type;
}

TQString TypeMapper::type( const Schema::Attribute *attribute ) const
{
  TQString typeName = attribute->typeName();

  TQString type;
  // check basic types
  TQMap<TQString, TypeInfo>::ConstIterator it = mMap.find( typeName );
  if ( it != mMap.end() )
    type = it.data().type;

  if ( type.isEmpty() ) {
    type = typeName;
    type[ 0 ] = type[ 0 ].upper();
  }

  return type;
}

TQString TypeMapper::type( const TQString &typeName ) const
{
  // check basic types
  TQMap<TQString, TypeInfo>::ConstIterator it = mMap.find( typeName );
  if ( it != mMap.end() )
    return it.data().type;

  Schema::SimpleType::List simpleTypes = mTypes.simpleTypes();
  Schema::SimpleType::List::ConstIterator simpleIt;
  for ( simpleIt = simpleTypes.begin(); simpleIt != simpleTypes.end(); ++simpleIt ) {
    if ( (*simpleIt).name() == typeName ) {
      return type( &(*simpleIt) );
    }
  }

  Schema::ComplexType::List complexTypes = mTypes.complexTypes();
  Schema::ComplexType::List::ConstIterator complexIt;
  for ( complexIt = complexTypes.begin(); complexIt != complexTypes.end(); ++complexIt ) {
    if ( (*complexIt).name() == typeName ) {
      return type( &(*complexIt) );
    }
  }

  Schema::Element::List elements = mTypes.elements();
  Schema::Element::List::ConstIterator elemIt;
  for ( elemIt = elements.begin(); elemIt != elements.end(); ++elemIt ) {
    if ( (*elemIt).name() == typeName ) {
      return type( &(*elemIt) );
    }
  }

  return TQString();
}

TQStringList TypeMapper::header( const Schema::XSDType *type ) const
{
  return type->name().lower() + ".h";
}

TQStringList TypeMapper::header( const Schema::Element *element ) const
{
  TQString typeName = element->typeName();

  TQStringList headers;

  // check basic types
  TQMap<TQString, TypeInfo>::ConstIterator it = mMap.find( typeName );
  if ( it != mMap.end() ) {
    if ( !it.data().header.isEmpty() )
      headers.append( it.data().header );
  } else
    headers.append( typeName.lower() + ".h" );
  
  if ( element->maxOccurs() > 1 )
    headers.append( "tqptrlist.h" );

  return headers;
}

TQMap<TQString, TQString> TypeMapper::headerDec( const Schema::Element *element ) const
{
  TQString typeName = element->typeName();

  TQMap<TQString, TQString> headers;

  // check basic types
  TQMap<TQString, TypeInfo>::ConstIterator it = mMap.find( typeName );
  if ( it != mMap.end() ) {
    if ( !it.data().header.isEmpty() ) {
      if ( it.data().type == TQBYTEARRAY_OBJECT_NAME_STRING )
        headers.insert( it.data().header, TQString() );
      else
        headers.insert( it.data().header, it.data().type );
    }
  } else {
    typeName[ 0 ] = typeName[ 0 ].upper();
    headers.insert( typeName.lower() + ".h", typeName );
  }

  if ( element->maxOccurs() > 1 )
    headers.insert( "tqptrlist.h", TQString() );

  return headers;
}

TQStringList TypeMapper::header( const Schema::Attribute *attribute ) const
{
  TQString typeName = attribute->typeName();

  TQStringList headers;

  // check basic types
  TQMap<TQString, TypeInfo>::ConstIterator it = mMap.find( typeName );
  if ( it != mMap.end() ) {
    if ( !it.data().header.isEmpty() )
      headers.append( it.data().header );
  } else
    headers.append( typeName.lower() + ".h" );
  
  return headers;
}

TQMap<TQString, TQString> TypeMapper::headerDec( const Schema::Attribute *attribute ) const
{
  TQString typeName = attribute->typeName();

  TQMap<TQString, TQString> headers;

  // check basic types
  TQMap<TQString, TypeInfo>::ConstIterator it = mMap.find( typeName );
  if ( it != mMap.end() ) {
    if ( !it.data().header.isEmpty() ) {
      if ( it.data().type == TQBYTEARRAY_OBJECT_NAME_STRING )
        headers.insert( it.data().header, TQString() );
      else
        headers.insert( it.data().header, it.data().type );
    }
  } else {
    typeName[ 0 ] = typeName[ 0 ].upper();
    headers.insert( typeName.lower() + ".h", typeName );
  }

  return headers;
}

TQStringList TypeMapper::header( const TQString &typeName ) const
{
  TQMap<TQString, TypeInfo>::ConstIterator it = mMap.find( typeName );
  if ( it != mMap.end() )
    return it.data().header;

  const TQString convertedType = type( typeName );
  if ( isBaseType( convertedType ) ) {
    for ( it = mMap.begin(); it != mMap.end(); ++it )
      if ( it.data().type == convertedType )
        return it.data().header;
  } else
    return typeName.lower() + ".h";

  return TQStringList();
}

TQMap<TQString, TQString> TypeMapper::headerDec( const TQString &typeName ) const
{
  TQString type( typeName );
  TQMap<TQString, TQString> headers;

  // check basic types
  TQMap<TQString, TypeInfo>::ConstIterator it = mMap.find( typeName );
  if ( it != mMap.end() ) {
    if ( !it.data().header.isEmpty() ) {
      if ( it.data().type == TQBYTEARRAY_OBJECT_NAME_STRING )
        headers.insert( it.data().header, TQString() );
      else
        headers.insert( it.data().header, it.data().type );
    }
  } else {
    type[ 0 ] = type[ 0 ].upper();
    headers.insert( typeName.lower() + ".h", type );
  }

  return headers;
}

TQString TypeMapper::argument( const TQString &name, const Schema::Element *element ) const
{
  TQString typeName = type( element );

  if ( element->maxOccurs() > 1 )
    return "TQPtrList<" + typeName + ">* " + name;
  else
    return typeName + "* " + name;
}

TQString TypeMapper::argument( const TQString &name, const Schema::Attribute *attribute ) const
{
  return type( attribute ) + "* " + name;
}

TQString TypeMapper::argument( const TQString &name, const TQString &typeName, bool isList ) const
{
  if ( isList ) {
    return "TQPtrList<" + type( typeName ) + ">* " + name;
  } else {
    return type( typeName ) + "* " + name;
  }
}

bool TypeMapper::isBaseType( const TQString &type ) const
{
  TQMap<TQString, TypeInfo>::ConstIterator it;
  for ( it = mMap.begin(); it != mMap.end(); ++it )
    if ( it.data().type == type )
      return true;

  return false;
}