xref: /aoo41x/main/extensions/test/pgp/TestPGP.java (revision cdf0e10c)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir 
29*cdf0e10cSrcweir import java.io.IOException;
30*cdf0e10cSrcweir 
31*cdf0e10cSrcweir import com.sun.star.beans.PropertyValue;
32*cdf0e10cSrcweir import com.sun.star.beans.PropertyState;
33*cdf0e10cSrcweir 
34*cdf0e10cSrcweir import com.sun.star.bridge.XBridge;
35*cdf0e10cSrcweir 
36*cdf0e10cSrcweir //  import com.sun.star.comp.bootstrap.Bootstrap;
37*cdf0e10cSrcweir 
38*cdf0e10cSrcweir import com.sun.star.connection.XConnector;
39*cdf0e10cSrcweir import com.sun.star.connection.XConnection;
40*cdf0e10cSrcweir 
41*cdf0e10cSrcweir import com.sun.star.io.BufferSizeExceededException;
42*cdf0e10cSrcweir import com.sun.star.io.NotConnectedException;
43*cdf0e10cSrcweir import com.sun.star.io.XInputStream;
44*cdf0e10cSrcweir import com.sun.star.io.XOutputStream;
45*cdf0e10cSrcweir 
46*cdf0e10cSrcweir import com.sun.star.frame.XComponentLoader;
47*cdf0e10cSrcweir 
48*cdf0e10cSrcweir import com.sun.star.lang.XComponent;
49*cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory;
50*cdf0e10cSrcweir import com.sun.star.lang.XServiceInfo;
51*cdf0e10cSrcweir 
52*cdf0e10cSrcweir import com.sun.star.text.XSimpleText;
53*cdf0e10cSrcweir import com.sun.star.text.XText;
54*cdf0e10cSrcweir import com.sun.star.text.XTextCursor;
55*cdf0e10cSrcweir import com.sun.star.text.XTextDocument;
56*cdf0e10cSrcweir import com.sun.star.text.XTextRange;
57*cdf0e10cSrcweir 
58*cdf0e10cSrcweir import com.sun.star.uno.IBridge;
59*cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime;
60*cdf0e10cSrcweir import com.sun.star.uno.XInterface;
61*cdf0e10cSrcweir import com.sun.star.uno.XNamingService;
62*cdf0e10cSrcweir import com.sun.star.container.*;
63*cdf0e10cSrcweir import com.sun.star.lang.*;
64*cdf0e10cSrcweir 
65*cdf0e10cSrcweir import com.sun.star.pgp.*;
66*cdf0e10cSrcweir 
67*cdf0e10cSrcweir 
68*cdf0e10cSrcweir 
69*cdf0e10cSrcweir public class TestPGP {
70*cdf0e10cSrcweir 
71*cdf0e10cSrcweir 
72*cdf0e10cSrcweir 	static void doSomething(Object r) throws com.sun.star.uno.Exception, IOException, Exception {
73*cdf0e10cSrcweir 		XNamingService rName = (XNamingService)UnoRuntime.queryInterface(XNamingService.class, r);
74*cdf0e10cSrcweir 
75*cdf0e10cSrcweir 		if(rName != null) {
76*cdf0e10cSrcweir 			System.err.println("got the remote naming service !");
77*cdf0e10cSrcweir 			Object rXsmgr = rName.getRegisteredObject("StarOffice.ServiceManager");
78*cdf0e10cSrcweir 
79*cdf0e10cSrcweir 			XMultiServiceFactory rSmgr = (XMultiServiceFactory)UnoRuntime.queryInterface(XMultiServiceFactory.class, rXsmgr);
80*cdf0e10cSrcweir 			if(rSmgr != null) {
81*cdf0e10cSrcweir 				System.err.println("got the remote service manager !");
82*cdf0e10cSrcweir 			}
83*cdf0e10cSrcweir 
84*cdf0e10cSrcweir 			XSet set= (XSet)UnoRuntime.queryInterface(XSet.class, rSmgr);
85*cdf0e10cSrcweir 			if( set == null) {
86*cdf0e10cSrcweir 				System.err.println(" couldn't get XSet from ServiceFactory");
87*cdf0e10cSrcweir 				return;
88*cdf0e10cSrcweir 			}
89*cdf0e10cSrcweir //  			try{
90*cdf0e10cSrcweir 			SimplePGPMailerFactoryReg mailerReg= new SimplePGPMailerFactoryReg();
91*cdf0e10cSrcweir 			XSingleServiceFactory factory= mailerReg.getServiceFactory(
92*cdf0e10cSrcweir 				"com.sun.star.pgp.SimplePGPMailerImpl", rSmgr, null, null);
93*cdf0e10cSrcweir 
94*cdf0e10cSrcweir 			if( factory == null) {
95*cdf0e10cSrcweir 				System.err.println("couldn't create PGP factory !");
96*cdf0e10cSrcweir 				return;
97*cdf0e10cSrcweir 			}
98*cdf0e10cSrcweir 			set.insert(factory );
99*cdf0e10cSrcweir 			System.err.println("PGP factory inserted into service manager");
100*cdf0e10cSrcweir 
101*cdf0e10cSrcweir //  			}catch(Exception e ){
102*cdf0e10cSrcweir //  				System.err.println( "exception caught in TestPGP");
103*cdf0e10cSrcweir //  			}
104*cdf0e10cSrcweir 
105*cdf0e10cSrcweir 		}
106*cdf0e10cSrcweir 	}
107*cdf0e10cSrcweir 
108*cdf0e10cSrcweir 
109*cdf0e10cSrcweir 
110*cdf0e10cSrcweir 	static String neededServices[] = new String[] {
111*cdf0e10cSrcweir 		"com.sun.star.comp.servicemanager.ServiceManager",
112*cdf0e10cSrcweir 		"com.sun.star.comp.loader.JavaLoader",
113*cdf0e10cSrcweir 		"com.sun.star.comp.connections.Connector",
114*cdf0e10cSrcweir   		"com.sun.star.comp.connections.Acceptor"
115*cdf0e10cSrcweir 	};
116*cdf0e10cSrcweir 
117*cdf0e10cSrcweir 	public static void main(String argv[]) throws Exception {
118*cdf0e10cSrcweir 		if(argv.length != 1)	{
119*cdf0e10cSrcweir 			System.err.println("usage : testoffice protocol:host:port");
120*cdf0e10cSrcweir 			System.exit(-1);
121*cdf0e10cSrcweir 		}
122*cdf0e10cSrcweir 
123*cdf0e10cSrcweir //  		try {
124*cdf0e10cSrcweir 			com.sun.star.comp.servicemanager.ServiceManager smgr = new com.sun.star.comp.servicemanager.ServiceManager();
125*cdf0e10cSrcweir 			smgr.addFactories(neededServices, null);
126*cdf0e10cSrcweir 
127*cdf0e10cSrcweir   			XConnector  xConnector  = (XConnector)smgr.createInstance("com.sun.star.connection.Connector");
128*cdf0e10cSrcweir   			XConnection xConnection = xConnector.connect(argv[0]);
129*cdf0e10cSrcweir 
130*cdf0e10cSrcweir 			String rootOid = "classic_uno";
131*cdf0e10cSrcweir   			IBridge iBridge = UnoRuntime.getBridgeByName("java", null, "remote", null, new Object[]{"iiop", xConnection, null});
132*cdf0e10cSrcweir 
133*cdf0e10cSrcweir 			Object rInitialObject = iBridge.mapInterfaceFrom(rootOid, XInterface.class);
134*cdf0e10cSrcweir //  			Object rInitialObject = xBridge.getInstance("NamingService");
135*cdf0e10cSrcweir 
136*cdf0e10cSrcweir 			if(rInitialObject != null) {
137*cdf0e10cSrcweir 				System.err.println("got the remote object");
138*cdf0e10cSrcweir 				doSomething(rInitialObject);
139*cdf0e10cSrcweir 			}
140*cdf0e10cSrcweir //  		}
141*cdf0e10cSrcweir //  		catch (Exception exception) {
142*cdf0e10cSrcweir //  			System.err.println("Exception thrown:" + exception);
143*cdf0e10cSrcweir //  		}
144*cdf0e10cSrcweir 	}
145*cdf0e10cSrcweir }
146*cdf0e10cSrcweir 
147