Index operator []

This article shows usage of [] operator for arrays and collections. In Javonet, every array or collection from called technology is treated as a reference.

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 arrays from Perl package like they were available in C++ but invocation must be performed through Javonet SDK API.

Custom Perl package with arrays handling

With Javonet it is possible to reference any custom Perl package and interact with arrays declared on types defined within that module almost the same as with any other C++ library.

Snippet below represents the sample code from Perl package that has methods which return or process the arrays:

sub get_1d_array {
	return ["one", "two", "three", "four", "five"];
}

sub add_number_to_1d_array {
	my ($self, $myArray, $myDouble) = @_;
	for(@$myArray) {
		$_ = $_ + $myDouble;
	}
	return $myArray;
}

Each array or collection from Perl package returns as InvocationContext which contains reference to the target data. Javonet SDK implements [] operator on InvocationContext to interact with complex data objects in C++:

Get element

// use Activate only once in your app
Javonet::Activate("your-license-key");

// create called runtime context
auto calledRuntime = Javonet::InMemory()->Perl();

// set up variables
auto libraryPath = resourcesDirectory + "/TestClass.pm";
auto className = "TestClass::TestClass";

// load custom library
calledRuntime->LoadLibrary(libraryPath);

// get type from the runtime
auto calledRuntimeType = calledRuntime->GetType(className)->Execute();

// create type's instance
auto instance = calledRuntimeType->CreateInstance()->Execute();

// invoke instance's method
auto arrayReference = instance->InvokeInstanceMethod("get_1d_array")->Execute();

// get index from array
auto response = (*arrayReference)[2]->Execute();

// get value from response
auto result = std::any_cast<std::string>(response->GetValue());

// write result to console
std::cout << result << std::endl;

In the snippet above, get1DArray method is used to get reference to 1D array from Perl package. Operator [] is used to get element from the array.

Set element

This snippet doesn't support selected combination of technologies.

In the snippet above, get1DArray method is used to get reference to 1D array from Perl package. Operator [] is used to set element of the 1D array.

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 Perl 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.