Difference between revisions of "Object Inspector"

From Apache OpenOffice Wiki
Jump to: navigation, search
(Future Enhancements)
m
 
(29 intermediate revisions by 8 users not shown)
Line 1: Line 1:
The Object Inspector is an OpenOffice.org extension created to help the developer to inspect arbitrary Uno-Objects.  
+
The Object Inspector is an OpenOffice.org extension created to help the developer to inspect arbitrary UNO-Objects.  
As Uno provides a service-oriented API with abstract service descriptions exporting defined interfaces the capabilities of a Uno Object does not open up to the developer at design time mainly due to several "deficiencies".  
+
UNO provides a service-oriented API with abstract service descriptions exporting defined interfaces. The capabilities of a UNO Object do not open up to the developer at design time, mainly due to several "deficiencies".  
 
Please note that the Object Inspector is still under development.
 
Please note that the Object Inspector is still under development.
 +
 +
{{Warn | '''NOTICE'''
 +
Object Inspector is no longer under development. Better have a look at [https://extensions.openoffice.org/project/MRI extension MRI]}}
  
 
== The Problem ==
 
== The Problem ==
  
Generic interfaces like [http://api.openoffice.org/docs/common/ref/com/sun/star/beans/XPropertySet.html XPropertySet] or [http://api.openoffice.org/docs/common/ref/com/sun/star/container/XIndexAccess.html IndexAccess] do not define their exact return value. Service descriptions that export these interfaces mostly do not contain such information either.
+
Generic interfaces like <idl>com.sun.star.beans.XPropertySet</idl> or <idl>com.sun.star.container/XIndexAccess</idl> do not define their exact return value. Service descriptions that export these interfaces mostly do not contain such information either.
  
 
It is not always clear at design time which services a UNO object actually supports.
 
It is not always clear at design time which services a UNO object actually supports.
  
Documentation bugs: as service descriptions do not always show up all actually exported interfaces or properties there may be a certain difference between the theoretical and the practical capabilities of a UNO object.
+
Documentation bugs: as service descriptions do not always show up all actually exported interfaces or properties, there may be a certain difference between the theoretical and the practical capabilities of a UNO object.
  
 
== The Solution ==
 
== The Solution ==
  
The conclusion is that it has to be inspected during runtime what respective capabilities a UNO object actually has.  
+
The conclusion is that a runtime inspection is necessary to determine what respective capabilities a UNO object actually has.  
The Object Inspector is an OpenOffice.org extension that has been evolved from the ancient instance inspector that is part of the OpenOffice.org SDK. It displays the total capabilities of a "living Uno-object" such as all supported services, exported interfaces, and their respective methods and properties in a TreeView window.
+
The Object Inspector is an OpenOffice.org extension that has been evolved from the ancient instance inspector that is part of the OpenOffice.org SDK. It displays the total capabilities of a "living UNO-object" such as all supported services, exported interfaces, and their respective methods and properties in a TreeView window.
  
 
== Usage ==
 
== Usage ==
The Object Inspector may be installed using the package manager (menu "Tools/Options") by adding the package from [http://api.openoffice.org/Projects/ObjectInspector/Inspector.oxt] .  
+
The Object Inspector may be installed using the package manager (menu "Tools/Options") by adding the package from [http://api.openoffice.org/Projects/ObjectInspector/Inspector.oxt Inspector.oxt] .  
  
Together with the new package a new toolbar is added from which the object inspector may be started. The object inspector consists of a menu-controlled resizable dialog with a tab control. Each pane of the tab control contains a split pane whose upper component is occupied by a treeview control embedded in a tab pane (see Illustration 1: Object Inspector). The treeview control is to inspected an arbitrary Uno-object. The bottom component of the split control contains a text control used to display the SourceCode needed to create the Uno-Objects represented by nodes of the treeview control. The initial Uno-Object is the document of the currently active frame. The Uno-object of this document is represented by the root node of the treelist control. Expanding this node will create subnodes referencing all subordinate objects, properties, methods and other values of the root object. All this information is presented in various facettes:
+
Together with the new package a new toolbar is added from which the object inspector may be started.  
Methods of Uno-objects  are presented as subnodes under a „Method node“. All methods are listed under this node, no matter what their parental interfaces are. Expanding nodes that denote a method of a Uno-object will invoke the method and if necessary a dialog with an input mask for the method parameters will appear. Note that currently only methods with either no parameters or primitive parameters may be invoked.
+
The initial UNO object is the document of the active frame. The UNO object of this document is represented by the root node of the treelist control. Expanding this node will create subnodes referencing all subordinate objects, properties, methods and other values of the root object. All this information is presented in various facets:
  
Properties of Uno-objects are presented as subnodes under a „Properties“ node.  
+
Methods of UNO objects are presented as subnodes below a "Method" node. All methods are listed below this node, no matter what their parental interfaces are.
  
„Interface“ nodes offer a view to all methods by arranging them under their respective interface.
+
Properties of UNO objects are presented as subnodes below a "Properties" node.  
  
„Service“ nodes offer a view to all supported services of a Uno-object and their respectively exported interfaces and properties.
+
"Interface" nodes offer a view to all methods by arranging them under their respective interface.
"Container" nodes may be expanded to retrieve information about Elements. This node is only applicable when the Uno-objects also depicts a container that exports interfaces like "com.sun.star.container.XIndexAccess"
+
  
Expanding any arbitrary subnode will inspect the Uno-object that is represented by the node in the same way as described above. Subnodes that describe methods will invoke this method at the Uno-object. If parameters have to be supplied these have to be delivered by the user in a special dialog that opens up when the node is expanded.
+
"Service" nodes offer a view to all supported services of a UNO object and their respectively exported interfaces and properties.
  
The menubar consists of several menus:
+
Expanding any arbitrary subnode will inspect the UNO object that is represented by the node in the same way as described above.
  
* A „File“ menu to remove tab panes and to quit the object inspector.
+
=== Screenshots ===
  
* An „Inspect“ menu in order to determine the Uno-objects to be inspected. Clicking on such a menu item will open a new tab pane for a certain Uno-object. Offered Uno-objects are derived from the following items in this menu:
+
[[Image:ObjectInspector.png|600px]]
**Empty documents of all given application. text document, empty spreadsheet, empty presentation, empty drawing. Selecting one of these menu entries opens a new tabpane and loads an empty hidden application document.
+
**Menu entries for each available so-called T-Docs („transient documents“). T-Docs describe the currently opened documents. The object inspector is started with the currently active document as the to-be inspected Uno-object.
+
**The currently selected object. This menu entry references the Uno-object of the currently selected node.  This option is explicitly helpful in vast object hierarchies where the user can easily loose track.
+
**The global service manager, that can be used to instantiate a great variety of services.
+
  
* A„View“ menu: Developers may prefer different views on the respective Uno-Objects depending on the momentary situation and the used programming language. For example StarBasic developers are naturally not very interested what interfaces a Uno object supports as they use the methods directly. On the other hand in StarBasic many „getter“ and  „setter“ methods are implemented as properties and should optionally turn up underneath the „Properties“ node. This menu and its underlying functionality has not yet been implementd nor has it been specified.
+
=== Calling from a Basic Macro ===
  
* An „Options“menu to be used to set all kind of options. In its current state it is possible to choose the to-be-generated sourcecode language and set the path to a local SDK-installation with contained idl-files (interface and service description files).
 
 
* A „Help“ menu to aquire help about Uno-objects behind selected nodes. Also via shortcut F1 the browser will open a help document about the used interface or service of a Uno-object , that is referenced by a selected node.
 
A context menu can be applied on selected nodes and offers some functions to
 
1) inspect the object behind the selected node in a new tabpane
 
2) add the source code needed to retrieve the Uno-object behind the node to the bottom component of the split pane.
 
3) get Help to the referred API functionality like via the "Help" menu
 
 
== '''Filtering''' ==
 
 
As can be see in Illustration 1: Object Inspector a filter can assist a determined search for subnodes. It also helps to keep the overview especially in large hierarchies.
 
 
[[Image:ObjectInspector.PNG]]
 
 
Illustration 1 Object Inspector
 
 
=='''Calling from a Basic Macro''' ==
 
 
The Object Inspector may be instantiated within a Basic script as can be seen in the following examplary script, where the current document is inspected:
 
The Object Inspector may be instantiated within a Basic script as can be seen in the following examplary script, where the current document is inspected:
  
Line 69: Line 50:
 
</source>
 
</source>
  
== Sourcecode generation ==
+
=== Sourcecode generation ===
 
+
  
 
The Object Inspector is also able to generate Sourcecode snippets that show how to:
 
The Object Inspector is also able to generate Sourcecode snippets that show how to:
Line 78: Line 58:
 
* retrieve a property value
 
* retrieve a property value
  
Currently there are Codegenerators for Java, C++, Python and Basic. The resulting code is not perfect, but ''should'' compile well.
+
Currently there are code generators for Java, C++, Python and Basic. The resulting code is not perfect, but ''should'' compile well. See [[ObjectInspectorComparison|Object Inspector Comparison]].
  
== IDL help ==
+
=== IDL help ===
<font color="red">Currently broken</font>
+
  
The user may retrieve help about selected nodes from the idl files of the respective interface and service descriptions.
+
The user may retrieve help about selected nodes from the IDL files of the respective interface and service descriptions.
  
== Known issues ==
+
== Development ==
 +
 
 +
=== Source code ===
 +
 
 +
You will find the Object Inspector source code within the OpenOffice.org Subversion Repository:
 +
 
 +
  svn co svn://svn.apache.org/repos/asf/openoffice/trunk/main/odk/examples/java/Inspector/
 +
 
 +
The checked in source contains a complete NetBeans project, so that one can immediately start hacking around. Feel free to commit bugfixes and changes or contact cli(at)openoffice.org if you like to take over the project.
 +
 
 +
=== Known issues ===
  
 
The Object inspector is still under development and the following list points to some known unresolved defects.
 
The Object inspector is still under development and the following list points to some known unresolved defects.
Line 91: Line 80:
 
* Filtering is slow and uncomfortable as nodes are collapsing and need to be expanded manually
 
* Filtering is slow and uncomfortable as nodes are collapsing and need to be expanded manually
 
* IDL help is not working (including context sensitive help)
 
* IDL help is not working (including context sensitive help)
 +
* C++ code not properly generated (it was better with previous version). [[Programming_OOoWriter#Going_further_with_Inspector|Read more here]] particularly [[Programming_OOoWriter#Java_Inspector_2| Java Inspector 2]] section.
  
== Future Enhancements ==
+
=== Future Enhancements ===
  
 
* Invocation of methods with complex parameters should be implemented. It should be implemented in several steps
 
* Invocation of methods with complex parameters should be implemented. It should be implemented in several steps
 
** Implementation of Array parameters with primitive elements.
 
** Implementation of Array parameters with primitive elements.
 
** Implementation of structs.
 
** Implementation of structs.
** Implementation of an input mask to refere to UNO-Objects as method parameters.
+
** Implementation of an input mask to refer to UNO-Objects as method parameters.
 
**Consider multidimensional arrays as method parameters and for return values.
 
**Consider multidimensional arrays as method parameters and for return values.
  
Line 104: Line 94:
 
* Interfaces that are exported by an UNO object although not being exported by any of the supported services should be distinguished from the other interfaces. There should be displayed some kind of alert as their usage is potentially hazardous, because it is merely based on an implementation detail.
 
* Interfaces that are exported by an UNO object although not being exported by any of the supported services should be distinguished from the other interfaces. There should be displayed some kind of alert as their usage is potentially hazardous, because it is merely based on an implementation detail.
  
* Add a "Container" meta node that can be expanded to retrieve information about Elements. This node is only applicable when the UNO objects also depicts a container that exports interfaces like XIndexAccess.
+
* Add a "Container" meta node that can be expanded to retrieve information about Elements. This node is only applicable when the UNO object also depicts a container that exports interfaces like XIndexAccess.
  
 
== See Also ==
 
== See Also ==
* [http://api.openoffice.org/Projects/ObjectInspector/Inspector.oxt] Object Inspector binary file
+
* [http://api.openoffice.org/servlets/ProjectDocumentList?folderID=636&expandFolder=636&folderID=0 Object Inspector binary file]
 +
* [[ObjectInspectorComparison|Object Inspector Comparison]]
 
* [[Constructing_Helpers#Reflection_Helper|C++ Reflection Helper]]
 
* [[Constructing_Helpers#Reflection_Helper|C++ Reflection Helper]]
* Bernard Marcelly's [http://www.ooomacros.org/dev.php#101416 XRay OOoBasic tool] and a [[Extensions_development_basic#X-Ray_tool|XRay tool description]] in this wiki.
+
* Bernard Marcelly's [[Extensions_development_basic#Xray_tool|XRay tool description]] in this wiki.
 +
* [https://extensions.openoffice.org/project/MRI MRI an Object Inspector] written on Python from the Extension Website.
 
* [[IDL_Files_and_Cpp#Core_reflection_service__and_its_Interfaces| Core Reflection Service]]
 
* [[IDL_Files_and_Cpp#Core_reflection_service__and_its_Interfaces| Core Reflection Service]]
* [[IDL_Files_and_Cpp#Using_Java_Inspector|Using Java Inspector]] (C++ and OOoBasic)
+
* [[IDL_Files_and_Cpp#Using_Java_Inspector|Using Java Inspector]] (C++ and AOOBasic)
* Using [[Programming_OOoWriter#Going_further_with_Inspector|the new object inspector]] with OOoWriter
+
* Using [[Programming_OOoWriter#Going_further_with_Inspector|the new object inspector]] with AOOWriter
 
+
[[Category:Development]]
+
 
[[Category:API]]
 
[[Category:API]]
 
[[Category:Extensions]]
 
[[Category:Extensions]]

Latest revision as of 14:18, 1 October 2021

The Object Inspector is an OpenOffice.org extension created to help the developer to inspect arbitrary UNO-Objects. UNO provides a service-oriented API with abstract service descriptions exporting defined interfaces. The capabilities of a UNO Object do not open up to the developer at design time, mainly due to several "deficiencies". Please note that the Object Inspector is still under development.

Documentation caution.png NOTICE

Object Inspector is no longer under development. Better have a look at extension MRI

The Problem

Generic interfaces like com.sun.star.beans.XPropertySet or com.sun.star.container/XIndexAccess do not define their exact return value. Service descriptions that export these interfaces mostly do not contain such information either.

It is not always clear at design time which services a UNO object actually supports.

Documentation bugs: as service descriptions do not always show up all actually exported interfaces or properties, there may be a certain difference between the theoretical and the practical capabilities of a UNO object.

The Solution

The conclusion is that a runtime inspection is necessary to determine what respective capabilities a UNO object actually has. The Object Inspector is an OpenOffice.org extension that has been evolved from the ancient instance inspector that is part of the OpenOffice.org SDK. It displays the total capabilities of a "living UNO-object" such as all supported services, exported interfaces, and their respective methods and properties in a TreeView window.

Usage

The Object Inspector may be installed using the package manager (menu "Tools/Options") by adding the package from Inspector.oxt .

Together with the new package a new toolbar is added from which the object inspector may be started. The initial UNO object is the document of the active frame. The UNO object of this document is represented by the root node of the treelist control. Expanding this node will create subnodes referencing all subordinate objects, properties, methods and other values of the root object. All this information is presented in various facets:

Methods of UNO objects are presented as subnodes below a "Method" node. All methods are listed below this node, no matter what their parental interfaces are.

Properties of UNO objects are presented as subnodes below a "Properties" node.

"Interface" nodes offer a view to all methods by arranging them under their respective interface.

"Service" nodes offer a view to all supported services of a UNO object and their respectively exported interfaces and properties.

Expanding any arbitrary subnode will inspect the UNO object that is represented by the node in the same way as described above.

Screenshots

ObjectInspector.png

Calling from a Basic Macro

The Object Inspector may be instantiated within a Basic script as can be seen in the following examplary script, where the current document is inspected:

Sub Main
	oInspector = createUnoService("org.openoffice.InstanceInspector")
	oInspector.inspect(ThisComponent, "My Document")
End Sub

Sourcecode generation

The Object Inspector is also able to generate Sourcecode snippets that show how to:

  • query an interface (if necessary in the selected language)
  • invoke a method
  • retrieve a property value

Currently there are code generators for Java, C++, Python and Basic. The resulting code is not perfect, but should compile well. See Object Inspector Comparison.

IDL help

The user may retrieve help about selected nodes from the IDL files of the respective interface and service descriptions.

Development

Source code

You will find the Object Inspector source code within the OpenOffice.org Subversion Repository:

 svn co svn://svn.apache.org/repos/asf/openoffice/trunk/main/odk/examples/java/Inspector/

The checked in source contains a complete NetBeans project, so that one can immediately start hacking around. Feel free to commit bugfixes and changes or contact cli(at)openoffice.org if you like to take over the project.

Known issues

The Object inspector is still under development and the following list points to some known unresolved defects.

  • Filtering is slow and uncomfortable as nodes are collapsing and need to be expanded manually
  • IDL help is not working (including context sensitive help)
  • C++ code not properly generated (it was better with previous version). Read more here particularly Java Inspector 2 section.

Future Enhancements

  • Invocation of methods with complex parameters should be implemented. It should be implemented in several steps
    • Implementation of Array parameters with primitive elements.
    • Implementation of structs.
    • Implementation of an input mask to refer to UNO-Objects as method parameters.
    • Consider multidimensional arrays as method parameters and for return values.
  • An additional UNO GUI should be created, so that the extension integrates well in OOo and NetBeans. The existing model can be easily adapted to another GUI, hopefully.
  • Interfaces that are exported by an UNO object although not being exported by any of the supported services should be distinguished from the other interfaces. There should be displayed some kind of alert as their usage is potentially hazardous, because it is merely based on an implementation detail.
  • Add a "Container" meta node that can be expanded to retrieve information about Elements. This node is only applicable when the UNO object also depicts a container that exports interfaces like XIndexAccess.

See Also

Personal tools