Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Introduction

The transition from weak to strong typing is a very important consideration for all large-scale upgrade efforts.   Generally speaking, VB6 will implicitly convert just about anything to anything.  Also VB6 has various weak types: Object, Variant, Form, Control, as well as a weakly typed collection class, that allow programmers to defer type checks until runtime.  Many  And, many of the COM APIs used by VB6 and ASP are exposed through weakly typed interfaces. To make matters worse, VB6 uses the same notation for a late call calls and an early call: the early calls.  The details are complex, but they are handled by VB6/COM runtime behind the scenes.  On the other hand, the .NET languages, tend to favor strong type checking at compile time, and making late calls in .NET typically requires deliberate use of object-oriented design, abstraction, interfaces, or and late call syntax.

In general, gmStudio will attempt attempts to upgrade Variants, and to a lesser degree Objects, to strong types by analyzing usage of the weakly typed symbols and in the collection context of all types defined to the source system.  In most cases this produces cleaner, more correct, strongly typed code.  However, in certain situations, usage information is insufficient or ambiguous, so selecting a single strong type is not possible and  the upgraded code will retain the weaker types and have to handle multiple types later.  In some these situations, the tool must use techniques like CallByName, the dynamic type, temporary variables, and casting to make the weakly-typed code build in .NET.  But, although the resulting weakly-typed code builds, it may not run properly.    Furthermore, some VB6 applications use weakly typed code very deliberately to implement more dynamic logic.  When this is done, the upgraded code may need usually also needs to be dynamic as well.

In order to help teams make the deal with with these typing related upgrade issues,  gmStudio has many provides features for implementing an upgrade solution that either uses stronger types or implements more dynamic logic, depending on what is required.  The commands for introducing stronger types are registry/fixtype, refactor/fixtype, modifying IDFs to have stronger types, and in some cases pre-edits to modify the original code.  The commands for allowing dynamic types are refactor/generic, refactor/overload, use of the dynamic metatype, dictionaryAdd/CollectionAdd, and many others. 

This article presents the various techniques for improving how your upgrade solution handles upgrades weakly typed symbols and the code that users them.

ByRef object arguments taking with multiple types

 

of actual arguments to formal arguments, but C# does not.  This is one of t

Consider rvarItem Consider argument rvarItem in the following example.  In the calling code, is used to return  It is a ByRef Variant argument that can be used to pass different types of variables from a weakly types collectionback from the subroutine:

Code Block
Public Function g_Collection_ItemIsDefined(ByVal vobjCollection As Object, Optional ByVal vvarItem As Variant, Optional ByVal vstrKey As String, _
    Optional ByRef rvarItem As Variant) As Boolean

Furthermore, suppose gSuppose the subroutine g_Collection_ItemIsDefined is called with many different types of actual arguments variables passed to the rvarItem so .  In this case the tool chooses to will declare the formal argument as type object to allow for flexibility.  However, passing an argument by ref is in .NET requires strict typing and .  The only quantity that can be passed to a ref object is something explicitly declared as object.  To allow the upgraded code to build within this constraint, the tool must introduce a temporary variable to box the actual argumentarguments.  These temporary variables are named argTemp1, argTetmp2... argTempN with numbering starting at 1 within each file.  For example, passing a boolean to a ref object looks like this:

Code Block
titleIntroduction of a tempArg
VB6:
If g_Collection_ItemIsDefined(colItemOperations, , strOperation, blnOperationEnabled) ...


C#
object argTemp1 = blnOperationEnabled;
if (basCollection.g_Collection_ItemIsDefined(colItemOperations,null,strOperation,ref argTemp1)) ...
Warning

By default, the argTemp variable is variables introduced for parameters are ONLY initialized from the actual argument and then used in the call. It is They are not moved back to the actual argument after the call. In some many cases this does not matter, but sometimes ignoring the change to a ByRef argument is a breaking change from the VB6 that must be addressed using various techniques depending on the situation. 


One possible technique for eliminating the temporary variables is to use the Refactor/Overload

...

.

...

 Refactor/Overload is a translation script command (gmPL) command that may be be added to the Compile block in your translation script as in the following example:

Code Block
...
<Compile Project="..." >
<Refactor>
<OverLoad Identifier="Project1.Form1.MySub.o_Var" Types="Boolean" />
</Refactor>
</Compile>
...
where
Identifier  is the fully qualified identifier of the argument to overload
Types       is a list of source types known to the tool.  This can include gmStudio's VB6 types, application types, and external COM types.  
            Types may also be the keyword on, which indicates that the tool should analyze and report the overloading still needed for the argument.

The effect of adding a refactor/overload command is three-fold:

1) The tool will report warnings about other types used with the argument.  These warnings can be used to add more types ot to the Types list. For example:

...

2) The tool will generated an overload of the method for each type in Types.  These overloads deal with marshalling different variables to the weakly typed formal argument in the implementation.  Notice that in the wrapper, the temporary arg argument is moved back to the actual arg after the call. For example:

...

3) The tool  removes the use of the ref tempArg from the calls where an actual arg of one of the types in Types is passed.  For example, the code using argTemp1 shown above becomes simply:

...