Support Statement: Building gmStudio Extensions using gmAPI and .NET
Overview
gmStudio is a platform for building VB6/ASP upgrade solutions that meet real-world requirements. Initially, the platform offered two ways that developers could customize how it works:
gmPL Scripts using an XML-like notation to implement declarative specifications that direct and inform the translation engine's operation
gmSL Scripts using a C-like notation to implement classes, methods, and event handlers that can extend the translation engine's operation
gmPL and gmSL provide a great deal of expressive power and precision. For example, we built several advanced COM API migrations, and a VB6 Forms to WPF/XAML extension using gmSL. Many gmPL and gmSL files are included in the standard gmStudio distribution and others are available for download from this documentation portal. But, they have their limitations. For example, gmSL lacked a contemporary development support (i.e. no intellisense and no debugger).
In early 2018, during the course of planning a big VB6-to-WPF project, the customer asked if they could use a C# API instead of gmSL language for their WPF migration and gmAPI was born. gmAPI is a powerful alternative to gmSL. gmAPI can access even more system services than gmSL, but gmAPI logic is developed in C# (of VBNET) so it enjoys all of the benefits of being part of the .NET ecosystem such as using a contemporary IDE, being a fully compiled language, interactive debugging, .NET framework services and tools, etc.
The introduction of gmPL Extensions makes integrating gmAPI logic with the translation engine more robust and seamless. gmPL Extensions define the conventions for defining new gmPL language elements and integrating gmAPI assemblies with the core translation engine. gmPL Extensions extend the set of gmPL statements that are recognized and processed by the gmStudio platform allowing motivated users to develop the code analysis and transformation features they need.
gmPL Extension dll Resolution and Invocation
When gmBasic is processing a gmPL script and it encounters a script statement that it does not recognize, it looks for a .NET assembly named "gmPL_(%statement%).dll". If the dll is found, gmBasic looks for a class "gBasicMain.gmPL_(%statement%)". If that class can be instantiated, the resulting instance is used to invoke a method named XeqStatement to handle the extended command.
The process for finding the extension DLL first looks in the folder containing gmBasic. This is used for the gmPL dlls in the gmStudio distribution.For example, the extension tag below will engage extension code in gmPL_GlobalStubs.dll located in the same folder as gmBasic.exe.
<GlobalStubs>
...
</GlobalStubs>
If the extension DLL is to be placed in a different location, then the extension element must specify that location in a Dllname attribute. For example, the extension tag below will engage extension code in gmPL_GlobalStubs.dll located in the C:\Dev\gmGlobalStubs\bin\Debug\ folder. The DllName value will typically be specified as a relative path or a path using a gmPL script variable (e.g. %UserFolder%).
<GlobalStubs DllName="C:\Dev\gmGlobalStubs\bin\Debug\gmPL_GlobalStubs.dll">
...
</GlobalStubs>
Within their implementation, gmPL extensions assemblies and classes must have the following conventions:
Unable to find source-code formatter for language: csharp. Available languages are: actionscript, ada, applescript, bash, c, c#, c++, cpp, css, erlang, go, groovy, haskell, html, java, javascript, js, json, lua, none, nyan, objc, perl, php, python, r, rainbow, ruby, scala, sh, sql, swift, visualbasic, xml, yaml*** gmPL_GlobalStubs.dll *** <-- recommended name is gmPL_<ExtensionName>.dll
namespace gmBasic <-- namespace must be gmBasic
{
public class gmPL_GlobalStubs <-- class name must be gmPL_<ExtensionName>
{
XeqStatement(string record); <-- extension command handler
Building a gmPL Extension
The high-level process for creating and using a gmPL Extension is as follows:
Define your requirements and decide on a name for your extension
Implement a .NET DLL following gmPL extension conventions and using gmAPI methods to access and manipulate the translation model
Engage your extension by adding one or more extension XML Elements into your template translation script
If your gmPL extension will interact at several points in the translation process, XeqStatement must return Script.HasEventHandlers. This tells gmBasic to hand-off processing to the gmPL dll when it encounters the three main processing operations (Compile, Analyse, and Author). During each hand-off, the gmPL extension may engage its own pre- and post-processing logic and engage the tools standard processing for these operations. For example, see the implementation of the gmPL_CodeStyle below.
Examples of gmPL extensions
As of the September 2024 Release, gmStudio ships with several gmPL extensions:
Shared Files Reporting and Consolidation (gmPL_gmSharedFiles.dll)
Custom Coding Style Transformations (gmPL_gmCodeStyle.dll).
VB6 to WPF Migration (gmPL_WpfSubSystem.dll)
Global Support Framework Generation (gmPL_gmGlobalStubs.dll).
Global Analysis and Reporting (gmPL_gmGlobal.dll)
Advanced Code Analysis Reporting (gmPL_Search.dll)
There are three flavors of extended gmPL libraries:
Single Statement,
Multiple Statement, and
Event handler.
gmPL_Search.dll (Single Statement)
gmPL_Search.dll is a single statement gmPL extension command that executes the "Search" command.
The script template below contains the <Search> command that triggers execution of gmPL_Search.
gmBasic also engages gmPL_Search.dll to produce a VBI audit using this call to ExecutedExtendedStatement:
gmPL_SharedFile.dll (Single Statement)
gmSharedFile.dll is single statement gmPL extension library that executes the "SharedFile" command.
gmGlobal.dll (Multiple Statement)
gmPL_gmGlobal.dll is a multiple statement gmPL extension library that executes the 5 gmPL commands:
InformationFiles/Load: load VBI files for subsequent global analysis
FindCallByName: report LateCalls
RemoveUnused: identify and report unused symbols as an XML script containing Remove commands
ReportRemovals: identify and report unused symbols as a tabular report
GlobalIncludes: report and apply refactoring commands for ASP includes based on global analysis
See Support Statement: Unused Symbol Analysis and Reporting
gmCodeStyle.dll (Event Handler)
The gmCodeStyle.dll is an event handler gmPL extension that assists with generating "CodeStyle" translations. In order to engage this dll, the translation script must contain a <CodeStyle> statement. For example:
This statement triggers loading the gmPL_CodeStyle.dll and configuring it with the specified CodeStyle rules. It also registers the DLL to extend the handling of Analyse and Author events when they occur during the translation process.
This integration is done in the DLL code.
gmPL_GlobalStubs.dll (Single Statement)
gmPL_GlobalStubs.dll is a single statement gmPL extension that executes the "GlobalStubs" command. With this library loaded gmBasic is able to execute the GlobalStubs statement using C# code. The extension dll handles loading all of the VBI files for a system then generates the GlobalStubs bundle. This command will typically be placed at the bottom of a gmBasic script that references the external IDFs used by the VBIs. See Incremental Scope Analysis using gmStudio
gmPL_WpfSubsystem.dll (Event Handler)
gmPL_WpfSubsystem.dll is a single statement gmPL extension that executes the "WpfSubsystem" command. With this loaded, gmBasic is able to produce WPF translations. The WPF extension handles authoring XAML files instead of Designer files for Forms and UserControls as well making various changes to code and project structure. This command will typically be placed at the top of a gmBasic script and tell the translator to handle compile, analyse, and author operations adding special processing for WPF features.
Â