VirtualBox

Changeset 51416 in vbox for trunk/src/VBox/Main/glue


Ignore:
Timestamp:
May 27, 2014 8:40:32 AM (11 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
93955
Message:

Java COM bindings: fix much bit rot, accidental breakage of the code due to a change meant for WSDL, use an exception class which is available, remove optimization not done in the other API variants, eliminate java warning and fix Makefile

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/glue/glue-java.xsl

    r50417 r51416  
    13671367            </xsl:call-template>
    13681368          </xsl:variable>
    1369           <xsl:value-of select="concat('Helper.unwrap2(', $elemgluetype, '.class, ', $elembacktype, '.class, ', $value, ')')"/>
     1369          <!-- Sometimes javac needs a boost of self-confidence regarding
     1370               varargs calls, and this (Object) cast makes sure that it calls
     1371               the varargs method - as if there is any other. -->
     1372          <xsl:value-of select="concat('(Object)Helper.unwrap2(', $elemgluetype, '.class, ', $elembacktype, '.class, ', $value, ')')"/>
    13701373        </xsl:when>
    13711374        <xsl:otherwise>
     
    14541457
    14551458    <xsl:when test="($idltype='octet') and ($safearray='yes')">
    1456       <xsl:value-of select="concat('Helper.encodeBase64(', $value, ')')"/>
     1459      <xsl:value-of select="$value"/>
    14571460    </xsl:when>
    14581461
     
    15801583  <xsl:choose>
    15811584    <xsl:when test="($G_vboxGlueStyle='xpcom')">
    1582       <xsl:text>                </xsl:text>
     1585      <xsl:text>            </xsl:text>
    15831586      <xsl:if test="param[@dir='return']">
    15841587        <xsl:value-of select="concat($retval, ' = ')" />
     
    16251628
    16261629    <xsl:when test="($G_vboxGlueStyle='mscom')">
    1627       <xsl:text>                </xsl:text>
     1630      <xsl:text>            </xsl:text>
    16281631      <xsl:if test="param[@dir='return']">
    16291632        <xsl:value-of select="concat($retval, ' = ')" />
     
    19951998          </xsl:when>
    19961999          <xsl:otherwise>
    1997             <xsl:value-of select="concat('        ', $backrettype, ' retVal;&#10;')"/>
     2000            <xsl:value-of select="concat('            ', $backrettype, ' retVal;&#10;')"/>
    19982001          </xsl:otherwise>
    19992002        </xsl:choose>
     
    20462049          </xsl:call-template>
    20472050        </xsl:variable>
    2048         <xsl:value-of select="concat('        return ', $wrapped, ';&#10;')" />
     2051        <xsl:value-of select="concat('            return ', $wrapped, ';&#10;')" />
    20492052      </xsl:if>
    20502053      <xsl:call-template name="endExcWrapper"/>
     
    21212124        </xsl:call-template>
    21222125      </xsl:variable>
    2123       <xsl:text>      nsISupports nsobj = obj != null ? (nsISupports)obj.getWrapped() : null;&#10;</xsl:text>
    2124       <xsl:text>      if (nsobj == null) return null;&#10;</xsl:text>
    2125       <xsl:value-of select="concat('      ', $backtype, ' qiobj = Helper.queryInterface(nsobj, &quot;{', $uuid, '}&quot;, ', $backtype, '.class);&#10;')" />
    2126       <xsl:value-of select="concat('      return qiobj == null ? null : new ', $ifname, '(qiobj);&#10;')" />
     2126      <xsl:text>        nsISupports nsobj = obj != null ? (nsISupports)obj.getWrapped() : null;&#10;</xsl:text>
     2127      <xsl:text>        if (nsobj == null) return null;&#10;</xsl:text>
     2128      <xsl:value-of select="concat('        ', $backtype, ' qiobj = Helper.queryInterface(nsobj, &quot;{', $uuid, '}&quot;, ', $backtype, '.class);&#10;')" />
     2129      <xsl:value-of select="concat('        return qiobj == null ? null : new ', $ifname, '(qiobj);&#10;')" />
    21272130    </xsl:when>
    21282131
    21292132    <xsl:when test="$G_vboxGlueStyle='mscom'">
    2130       <xsl:value-of select="concat('       return', ' obj == null ? null : new ', $ifname, '((com.jacob.com.Dispatch)obj.getWrapped());&#10;')" />
     2133      <xsl:value-of select="concat('        return', ' obj == null ? null : new ', $ifname, '((com.jacob.com.Dispatch)obj.getWrapped());&#10;')" />
    21312134    </xsl:when>
    21322135
    21332136    <xsl:when test="$G_vboxGlueStyle='jaxws'">
    21342137      <!-- bad, need to check that we really can be casted to this type -->
    2135       <xsl:value-of select="concat('       return obj == null ?  null : new ', $ifname, '(obj.getWrapped(), obj.getRemoteWSPort());&#10;')" />
     2138      <xsl:value-of select="concat('        return obj == null ?  null : new ', $ifname, '(obj.getWrapped(), obj.getRemoteWSPort());&#10;')" />
    21362139    </xsl:when>
    21372140
     
    23322335        <xsl:value-of select="concat('    public ', $ifname, '(String wrapped, VboxPortType port)&#10;')" />
    23332336        <xsl:text>    {&#10;</xsl:text>
    2334         <xsl:text>          super(wrapped, port);&#10;</xsl:text>
     2337        <xsl:text>        super(wrapped, port);&#10;</xsl:text>
    23352338        <xsl:text>    }&#10;</xsl:text>
    23362339      </xsl:when>
     
    23392342        <xsl:value-of select="concat('    public ', $ifname, '(',  $wrappedType, ' wrapped)&#10;')" />
    23402343        <xsl:text>    {&#10;</xsl:text>
    2341         <xsl:text>          super(wrapped);&#10;</xsl:text>
     2344        <xsl:text>        super(wrapped);&#10;</xsl:text>
    23422345        <xsl:text>    }&#10;</xsl:text>
    23432346
     
    33343337        if (values == null)
    33353338            return null;
    3336         if (values.length == 0)
    3337             return Collections.emptyList();
    33383339
    33393340        List<Short> ret = new ArrayList<Short>(values.length);
     
    33493350        if (values == null)
    33503351            return null;
    3351         if (values.length == 0)
    3352             return Collections.emptyList();
    33533352
    33543353        List<Integer> ret = new ArrayList<Integer>(values.length);
     
    33643363        if (values == null)
    33653364            return null;
    3366         if (values.length == 0)
    3367             return Collections.emptyList();
    33683365
    33693366        List<Long> ret = new ArrayList<Long>(values.length);
     
    33793376        if (values == null)
    33803377            return null;
    3381         if (values.length == 0)
    3382             return Collections.emptyList();
    33833378
    33843379        List<String> ret = new ArrayList<String>(values.length);
     
    34433438                return wrapDispatch(wrapperClass, v.getDispatch());
    34443439            default:
    3445                 throw new VBoxException("unhandled variant type " + vt);
     3440                throw new IllegalArgumentException("unhandled variant type " + vt);
    34463441        }
    34473442    }
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette