arXiv:1706.10151v2 [cs.RO] 13 May 2019 A ROS Multi-Ontology References Service: OWL Reasoners and Application Prototyping Issues⋆ Luca Buoncompagni†, Alessio Capitanelli†, and Fulvio Mastrogiovanni All the authors are affiliated with the Department of Informatics, Bioengineering, Robotics and Systems Engineering, University of Genoa, Via Opera Pia 13, 16145, Genoa, Italy. Corresponding authors’ e-mails: luca.buoncompagni@edu.unige.it. †These authors contributed equally to this work. Abstract This paper introduces a ROS Multi Ontology References (ARMOR) service, a general-purpose and scalable interface between ro- bot architectures and OWL reasoners. ARMOR addresses synchroniz- ation and communication issues among heterogeneous and distributed software components. As a guiding scenario, we consider a prototyping approach for the use of symbolic reasoning in human-robot interaction applications. Keywords: software architecture for robotics, knowledge representa- tion, reasoning, description logics. 1 Introduction The challenge of sharing and communicating information is crucial in complex human-robot interaction (HRI) scenarios. Ontologies and symbolic reasoning are the state of the art approach for a natural representation of knowledge, espe- cially within the Semantic Web domain, and it has been adopted to achieve high expressiveness [2]. Since symbolic reasoning is a high complexity problem, op- timizing its performance requires a careful design of the knowledge resolution. Specifically, a robot architecture requires the integration of several components implementing different behaviors and generating a series of beliefs. Most of the components are expected to access, manipulate, and reason upon a run-time gen- erated representation of knowledge grounding robot behaviors and perceptions through formal axioms, with soft real-time requirements. The Robot Operating System (ROS) is a de facto standard for robot software development, which allows for modular and scalable robot architecture designs. Currently, some approaches exist to integrate a semantic representation in ROS, such as the KnowRob [7] which provide a complete framework of relevant on- tologies, or the native ROS support of MongoDB1, which can also be used to ⋆Published in the CEUR-WS Proceedings of the 5th Italian Workshop on Artificial Intelligence and Robotics A workshop of the XVII International Conference of the Italian Association for Artificial Intelligence (AI*IA), 22-23 November 2018, Trento, Italy, Vol-2352, pages 36-41. 1 https://www.mongodb.com. 2 Buoncompagni et al. provide a suitable representation for semantic querying. Unfortunately, none of these supports the study of advanced reasoning paradigms, and they heavily rely on ad hoc reasoning solutions, significantly limiting their scope. We argue that this fact affects the study of different approaches to semantics in Robotics. For instance, it limits our capability to explore novel semantic representations of per- ceptions, which offers similar but not equivalent beliefs. We lack a standardized general framework to work with ontologies, natively supporting symbolic logic and advanced reasoning paradigms. The Ontology Web Language (OWL)2 is a standard representation support- ing several reasoning interfaces, e.g., Pellet [6], and logic formalisms, e.g., the Allen’s Algebra [1]. Thus, it can be a solid foundation for a framework for sym- bolic reasoning in Robotics. OWL is based on the separation between terminolo- gical and assertional knowledge, referred to as different boxes (Tbox and Abox). Typically, in Robotics scenarios, we design a static semantics for the beliefs to be represented in the TBox. Then, we populate the ABox through individuals defined using types and properties and, at run-time, we classify knowledge using instance checking. We argue that, due to the high complexity of HRI scenarios, the possibility of a dynamic semantics in the TBox is desirable as well. For in- stance, it could be used to learn new types for classification. This leads us to a study requiring reasoning heuristics to be compared, components to be shared, and different semantics to be adapted. For this purpose, we propose the ROS Multi Ontology References3 (AR- MOR). ARMOR is an open source service which manipulates and queries mul- tiple OWL ontologies. It provides access to a set of dynamic ontologies, handling also the synchronizations among different components in the architecture. There- fore, it is a convenient tool for managing knowledge representation supported by advanced reasoners. 2 System’s Architecture Figure 1 shows a schematic representation of ARMOR. It interfaces the OWL API [5] and reasoners through the Java-based Multi Ontology References lib- rary (AMOR). Then, ARMOR exposes AMOR functionalities as a service to ROS-based architectures, relying on the support for Java in ROS (ROSJava4). ARMOR messages have been designed to accommodate all OWL functionalities. Nevertheless, we have implemented only an exhaustive subset of those features so far (i.e., only common run-time operations). Indeed, ontology managers are not distributed across satellite components of a ROS architecture. Instead, dedicated components are in charge of management, while others only provide knowledge axioms, possibly at run-time. With ARMOR, it is possible to inject in the ser- vice procedure managing symbols from a centralized perspective, based on the 2 https://www.w3.org/TR/owl-guide. 3 https://github.com/EmaroLab/ARMOR. 4 https://github.com/rosjava. A ROS Multi Ontology References (ARMOR) Service 3 ♣consistency ♠solution ⋆injected response references 1 «implements» «depends» a ROS Multi Ontology References (ARMOR) «ROSjava package» Injected Service «class» ARMOR interface «ROS service» a Multi Ontology References (AMOR) «library» AMOR Manipulator «interface» OWL API «factory» OWL Manipulator «realization» Ontology «knowledge base» AMOR Enquirer «interface» OWL Reasoner «engine» OWL Enquirer «realization» ♣manipulation ♠query ⋆injected request ⋆injected request ⋆injected response Figure 1. The UML diagram of ARMOR. It accepts two types of request and respond accordingly (♣, ♠). The request and response ⋆are shown as an example where the Injected Service extends the services of ARMOR using AMOR. functionalities provided by AMOR. Nevertheless, complex static representations can always be defined also off-line with dedicated software, e.g., Protégé5. 2.1 The ARMOR Core: AMOR The core library, referred to as AMOR, contains a map of instantiated ontolo- gies, where the key is a unique name identifier used to access the corresponding ontology in a thread-safe manner. AMOR provides several common operations, such as those to create individuals, assign their properties, make them disjoin- ted and classify them, to name a few. Furthermore, AMOR ensures complete accessibility to the OWL API6 features for compatibility and extendability pur- poses. For example, AMOR allows for invoking reasoners by specifying their OWLReasoner factory, i.e., the unique package of its Java implementation, which assures compatibility with all OWL reasoners. In the current implementation, we interface several properties that are useful to tune the AMOR behaviour, e.g., the buffering of the manipulations or a continuous reasoner update, using the standard ROS Parameter Server, as well as parameters for debugging purposes such as toggling a Graphical User Interface (GUI) for visualising ontology states on-line. 2.2 The ARMOR Interface The ARMOR interface is based on a ROS message structure (i.e., a triple) for the use of the AMOR functionalities from any node in the architecture, even when the development language is different from Java (e.g., Python7 and C++ are the most common languages in Robotics development). Such a message is composed of: 1. the client name, which is used by the service to identify different 5 http://protege.stanford.edu. 6 http://owlapi.sourceforge.net. 7 An ARMOR client is available at https://github.com/EmaroLab/ARMOR_py_api. 4 Buoncompagni et al. callers, 2. the reference name, indicating the operation’s target reference, and 3. the command to execute, i.e., add, remove, replace, query, load, mount, etc.8 Each of those commands may be further refined by: (a) the primary and second- ary specifiers, which augment command labels, e.g., add(individual, class) or remove(individual, property), and (b) the arguments, a list of entities in the reference parameterising the command, e.g., ⟨add(class) "Sphere"⟩, or even ⟨add(property,individual) "hasNorth" "LivingRoom" "Corridor"⟩. An ARMOR call is based on one or more messages with the same structure. When such a request is sent, the service manipulates or queries the ontology with the given directives. Then, it returns whether the ontology is consistent, eventual error codes with their description, and the names of the queried entit- ies, if requested. In other words, the interfaces ♣and ♠in Figure 1, and ⋆can be defined for each specific injected service, if any. One advanced feature of ARMOR is the possibility of flexibly synchronising all operations. This follows a mounting/unmounting paradigm, where one or more nodes identified by the same client name can prevent other nodes from manipulating a given ontology, in order to ensure manipulation consistency. On the contrary, queries are always allowed, except during reasoning time. Calls to busy ontologies will report a mounting issue, and the user can choose how to handle this situation. 3 Applications and Conclusions We are currently using ARMOR in different applications, but here we mention only two of them. The first is aimed at implementing a dynamic PDDL problem generator. This approach uses descriptions of the predicates and objects in a tabletop scenario to infer unsatisfied norms and consequently generate goals [4]. The system has been integrated with ROSPlan9 by substituting the internal semantic data structure with ARMOR and a suitable ontology. The second application is a system to learn by demonstrations the arrange- ment of objects in the robot’s workspace by mapping their properties into the TBox. In particular, we used an injected service10 in ARMOR for performing scene learning and classification in a scenario where a robot explains its beliefs to a human, which might want to correct it through dialogues [3]. This paper introduces the ARMOR service to manipulate OWL ontologies and query their reasoners in a ROS-based architecture. ARMOR services are available through a flexible message allowing for the direct access OWL features from any component of the architecture. It ensures synchronisation between client calls and flexibility through procedure injection. Also, ARMOR allows for an easy interface between robotic architectures and OWL representations, and we practically showed it during a tutorial presented at the ROS Development 8 Listed at https://github.com/EmaroLab/ARMOR/blob/master/commands.md. 9 https://github.com/KCL-Planning/ROSPlan. 10 https://github.com/EmaroLab/injected_armor_pkgs. A ROS Multi Ontology References (ARMOR) Service 5 Conference 201811. The tutorial is focused on the control of mobile robots based on a topological environment representation and SLAM. References 1. Allen, J.F.: Maintaining knowledge about temporal intervals. Communications of the ACM 26(11), 832–843 (1983) 2. Baader, F., Horrocks, I., Sattler, U.: Description logics as ontology languages for the semantic web. In: Mechanizing Mathematical Reasoning, pp. 228–248. Springer (2005) 3. Buoncompagni, L., Mastrogiovanni, F.: Dialogue-based supervision and explanation of robot spatial beliefs: a software architecture perspective. In: 2018 27th IEEE International Symposium on Robot and Human Interactive Communication (RO- MAN). pp. 977–984 (Aug 2018) 4. Capitanelli, A., Mastrogiovanni, F.: An ontology-based hybrid architecture for plan- ning and robust execution in tabletop scenarios. In: Proceedings of the 3rd Italian Workshop on Artificial Intelligence and Robotics A workshop of the XV Interna- tional Conference of the Italian Association for Artificial Intelligence (AI*IA 2016). vol. 1834, pp. 31–35. CEUR-WS, Genova, Italy (nov 2016) 5. Horridge, M., Bechhofer, S.: The owl api: A java api for owl ontologies. Semant. web 2(1), 11–21 (Jan 2011) 6. Sirin, E., Parsia, B., Grau, B.C., Kalyanpur, A., Katz, Y.: Pellet: A practical owl-dl reasoner. Web Semantics: science, services and agents on the World Wide Web 5(2), 51–53 (2007) 7. Tenorth, M., Beetz, M.: Knowrob – knowledge processing for autonomous personal robots. In: 2009 IEEE/RSJ International Conference on Intelligent Robots and Sys- tems. pp. 4261–4266. IEEE (Oct 2009) 11 http://www.theconstructsim.com/ros-developers-online-conference-2018-rdc-worldwide/ ros-developers-conference-speaker-alessio-capitanelli. Code available at https://github.com/EmaroLab/armor_rds_tutorial.