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 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615
|
/*
* Copyright (C) 2005-2013 Team XBMC
* http://xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
/**
* These methods are somewhat ugly because they have been copied out of
* the Swig source code and simply made compilable with groovy. They could
* all be much cleaner and smaller if they were completely groovyfied but
* I have no intention of doing that since they are complicated and they work
* and I don't want to try to trace down problems that would be inevitable
* with such a refactor.
*/
public class SwigTypeParser
{
/**
* This holds a mapping for typedefs from a type to it's base type.
*/
private static Map typeTable = [:]
/**
* Add a typedef node to the global list of typedefs to be used later in
* parsing types.
*/
public static void appendTypeTable(Node typetab) { typetab.each { typeTable[it.@namespace + it.@type] = it.@basetype } }
/**
* Convert the type to an ltype considering the overloaded conversions.
*/
public static String convertTypeToLTypeForParam(String ty)
{
// in the case where we're converting from a type to an ltype for a parameter,
// and the type is a r.*, we are going to assume the ltype is
// a "pass-by-value" on the stack.
return (ty.trim().startsWith('r.') ? SwigTypeParser.SwigType_ltype(ty.trim().substring(2)) : SwigTypeParser.SwigType_ltype(ty.trim()))
}
/**
* This method will return the base type for the provided type string. For example,
* if the type string is p.MyType you will get MyType. If the string is
* p.q(const).int you will get 'int'
*/
public static String getRootType(String ty)
{
int li = ty.lastIndexOf('.')
return li >= 0 ? ty.substring(li + 1) : ty
}
/**
* SwigType_str()
*
* Create a C string representation of a datatype.
*/
public static String SwigType_str(String ty, String id = null)
{
String result = id ? id : ''
String nextelement
String forwardelement
List elements = SwigType_split(ty)
if (elements == null) elements = []
int nelements = elements.size()
String element = nelements > 0 ? elements[0] : null
/* Now, walk the type list and start emitting */
for (int i = 0; i < nelements; i++) {
if (i < (nelements - 1)) {
nextelement = elements[i + 1]
forwardelement = nextelement
if (nextelement.startsWith('q(')) {
if (i < (nelements - 2)) forwardelement = elements[i + 2]
}
} else {
nextelement = null
forwardelement = null
}
if (element.startsWith('q(')) {
String q = SwigType_parm(element)
result = q + ' ' + result
} else if (SwigType_ispointer(element)) {
result = "*" + result
if ((forwardelement) && ((SwigType_isfunction(forwardelement) || (SwigType_isarray(forwardelement))))) {
result = "(" + result + ")"
}
} else if (SwigType_ismemberpointer(element)) {
String q = SwigType_parm(element);
result = q + "::*" + result
if ((forwardelement) && ((SwigType_isfunction(forwardelement) || (SwigType_isarray(forwardelement))))) {
result = '(' + result + ')'
}
} else if (SwigType_isreference(element)) {
result = '&' + result
if ((forwardelement) && ((SwigType_isfunction(forwardelement) || (SwigType_isarray(forwardelement))))) {
result = '(' + result + ')'
}
} else if (SwigType_isarray(element)) {
result += '[' + SwigType_parm(element) + ']'
} else if (SwigType_isfunction(element)) {
result += '('
List parms = SwigType_parmlist(element)
boolean didOne = false
for (String cur : parms) {
String p = SwigType_str(cur)
result += (didOne ? ',' : '') + p
didOne = true
}
result += ')'
} else {
if (element.startsWith("v(...)")) result = result + "..."
else {
String bs = SwigType_namestr(element);
result = bs + ' ' + result
}
}
element = nextelement;
}
// convert template parameters
return result.replaceAll('<\\(', '<').replaceAll('\\)>', '>')
}
/**
* This will resolve the typedefs given the parameter passed is a simple type.
* see SwigType_resolve_all_typedefs which will handle qualifiers, pointers,
* references, and typedef of typedefs to resolve all the way down to the
* most basic types.
*/
public static String SwigType_typedef_resolve(String t)
{
String td = typeTable[t]
String ret = td == null ? t : td
return ret
}
/**
* This will resolve typedefs and handle qualifiers, pointers,
* references, and typedef of typedefs to resolve all the way down to the
* most basic types.
*/
public static String SwigType_resolve_all_typedefs(String s)
{
String result = ''
String tc = s
/* Nuke all leading qualifiers, appending them to the result*/
while (SwigType_isqualifier(tc)) {
List tmpl = SwigType_pop(tc)
tc = tmpl[1]
result += tmpl[0]
}
if (SwigType_issimple(tc)) {
/* Resolve any typedef definitions */
String tt = tc
String td
while ((td = SwigType_typedef_resolve(tt)) != tt) {
if (td != tt) {
tt = td
break
}
else if (td != tt) tt = td
}
tc = td
return tc
}
List tmpl = SwigType_pop(tc)
result += tmpl[0]
result += SwigType_resolve_all_typedefs(tmpl[1])
return result
}
/**
* SwigType_ltype(const SwigType *ty)
*
* Create a locally assignable type
*/
public static String SwigType_ltype(String s) {
String result = ''
String tc = s
/* Nuke all leading qualifiers */
while (SwigType_isqualifier(tc)) {
tc = SwigType_pop(tc)[1]
}
if (SwigType_issimple(tc)) {
/* Resolve any typedef definitions */
String tt = tc
String td
while ((td = SwigType_typedef_resolve(tt)) != tt) {
if ((td != tt) && (SwigType_isconst(td) || SwigType_isarray(td) || SwigType_isreference(td))) {
/* We need to use the typedef type */
tt = td
break
}
else if (td != tt) tt = td
}
tc = td
}
List elements = SwigType_split(tc)
int nelements = elements.size()
/* Now, walk the type list and start emitting */
boolean notypeconv = false
boolean firstarray = true
for (int i = 0; i < nelements; i++) {
String element = elements[i]
/* when we see a function, we need to preserve the following types */
if (SwigType_isfunction(element)) {
notypeconv = true
}
if (SwigType_isqualifier(element)) {
/* Do nothing. Ignore */
} else if (SwigType_ispointer(element)) {
result += element
// this is a bit of a short circuit to avoid having to import the entire SwigType_typedef_resolve method which
// handles pointers to typedefed types, etc.
// collapse the rest of the list
String tmps = ''
for (int j = i + 1; j < nelements; j++) tmps += elements[j]
return result + SwigType_ltype(tmps)
//firstarray = false
} else if (SwigType_ismemberpointer(element)) {
result += element
firstarray = false
} else if (SwigType_isreference(element)) {
if (notypeconv) {
result += element
} else {
result += "p."
}
firstarray = false
} else if (SwigType_isarray(element) && firstarray) {
if (notypeconv) {
result += element
} else {
result += "p."
}
firstarray = false;
} else if (SwigType_isenum(element)) {
boolean anonymous_enum = (element == "enum ")
if (notypeconv || !anonymous_enum) {
result += element
} else {
result += "int"
}
} else {
result += element
}
}
return result
// convert template parameters
//return result.replaceAll('<\\(', '<').replaceAll('\\)>', '>')
}
/**
* SwigType_lrtype(const SwigType *ty)
*
* Create a locally assignable reference type
*/
public static String SwigType_lrtype(String s) {
String ltype = SwigType_ltype(s);
if (SwigType_ispointer(s)) {
return ltype;
} else {
return "r." + ltype;
}
}
/**
* This creates the C++ declaration for a valid ltype for the type string
* given. For example, if the type is a "const char*" which is equivalent
* to the type string 'p.q(const).char', the return value from this method
* will be "char *".
*/
public static String SwigType_lstr(String type)
{
return SwigType_str(convertTypeToLTypeForParam(type))
}
public static boolean SwigType_ispointer(String t)
{
if (t.startsWith('q(')) t = t.substring(t.indexOf('.') + 1)
return t.startsWith('p.')
}
public static String SwigType_makepointer(String t)
{
String prefix = (t.startsWith('q(')) ? t.substring(0,t.indexOf('.') + 1) : ""
String remainder = (t.startsWith('q(')) ? t.substring(t.indexOf('.') + 1) : t
return prefix + "p." + remainder
}
public static boolean SwigType_isarray(String t) { return t.startsWith('a(') }
public static boolean SwigType_ismemberpointer(String t) { return t?.startsWith('m(') }
public static boolean SwigType_isqualifier(String t) { return t?.startsWith('q(') }
public static boolean SwigType_isreference(String t) { return t.startsWith('r.') }
public static boolean SwigType_isenum(String t) { return t.startsWith('enum') }
public static String SwigType_istemplate(String t) {
int c = t.indexOf("<(")
return (c >= 0 && t.indexOf(')>',c+2) >= 0)
}
public static boolean SwigType_isfunction(String t)
{
if (t.startsWith('q(')) t = t.substring(t.indexOf('.') + 1,)
return t.startsWith('f(')
}
public static boolean SwigType_isconst(String t) {
int c = 0
if (t == null) return false
if (t.substring(c).startsWith("q(")) {
String q = SwigType_parm(t)
if (q.indexOf("const") >= 0) return true
}
/* Hmmm. Might be const through a typedef */
if (SwigType_issimple(t)) {
String td = SwigType_typedef_resolve(t)
if (td != t) return SwigType_isconst(td)
}
return false
}
private static String SwigType_parm(String t) {
int start = t.indexOf("(")
if (start < 0) return null
start++
int nparens = 0
int c = start
while (c < t.length()) {
if (t.charAt(c) == ')') {
if (nparens == 0) break;
nparens--;
}
else if (t.charAt(c) == '(') nparens++
c++;
}
return t.substring(start,c)
}
public static List SwigType_templateparmlist(String t)
{
int i = t.indexOf('<');
return SwigType_parmlist(t.substring(i))
}
/* -----------------------------------------------------------------------------
* SwigType_parmlist()
*
* Splits a comma separated list of parameters into its component parts
* The input is expected to contain the parameter list within () brackets
* Returns 0 if no argument list in the input, ie there are no round brackets ()
* Returns an empty List if there are no parameters in the () brackets
* For example:
*
* Foo(std::string,p.f().Bar<(int,double)>)
*
* returns 2 elements in the list:
* std::string
* p.f().Bar<(int,double)>
* ----------------------------------------------------------------------------- */
private static List SwigType_parmlist(String p) {
List list = []
int itemstart
assert p, "Cannot pass null to SwigType_parmlist"
itemstart = p.indexOf('(')
assert p.indexOf('.') == -1 || p.indexOf('.') > itemstart, p + " is expected to contain sub elements of a type"
itemstart++
int c = itemstart
while (c < p.length()) {
if (p.charAt(c) == ',') {
list.add(p.substring(itemstart,c))
itemstart = c + 1
} else if (p.charAt(c) == '(') {
int nparens = 1
c++
while (c < p.length()) {
if (p.charAt(c) == '(') nparens++
if (p.charAt(c) == ')') {
nparens--
if (nparens == 0) break
}
c++
}
} else if (p.charAt(c) == ')') {
break;
}
if (c < p.length()) c++
}
if (c != itemstart) {
list.add(p.substring(itemstart,c))
}
return list;
}
/* -----------------------------------------------------------------------------
* SwigType_namestr()
*
* Returns a string of the base type. Takes care of template expansions
* ----------------------------------------------------------------------------- */
private static String SwigType_namestr(String t) {
int d = 0
int c = t.indexOf("<(")
if (c < 0 || t.indexOf(')>',c+2) < 0) return t
String r = t.substring(0,c)
if (t.charAt(c - 1) == '<') r += ' '
r += '<'
List p = SwigType_parmlist(t.substring(c + 1))
for (int i = 0; i < p.size(); i++) {
String str = SwigType_str(p[i], null);
/* Avoid creating a <: token, which is the same as [ in C++ - put a space after '<'. */
if (i == 0 && str.length() > 0) r += ' '
r += str
if ((i + 1) < p.size()) r += ','
}
r += ' >'
String suffix = SwigType_templatesuffix(t);
if (suffix.length() > 0) {
String suffix_namestr = SwigType_namestr(suffix);
r += suffix_namestr
} else {
r += suffix
}
return r;
}
/* -----------------------------------------------------------------------------
* SwigType_templatesuffix()
*
* Returns text after a template substitution. Used to handle scope names
* for example:
*
* Foo<(p.int)>::bar
*
* returns "::bar"
* ----------------------------------------------------------------------------- */
private static String SwigType_templatesuffix(String t) {
int c = 0
while (c < t.length()) {
if ((t.charAt(c) == '<') && (t.charAt(c + 1) == '(')) {
int nest = 1
c++
while (c < t.length() && nest != 0) {
if (t.charAt(c) == '<') nest++
if (t.charAt(c) == '>') nest--
c++
}
return t.substring(c)
}
c++
}
return ''
}
/* -----------------------------------------------------------------------------
* SwigType_split()
*
* Splits a type into it's component parts and returns a list of string.
* ----------------------------------------------------------------------------- */
private static List SwigType_split(String t) {
List list = []
int c = 0
int len
while (c < t.length()) {
len = element_size(t.substring(c))
String item = t.substring(c,c + len)
list += item
c = c + len
if (c < t.length() && t.charAt(c) == '.') c++
}
return list;
}
/* -----------------------------------------------------------------------------
* static element_size()
*
* This utility function finds the size of a single type element in a type string.
* Type elements are always delimited by periods, but may be nested with
* parentheses. A nested element is always handled as a single item.
*
* Returns the integer size of the element (which can be used to extract a
* substring, to chop the element off, or for other purposes).
* ----------------------------------------------------------------------------- */
private static int element_size(String s) {
int nparen
int c = 0
while (c < s.length()) {
if (s.charAt(c) == '.') {
c++
return c
} else if (s.charAt(c) == '(') {
nparen = 1
c++
while (c < s.length()) {
if (s.charAt(c) == '(') nparen++
if (s.charAt(c) == ')') {
nparen--
if (nparen == 0) break
}
c++
}
}
if (c < s.length()) c++
}
return c;
}
/* -----------------------------------------------------------------------------
* SwigType_pop()
*
* Pop one type element off the type.
* Example: t in: q(const).p.Integer
* t out: p.Integer
* result: q(const).
* ----------------------------------------------------------------------------- */
private static Tuple SwigType_pop(String t) {
String result
int c = 0
if (t == null)
return null
int sz = element_size(t.substring(c))
return [ t.substring(c,c + sz), t.substring(c+sz) ]
}
private static boolean SwigType_issimple(String t) {
int c = 0
if (!t) return false
while (c < t.length()) {
if (t.charAt(c) == '<') {
int nest = 1
c++
while (c < t.length() && nest != 0) {
if (t.charAt(c) == '<') nest++
if (t.charAt(c) == '>') nest--
c++
}
c--
}
if (t.charAt(c) == '.')
return false
c++
}
return true
}
public static void main(String[] args)
{
String xmlText = '''
<typetab>
<entry basetype="std::vector<(p.XBMCAddon::xbmcgui::ListItem)>" type="ListItemList" namespace="XBMCAddon::xbmcgui::"/>
</typetab>
'''
Node xml = new XmlParser().parseText(xmlText)
SwigTypeParser.appendTypeTable(xml)
// testPrint('f(int,int,int)','foo')
// testPrint('p.a(10).p.f(int,p.f(int).int)','foo')
// testPrint('p.q(const).char','foo')
// testPrint('f(r.q(const).String,p.q(const).XBMCAddon::xbmcgui::ListItem,bool)','foo')
// testPrint('r.q(const).String','foo')
// testPrint('q(const).p.q(const).char','foo')
//testPrint('std::vector<(p.String)>','foo')
// testPrint('r.q(const).String')
//System.out.println "${convertTypeToLType('bool')}"
//testPrint('p.q(const).XBMCAddon::xbmcgui::ListItemList')
//testPrint('p.q(const).XBMCAddon::xbmcgui::ListItemList')
//testPrint(SwigTypeParser.SwigType_makepointer('r.q(const).std::map<(String,String)>'), 'foo')
testPrint(SwigTypeParser.SwigType_makepointer('q(const).p.q(const).char'),'bfoo')
}
private static void testPrint(String ty, String id = 'foo')
{
println SwigTypeParser.SwigType_ltype(ty) + "|" + SwigTypeParser.SwigType_str(SwigTypeParser.SwigType_ltype(ty),id) + ' ' + " = " + ty + '|' + SwigTypeParser.SwigType_str(ty,id)
}
}
|