Instance fields and properties

This article provides an introduction to cross-technology handling of static fields and properties.
Javonet allows you to reference and use modules or packages written in (Java/Kotlin/Groovy/Clojure, C#/VB.NET, Ruby, Perl, Python, JavaScript/TypeScript) like they were created in your technology. If have not yet created your first project check Javonet overview and quick start guides for your technology.

With Javonet you can interact with instance field and properties from Python package like they were available in Perl but invocation must be performed through Javonet SDK API.

Javonet allows you to pass any Perl value type as argument to method from Python package. For reference type arguments (instances of other classes) you can create such instance with Javonet and pass the Invocation Context variable referencing that object as argument of method invocation.

Get/Set instance field from custom Python package

With Javonet it is possible to reference any custom Python package and interact with public instance fields and properties declared on types defined within that module almost the same as with any other Perl library.

Snippet below represents the sample code from Python package which contains class with fields:

static_value = 3

It is possible to get one of the declared instance fields from Python package using following Perl code.

# use activate only once in your app
Javonet->activate("your-license-key");

# create Python runtime context
my $python_runtime = Javonet->in_memory()->python();

# set up variables
my $library_path = $resources_directory;
my $class_name = "TestClass.TestClass";

# load Python custom library
$python_runtime->load_library($library_path);

# get type from the runtime
my $python_type = $python_runtime->get_type($class_name)->execute();

# create type's instance
my $instance = $python_type->create_instance(18, 19)->execute();

# get instance's field
my $response = $instance->get_instance_field("public_value")->execute();

# get value from response
my $result = $response->get_value();

# print result to console
print("$result\n");

This uses in memory runtime bridging to load the Python package, and next retrieves reference to specific type and gets the instance field. Result of the invocation is returned as regular Perl value and can be used for further processing. It is possible to set one of the declared instance fields from Python package using following Perl code.

# use activate only once in your app
Javonet->activate("your-license-key");

# create Python runtime context
my $python_runtime = Javonet->in_memory()->python();

# set up variables
my $library_path = $resources_directory;
my $class_name = "TestClass.TestClass";

# load python custom library
$python_runtime->load_library($library_path);

# get type from the runtime
my $python_type = $python_runtime->get_type($class_name)->execute();

# create type's instance
my $instance = $python_type->create_instance(18, 19)->execute();

# set instance's field
$instance->set_instance_field("public_value", 44)->execute();

# get instance's field
my $response = $instance->get_instance_field("public_value")->execute();

# get value from response
my $result = $response->get_value();

# print result to console
print("$result\n");

This uses in memory runtime bridging to load the Python package, and next retrieves reference to specific type, then sets and gets the instance field. Result of the invocation is returned as regular Perl value and can be used for further processing.

Get/Set instance field from standard Python package

The same steps are required to get types and fields from framework Python package:

This snippet doesn't support selected combination of technologies.

The same operation can be performed remotely by just changing the new Runtime Context invocation from in memory to tcp that will create and interact with your Python package objects on any remote node, container or service that hosts Javonet Code Gateway. This way you can preserve the same logic in your application and instantly switch between monolithic and microservices architecture without the need to implement the integration layer based on web services or other remote invocation methods.

Read more about use cases and software architecture scenarios where Javonet runtime bridging technology can support your development process.