Difference between revisions of "Writing Professional Components"

From Apache OpenOffice Wiki
Jump to: navigation, search
m (Our own Inspector)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Documentation/Caution|This chapter is under construction for a while because I don't master all the topics evocated here at the moment. [[User:SergeMoutou|SergeMoutou]] 12:20, 3 August 2009 (UTC)}}
+
{{Warn|This chapter is under construction for a while because I don't master all the topics evocated here at the moment. [[User:SergeMoutou|SergeMoutou]] 12:20, 3 August 2009 (UTC)}}
 
Writing components is not as easy as developping binary executable. When an exception occurs in your component a recovery process of your document begins. This process is too long to try some code and correct the errors. When designing a component, it would be a good idea to conceive it as a binary executable before to change it into a component. In this chapter we will discuss this idea and also the exceptions. But before starting we examine at first the inspection tools. why ? Because there is a lot of things you cannot do without an inspection tool. In fact there is always an other way : to read the documentation but it can take hours and hours to solve your problem with reading documentation and only ten minutes with an inspection tool.
 
Writing components is not as easy as developping binary executable. When an exception occurs in your component a recovery process of your document begins. This process is too long to try some code and correct the errors. When designing a component, it would be a good idea to conceive it as a binary executable before to change it into a component. In this chapter we will discuss this idea and also the exceptions. But before starting we examine at first the inspection tools. why ? Because there is a lot of things you cannot do without an inspection tool. In fact there is always an other way : to read the documentation but it can take hours and hours to solve your problem with reading documentation and only ten minutes with an inspection tool.
 
=Java Inspector=
 
=Java Inspector=
Line 42: Line 42:
  
 
I have already presented in this document [[Constructing_Helpers#Reflection_Helper|our own inspector]] but it wasn't a component. Then it was only valuable when writing binary executable, not for components. In this section I will show how to transform it as a component. Because [[Object Inspector|Java Inspector]] is more advanced than my component it is only interesting when using old and inefficient computers where Java runs slowly. But for me it represents the only experience with writing a big component.  
 
I have already presented in this document [[Constructing_Helpers#Reflection_Helper|our own inspector]] but it wasn't a component. Then it was only valuable when writing binary executable, not for components. In this section I will show how to transform it as a component. Because [[Object Inspector|Java Inspector]] is more advanced than my component it is only interesting when using old and inefficient computers where Java runs slowly. But for me it represents the only experience with writing a big component.  
{{Documentation/Caution|The code presented here is not safe. You can see many "FIXME" in the code. At the moment the version is labelled 0.4}}
+
{{Warn|The code presented here is not safe. You can see many "FIXME" in the code. At the moment the version is labelled 0.4}}
  
 
This component is composed with two separate class (at the moment)
 
This component is composed with two separate class (at the moment)
Line 79: Line 79:
 
==General Remarks==
 
==General Remarks==
 
Please read carefully the code and search the "FIXME" to see what the limitations are. If you never press the "invoke" button, all is OK. If you want to see what happens when invoking please read below.
 
Please read carefully the code and search the "FIXME" to see what the limitations are. If you never press the "invoke" button, all is OK. If you want to see what happens when invoking please read below.
{{Documentation/Caution|The "Invoke" button is not safe. Because starting with a Tree selection, I have to parse this selection to retrieve the name of the method. The parsing code provided only works when no argument is present in the method. Don't invoke <code>myInspect</code> for instance because it has an any variable as argument : it will start an exception in  OpenOffice.org}}
+
{{Warn|The "Invoke" button is not safe. Because starting with a Tree selection, I have to parse this selection to retrieve the name of the method. The parsing code provided only works when no argument is present in the method. Don't invoke <code>myInspect</code> for instance because it has an any variable as argument : it will start an exception in  OpenOffice.org}}
{{Documentation/Note|The name of the service is "foo.Counter". It would be better to change it.}}  
+
{{Note|The name of the service is "foo.Counter". It would be better to change it.}}  
{{Documentation/Note|You cannot walk through the tree at the moment. The invoke button is only present for tests.}}
+
{{Note|You cannot walk through the tree at the moment. The invoke button is only present for tests.}}
  
 
=Managing exceptions=
 
=Managing exceptions=
Line 132: Line 132:
 
* [[CompleteAddIn | OOoCalc addin in C++]]
 
* [[CompleteAddIn | OOoCalc addin in C++]]
  
[[Category:Development]]
+
 
 
[[Category:Cpp]]
 
[[Category:Cpp]]
 
[[Category:Uno]]
 
[[Category:Uno]]
 
[[Category:Tutorial]]
 
[[Category:Tutorial]]
 
[[Category:Extensions]]
 
[[Category:Extensions]]
[[Category:Add-In]]
 
[[Category:Add-On]]
 
 
[[Category:Samples]]
 
[[Category:Samples]]

Latest revision as of 22:15, 13 July 2018

Documentation caution.png This chapter is under construction for a while because I don't master all the topics evocated here at the moment. SergeMoutou 12:20, 3 August 2009 (UTC)

Writing components is not as easy as developping binary executable. When an exception occurs in your component a recovery process of your document begins. This process is too long to try some code and correct the errors. When designing a component, it would be a good idea to conceive it as a binary executable before to change it into a component. In this chapter we will discuss this idea and also the exceptions. But before starting we examine at first the inspection tools. why ? Because there is a lot of things you cannot do without an inspection tool. In fact there is always an other way : to read the documentation but it can take hours and hours to solve your problem with reading documentation and only ten minutes with an inspection tool.

Java Inspector

I have already tackled Java Inspector in this document (see here). But we used in fact the addon part of the component because it was called with the corresponding button, not with code. In this section we will discuss how we can use Java Inspector in a component, to put it differently, how to call Java inspector with C++ code ?

Creating the Header Files

Creating header files could be done with exporting the Inspector.uno.rdb with extension manager. This task was easy with old versions (I think before 3.0) because a tree was available in the extension manager and this is no more the case. When done, use the cppumaker tool to create header files. Because the service name is "org.openoffice.InstanceInspector" put the created header files in "<OOo_SDK>/includes/org/openoffice/" folder. You can then use :

// C++
// Listing 1
// Java Inspector
#include <org/openoffice/XInstanceInspector.hpp>

in your component.

Creating the corresponding Service

This is done with :

// C++
// Listing 2
// If you want to use java Inspector
	m_xInspector = Reference< XInstanceInspector > (m_xMCF->createInstanceWithContext( 
			OUString( RTL_CONSTASCII_USTRINGPARAM( "org.openoffice.InstanceInspector" ) ),
			m_xContext),
			UNO_QUERY_THROW );

where you see a member data "m_xInspector" has to be added in your component class. The good place for this code is naturally in the constructor of your component class.

Calling the corresponding Interface

If you want to call and see the Java Inspector Dialog, you have to put a code as follows

// C++
// Listing 3
// Java Introspection
	any <<= somethingToInspect;
// name of the tab : inspector
	m_xInspector->inspect(any,OUString::createFromAscii("Inspector"));        
	xParentNode->appendChild(xChildMutTreeNode);

where you have to adapt the "somethingToInspect".

Our own Inspector

I have already presented in this document our own inspector but it wasn't a component. Then it was only valuable when writing binary executable, not for components. In this section I will show how to transform it as a component. Because Java Inspector is more advanced than my component it is only interesting when using old and inefficient computers where Java runs slowly. But for me it represents the only experience with writing a big component.

Documentation caution.png The code presented here is not safe. You can see many "FIXME" in the code. At the moment the version is labelled 0.4

This component is composed with two separate class (at the moment)

The ReflectionHelper class

This class is composed with two source files. See the corresponding code. This class is under construction particularly the

// C++
// Listing 
void getTypeAndValue(Any toInspect);

method. Its code is running but this method has to be the main entry of the class. And it is also called every time you invoke (see below) and this is not a good thing because it is perturbing the member data of the class. In other word there is a problem of conception here !

The Component

See the corresponding code.

The OOoBasic Code and Result

Calling this component is done with the code as follows :

'Listing 6
REM  *****  BASIC  *****
 
Sub demonstrateSimpleComponent
    Dim oSimpleComponent
	oSimpleComponent = CreateUnoService( "foo.Counter" )
	oSimpleComponent.myInspect(oSimpleComponent)
End Sub

which yields :

Our Inspector dialog created in OOoBasic GUI

When invoking the selected "getSupportedMethodNames()" you see the result in the text control : "LosingFocus" and "Invoke". That means the "Invoke" button is partially working.

General Remarks

Please read carefully the code and search the "FIXME" to see what the limitations are. If you never press the "invoke" button, all is OK. If you want to see what happens when invoking please read below.

Documentation caution.png The "Invoke" button is not safe. Because starting with a Tree selection, I have to parse this selection to retrieve the name of the method. The parsing code provided only works when no argument is present in the method. Don't invoke myInspect for instance because it has an any variable as argument : it will start an exception in OpenOffice.org
Documentation note.png The name of the service is "foo.Counter". It would be better to change it.
Documentation note.png You cannot walk through the tree at the moment. The invoke button is only present for tests.

Managing exceptions

For the first time I want to deal with exception. This problem is not simple when writing component. The question is : what we have to do in the "catch" part of the exception ? When writing binary executable you can print on the terminal screen all what you want. But in a component ? If possible, when writing a component you have to avoid exceptions. But in fact every time you use an OpenOffice Interface you can rise an exception. For instance in my inspector the getXIdlMethodByName(OUString aMethodName) can rise an exception if the aMethodName string is not a correct method name. You have two possibilities to work around :

  • to write your own search of a method name and when not found to make something which is not an exception,
  • to carefuly design your dialog (and the corresponding code) to be almost sure the method name is coming from a "method selection" and not from a user choice.

Because writing new code is never safe the second way is the best in my opinion. But I think it's not always possible to design a dialog to always avoid exception.

TO DO

Transforming a component into a binary executable

As already mentioned, writing a component is a harder task than writing a binary executable. Then a good idea to assist the developement of a component is to transform it at first into a binary executable and when you are gratified with your code to transform it back into a component. We will examine in this section this idea.

The Service Manager Problem

When transforming a component into a binary executable, the first problem is the service manager. The component context allows you to retrieve a com.sun.star.lang.XMultiComponentFactory while a binary executable only works with com.sun.star.lang.XMultiServiceFactory. I have encounter this problem when developping my C++ inspection tool. I don't use the same Service Manager in the The Component Helper and int the Binary Executable Helper even if the task is the same.

TO DO going further...

The Dialog Problem

All the components I imagine today are related to a dialog. I have already presented the C++ Inspector but I can also imagine an automatic tool which starts from a GUI dialog and automaticaly generate all the C++ code for the corresponding component.

That doesn't mean all components have to manage a dialog but we are interested in this section by this situation. The problem of this situation is that I don't know if it is possible to manage dialog in binary executable like in component. Developer's Guide seems to state only components methods can be bound to dialog event but the fact binary executable have to do with registery rises always the question in my head. This is one of the greatest problem I have to solve in the futur, but spending time to solve a problem you don't know if it has a solution is not for today.

TO DO going further...

Reflections on the transformation

The transformation is not always as easy as we can imagine. For instance I have worked in this document many times around the counter : how can I transform the counter into a binary executable ? If the answer is not so simple, is it only because the counter is not an OpenOffice component ? (I mean the counter code doesn't need OpenOffice to run, it only uses the dialog of OpenOffice, then XWindows, Windows or MacOSX could be used instead). When can we really start to call a component an OpenOffice component ? At first a good answer seems to be : when the component uses OpenOffice.org services and interfaces. OK, but if you have a closer look at the counter C++ code, the fact that it has to use a GUI dialog makes it very dependent of OpenOffice.org services and interfaces : how many UNO_QUERY in the code ? Sixteen in the counter with Multi-Page Dialog only in the callHandlerMethod() function. Does that mean the services and interfaces related to Dialog doesn't count ? Reasonably not. Even such a component as the counter has to be labelled OpenOffice.org component : in toher words we have to find a solution to transform it into a binary executable.

TO DO : going further

What I am : a Component or an Add-on ?

In many situations you are unable to say if your code has to belong to a component or to an add-on. It's only because the distinction between both situation is only a terminology notion. In practical components it's a good idea to call them with a menu. Then your component becomes an add-on with no IDL-file. But you can encounter more complex situations. For instance a scriptable component (with IDL file) but with a configuration dialog called with a menu.

TO DO going further ...

Packaging a Dialog and a Dynamic Library in an oxt File

This is the kind of things very important I am not able to manage at the moment. SergeMoutou 14:09, 19 August 2009 (UTC)

Hope to remove this sentence as soon as possible.

Home Page

HomePageCpp.png Return to Document Home page

See also

Personal tools