Fork me on GitHub

FAQ related to the Runtime Environment

1. General Questions about Janus

1.1. What is the SRE?

SRE stands for “SARL Runtime Environment”. The SRE is an implementation of an agent platform, which is able to run a SARL program. The official standard SRE supported by the SARL developers is the Janus platform.

1.2. What is Janus?

Janus is an open-source multi-agent platform fully implemented in Java 17. Janus enables developers to quickly create web, enterprise and desktop agent-based applications.

Janus is an agent execution platform not an agent-oriented language.

It provides a comprehensive set of features to develop, run, display and monitor agent-based applications.

Janus-based applications can be distributed across a network. Janus could be used as an agent-oriented platform, an organizational platform, and/or a holonic platform. It also natively manages the concept of recursive agents and holons.

Official website: www.janusproject.io

1.3. Where can I ask my question?

If you cannot find an answer to your question in the FAQ, nor the reference documents, nor the existing SARL issues, you may ask the SARL developers on the SARL forum, or on the instant messaging forum.

1.4. Where can I found information on the release planning of Janus?

Janus is now part of the SARL project. The release planning of SARL is detailed on the milestones page on Github.

2. Installation and Execution

2.1. What is the list of all the error, warning and information messages that may be generated by Janus?

Several run-time errors from the Janus framework are explained here.

2.2. Is my operating system compatible with Janus?

The Janus runtime platform is a Java application. Every operating system which has a Java Virtual Machin, especially the Java Development Kit (JDK), with at least with the 17 standard may be used to run Janus.

2.3. What is the version of the Java virtual machine to install?

Janus requires the JDK 17 or higher (and strictly lower than 18) to run and compile. Note that if you plan to create Android applications, you may configure your JDK to produce 1.6 class files from 17 Java code, depending of the current supported standard on Android platforms.

2.4. How to launch an agent in Janus?

Three methods are available for launching one or more agents in the Janus platform:

2.5. In the Eclipse SARL product, what is the difference between the launch configurations “SARL Agent” and “SARL Application”?

There is two methods for starting an application that will run SARL agents:

For the first case, the qualified name of the agent type to be launched must be provided. This case is supported by the SARL Agent launch configuration.

For the second case, the main() function of the application should be launched in order to start it. This case is supported by the SARL Application launch configuration.

Both launch configurations adds the SARL Run-time Environment into the run-time classpath. The selected SRE depends on the configuration of your Eclipse SARL product.

2.6. In the Eclipse SARL product, what is the difference between the launch configurations “Java Application” and “SARL Application”?

Both “Java Application” and “SARL Application” are launch configurations for starting a Java application, i.e. invoking the main() function for starting up.

The difference between them is that the “SARL Application” launch configuration is automatically adding in the application classpath the SARL Run-time Environment that is configured into your Eclipse SARL project. The “Java Application” does not.

Consequently, if you need to run agents and if you start your application with a “Java Application” launch configuration, you must add manually the SRE libraries in the classpath.

2.7. Error: “The SRE is not standalone. It does not contain the Java dependencies.”

This error occurs when there is no SARL Runtime Environment (SRE) installed on your Eclipse environment, OR when the installed SRE is not compatible with the installed version of the SARL tools, which are embedded in Eclipse.

For solving this problem, you must download the latest Janus platform, and install it in your Eclipse (Menu Window> Preferences> SARL> Installed SREs).

2.8. Error: “Incompatible SRE with SARL 1.1.1.1. Version must be lower than 0.0.0.”

This error occurs when the SARL Runtime Environment (SRE) has a version lower than the version of the SARL tools, which are embedded in the Eclipse IDE. This difference of version may cause problems during the execution of your agents, since the capacities’ definitions may not be the same.

For solving this problem, you must download the version of the SARL Runtime Environment (SRE) that is implementing the version of the SARL specification that you’re using on Eclipse IDE. For the Janus platform, the versions of the latest stable and development releases are displayed on this page. For determining if the Janus platform implements the correct version of the SARL specification, please read the explanation on how Janus version numbers are built.

2.9. Error: “Agent class not found.”

