Difference between revisions of "OOConnect"

From Apache OpenOffice Wiki
Jump to: navigation, search
m
(18 intermediate revisions by one other user not shown)
Line 1: Line 1:
To avoid you to search in the previous chapters we give again our starting code where we insert the new listings given in this chapter. We first give only the main() part :
 
 
<source lang="cpp">
 
<source lang="cpp">
//Listing 1 Again our starting main Code
+
// Listing 0
int main( ) {
+
// C++
//retrieve an instance of the remote service manager
+
#include <stdio.h>
    Reference< XMultiServiceFactory > rOfficeServiceManager;
+
#include <cppuhelper/bootstrap.hxx>
    rOfficeServiceManager = ooConnect();
+
#include <com/sun/star/bridge/XUnoUrlResolver.hpp>
    if( rOfficeServiceManager.is() ){
+
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
        printf( "Connected sucessfully to the office\n" );
+
// added
    }
+
#include <com/sun/star/frame/XComponentLoader.hpp>
  
//get the desktop service using createInstance returns an XInterface type
+
using namespace com::sun::star::uno;
    Reference< XInterface  > Desktop = rOfficeServiceManager->createInstance(
+
using namespace com::sun::star::lang;
    OUString::createFromAscii( "com.sun.star.frame.Desktop" ));
+
using namespace com::sun::star::bridge;
 +
// added
 +
using namespace com::sun::star::frame;
  
//query for the XComponentLoader interface
+
using namespace rtl;
    Reference< XComponentLoader > rComponentLoader (Desktop, UNO_QUERY);
+
using namespace cppu;
    if( rComponentLoader.is() ){
+
        printf( "XComponentloader successfully instanciated\n" );
+
    }
+
  
//get an instance of the spreadsheet
+
// a procedure for what the so called boostrap
    Reference< XComponent > xcomponent = rComponentLoader->loadComponentFromURL(
+
Reference< XMultiServiceFactory > ooConnect(){
OUString::createFromAscii("private:factory/scalc"),
+
  // create the initial component context
        OUString::createFromAscii("_blank"),
+
  Reference< XComponentContext > rComponentContext =  
        0,
+
defaultBootstrap_InitialComponentContext();
        Sequence < ::com::sun::star::beans::PropertyValue >());
+
 
// add code here
+
  // retrieve the servicemanager from the context
    return 0;
+
  Reference< XMultiComponentFactory > rServiceManager =
 +
rComponentContext->getServiceManager();
 +
 
 +
  // instantiate a sample service with the servicemanager.
 +
  Reference< XInterface > rInstance =  rServiceManager->createInstanceWithContext(
 +
        OUString::createFromAscii("com.sun.star.bridge.UnoUrlResolver" ),rComponentContext );
 +
 
 +
  // Query for the XUnoUrlResolver interface
 +
  Reference< XUnoUrlResolver > rResolver( rInstance, UNO_QUERY );
 +
  if( ! rResolver.is() ){
 +
      printf( "Error: Couldn't instantiate com.sun.star.bridge.UnoUrlResolver service\n" );
 +
      return NULL;
 +
  }
 +
  try {
 +
      // resolve the uno-url
 +
      rInstance = rResolver->resolve( OUString::createFromAscii(
 +
        "uno:socket,host=localhost,port=8100;urp;StarOffice.ServiceManager" ) );
 +
 
 +
      if( ! rInstance.is() ){
 +
        printf( "StarOffice.ServiceManager is not exported from remote counterpart\n" );
 +
        return NULL;
 +
      }
 +
 
 +
      // query for the simpler XMultiServiceFactory interface, sufficient for scripting
 +
      Reference< XMultiServiceFactory > rOfficeServiceManager (rInstance, UNO_QUERY);
 +
 
 +
      if( ! rOfficeServiceManager.is() ){
 +
            printf( "XMultiServiceFactory interface is not exported for StarOffice.ServiceManager\n" );
 +
            return NULL;
 +
        }     
 +
        return rOfficeServiceManager;
 +
  }
 +
  catch( Exception &e ){
 +
      OString o = OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US );
 +
      printf( "Error: %s\n", o.pData->buffer );
 +
      return NULL;
 +
  }
 +
  return NULL;
 
}
 
}
 
</source>
 
