Lesson 5: Generate Proxy Types
We just spent quite a bit of time figuring out how to instruct the code generator what types we are interested in. It is time to put our knowledge to the test and generate some .NET proxy types.
In this lesson we will import the java.lang.Object
type and see what happens when we generate. Then
we will import the java.lang.Class
type, generate again, and compare the outcomes.
Step by Step Instructions
- Start the Code Generator GUI and Create a New Model
Please revisit the first two lessons if you are uncertain how to do this or if you run into problems. Otherwise, change the model name to Object Test and import the
java.lang.Object
type.Save the model to a directory of your choice. We do this so the
modelFile
andmodelDir
properties become defined. - Generate .NET proxy types
Select the "To .NET Proxy Types" from the Transform menu. You should see some log statements in your console that indicate that something has happened.
- Verify That Proxies Were Generated
If you recall something you learned in a previous lesson, the default target directory is calculated from the
modelDir
property. .NET proxy types should be located in thegenerated/dotnet/cs
subdirectory of the directory in which your model file is stored.TODO
- Import
java.lang.Class
and Regenerate Proxy TypesSo far, so good. Nothing terribly unexpected has happened. Now we import
java.lang.Class
, a type that is already in the model and even enabled in the model; we just saw that a proxy type is being generated for it.Let's regenerate by again selecting the "To .NET Proxy Types" from the Transform menu.
When you inspect the generated code you see a much larger set of proxy types. For the JRE version I used, I got:
java.io.InputStream java.io.Serializable java.lang.annotation.Annotation java.lang.Class java.lang.ClassLoader java.lang.ClassNotFoundException java.lang.IllegalAccessException java.lang.InstantiationException java.lang.InterruptedException java.lang.NoSuchFieldException java.lang.NoSuchMethodException java.lang.Object java.lang.Package java.lang.reflect.AnnotatedElement java.lang.reflect.AnnotatedType java.lang.reflect.Constructor java.lang.reflect.Field java.lang.reflect.Method java.lang.reflect.Type java.lang.reflect.TypeVariable java.lang.SecurityException java.lang.String java.net.URL java.security.ProtectionDomain
This might surprise you. Why did we get so many types when all we did was import a type that was already part of the model? The difference stems from the intent we expressed when we imported
Class
.When we imported it by name we told the code generator: "I am interested in using
java.lang.Class
's API." That implied that all of its publicly referenced types needed to be enabled as well.Class
is a much beefier type thanObject
, so we ended up with many more types.For our next exercise we are going to generate the proxies from the command line without opening the GUI. For that we need the model file and we need a clean generation area so we can tell that it worked.
- Save the Model and Exit Code Generator GUI
You can choose the same or a different filename, then exit the GUI.
- Delete the Generated Proxies
rm -rf <modelDir>/generated
del <modelDir>/generated
- Generate Using the Command Line
This is the first time in the tutorial that we will be using the command line version to do some real work for us. In the second lesson we learned how a model can be reopened in the GUI from the command line. While we started this action from the command line, it really translated into a GUI invocation.
Now we're going full command line! Assuming you're still in the code generator's
bin
directory, execute the following command:./xmog -dotnet "<modelFile>"
xmog -dotnet "<modelFile>"
After a brief wait, the code generation should be complete and you should be able to see the generated proxy types in their previous location.
Essentially, we opened the model file, just as we did in the second lesson, but then we had a command performed on it—in our case the
-dotnet
command to generate .NET proxy types. The mere fact that we gave the code generator a command caused it to switch into command line mode and exit after completing the command.You have now generated proxy types both from the GUI and from the CLI version of the code generator. There is a third way, using ANT, but we're not going to do that in this basic lesson because not everyone is interested in this variant. You can find out more about it in the code generator's ANT Reference.
Take-Away Points
- Importing a type into the model is a powerful gesture that can cause a lot of types to be enabled.
- You don't have to open he GUI to generate proxy types.
- Use the
-dotnet
command to generate proxy types from the command line.