When the Janus platform cannot find the class file for the start-up agent, it displays the error message "Agent class not found".

For resolving this problem, you should check if:

For showing the arguments given to Janus, you could launch Janus with the command line option: --cli. This option stops Janus after displaying the command line arguments, including the --cli option.

2.10. Error: “Invalid byte 2 of 4-byte UTF-8 sequence.”

When installing Janus as an SRE in the Eclipse interface, the plugin loads the Jar file of the SRE with the default API. The Jar archiver uses the default file encoding of the operating system. On Linux and MacOS 10, it is almost UTF-8. On Windows, it is Latin1. And on MacOS (before 10), it is Mac-Roman.

The Janus Jar file is generated on a Linux operating system (UTF-8). When the Java virtual machine tries to uncompress and use the content of the Jar, it may complain about an invalid charset format.

For solving this issue, you could launch your Eclipse with the command line option -Dfile.encoding=UTF-8, which is forcing the Eclipse product to consider the file as encoded with the UTF-8 charset. Note that this option is defined into the Eclipse SARL product since version 0.4.

2.11. How to create a runnable?

Both “Java Application” and “SARL Application” are launch configurations for starting a Java application, i.e. invoking the main() function for starting up.

The difference between them is that the “SARL Application” launch configuration is automatically adding in the application classpath the SARL Run-time Environment that is configured into your Eclipse SARL project. The “Java Application” does not.

Consequently, if you need to run agents and if you start your application with a “Java Application” launch configuration, you must add manually the SRE libraries in the classpath.

3. Runtime Behavior of Janus

3.1. Are events received in the same order than when they are sent?

No.

There is no warranty on the receiving order of the events. This is a particular implementation choice of the runtime environment. For example, the Janus runtime environment executes the event handlers in parallel. The real order of execution depends on how the Java executor is running the handlers on the threads.

3.2. How events are treated by the run-time environment?

When the event e of type E is received by an agent the following algorithm is applied:

if "on Initialize" is currently running then
   add e to a buffer of events.
else if "on Destroy" is currently running then
   ignore the event.
else
   fire(e)
fi

The function fire(e) retrieves all the on E and runs them in parallel, and there is a synchronization point after the running of all the on E if E is Initialize or Destroy (for forcing synchronous execution of on Initialize and on Destroy). At the end of the on Initialize (after synchronization point), all the buffered events are fired.

Observe that if the event is fired from within the on Initialize, the same algorithm is applied whatever the receiving agent.

3.3. How the spawn function is run by the run-time environment?

Regarding spawn(), the function runs in two parts:

  1. First, the spawn agent is created. This part is run in the same thread as the caller of spawn, so the spawn call blocks.
  2. Once the spawn agent has been created, the initialization process runs within a separated thread from the spawner agent. So, the call spawn() is not locked. Then, the created thread runs all the initialization process, including the synchronous execution of on Initialize (see previous question). Consequently, the on Initialize of the spawn agent will not block the spawn caller.

3.4. Must I configure the Janus kernels to be connected to other Janus kernels?

No.

Janus was designed to discover other kernels automatically. By default, the different instances of the Janus platform are connected together without any particular configuration. The sole constraint is that the kernels must be on the same local network.

4. Contribute to Janus

4.1. Where are the sources for Janus?

The sources for Janus are available inside the SARL project repository on Github.

4.2. How can I find the current issues?

Janus Developers use Github to manage bug tracking and project workflow. The issues are listed on Github.

4.3. How can I report a problem or a bug in Janus components?

You should submit your issue on this page.

Copyright © 2014-2023 SARL.io, the Original Authors and Main Authors.

Documentation text and medias are licensed under the Creative Common CC-BY-SA-4.0; you may not use this file except in compliance with CC-BY-SA-4.0. You may obtain a copy of CC-BY-4.0.

Examples of SARL code are licensed under the Apache License, Version 2.0; you may not use this file except in compliance with the Apache License. You may obtain a copy of the Apache License.

You are free to reproduce the content of this page on copyleft websites such as Wikipedia.

Generated with the translator docs.generator 0.14.0-SNAPSHOT.