</source>
  
Remember each time you query for an interface you have to add code lines (if they don't exist) in the source code and a line in the makefile. I will generally add comments to prevent omissions. You can find more explanations [[IDL_Files_and_Cpp#IDL__and_C.2B.2B|here]] (if you are not a beginner).
+
'''Note : '''You have eventually to change "port=8100" into "port=2083" for recent SDK (after 2.X).
  
{{Documentation/Note|'''Important Note''' : The more important point in the compilation chain of the examples below is that <code>cppumaker</code> will construct every hpp and hdl files you need in your application. The SDK is not provinding every hpp files but you have to construt them starting from IDL files provided by SDK.}}
+
You can have a look at :
{{Documentation/Note|It is possible to construct all the hpp files when installing the SDK as [[SDKInstallation#Other_Windows_Installations_descriptions|mentioned in a Windows]] installation. It's also possible with other OS. In doing so, you don't need modifying your MakeFile.}}
+
# <idl>com.sun.star.uno.XComponentContext</idl>, <idl>com.sun.star.lang.XMultiComponentFactory</idl>, <idl>com.sun.star.uno.XInterface</idl>, <idl>com.sun.star.bridge.XUnoUrlResolver</idl> and <idl>com.sun.star.lang.XMultiServiceFactory</idl> interfaces,
 +
# <idl>com.sun.star.bridge.UnoUrlResolver</idl> service
 +
[[Category:API]]

Revision as of 19:42, 20 March 2010

// Listing 0
// C++
#include <stdio.h>
#include <cppuhelper/bootstrap.hxx>
#include <com/sun/star/bridge/XUnoUrlResolver.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
// added
#include <com/sun/star/frame/XComponentLoader.hpp>
 
using namespace com::sun::star::uno;
using namespace com::sun::star::lang;
using namespace com::sun::star::bridge;
// added
using namespace com::sun::star::frame;
 
using namespace rtl;
using namespace cppu;
 
// a procedure for what the so called boostrap
Reference< XMultiServiceFactory > ooConnect(){
   // create the initial component context
   Reference< XComponentContext > rComponentContext = 
				defaultBootstrap_InitialComponentContext();
 
   // retrieve the servicemanager from the context
   Reference< XMultiComponentFactory > rServiceManager = 
				rComponentContext->getServiceManager();
 
   // instantiate a sample service with the servicemanager.
   Reference< XInterface > rInstance =  rServiceManager->createInstanceWithContext(
         OUString::createFromAscii("com.sun.star.bridge.UnoUrlResolver" ),rComponentContext );
 
   // Query for the XUnoUrlResolver interface
   Reference< XUnoUrlResolver > rResolver( rInstance, UNO_QUERY );
   if( ! rResolver.is() ){
      printf( "Error: Couldn't instantiate com.sun.star.bridge.UnoUrlResolver service\n" );
      return NULL;
   }
   try {
      // resolve the uno-url
      rInstance = rResolver->resolve( OUString::createFromAscii(
         "uno:socket,host=localhost,port=8100;urp;StarOffice.ServiceManager" ) );
 
      if( ! rInstance.is() ){
         printf( "StarOffice.ServiceManager is not exported from remote counterpart\n" );
         return NULL;
      }
 
      // query for the simpler XMultiServiceFactory interface, sufficient for scripting
      Reference< XMultiServiceFactory > rOfficeServiceManager (rInstance, UNO_QUERY);
 
      if( ! rOfficeServiceManager.is() ){
            printf( "XMultiServiceFactory interface is not exported for StarOffice.ServiceManager\n" );
            return NULL;
        }       
        return rOfficeServiceManager;
   }
   catch( Exception &e ){
      OString o = OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US );
      printf( "Error: %s\n", o.pData->buffer );
      return NULL;
   }
   return NULL;
}

Note : You have eventually to change "port=8100" into "port=2083" for recent SDK (after 2.X).

You can have a look at :

  1. com.sun.star.uno.XComponentContext, com.sun.star.lang.XMultiComponentFactory, com.sun.star.uno.XInterface, com.sun.star.bridge.XUnoUrlResolver and com.sun.star.lang.XMultiServiceFactory interfaces,
  2. com.sun.star.bridge.UnoUrlResolver service
Personal tools