1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
|
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
package com.sun.star.cmp;
import com.sun.star.io.XPersistObject;
import com.sun.star.io.XObjectInputStream;
import com.sun.star.io.XObjectOutputStream;
import com.sun.star.beans.XPropertySet;
import com.sun.star.beans.XPropertySetInfo;
import com.sun.star.beans.Property;
import com.sun.star.beans.XPropertyChangeListener;
import com.sun.star.beans.XVetoableChangeListener;
import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.lang.XSingleServiceFactory;
import com.sun.star.lang.XServiceInfo;
import com.sun.star.uno.XInterface;
import com.sun.star.lang.XTypeProvider;
import com.sun.star.registry.XRegistryKey;
import com.sun.star.comp.loader.FactoryHelper;
import com.sun.star.uno.Type;
/**
* Class MyPersistObject implements an XPersistObject, XServiceInfo,
* XTypeProvider and XPropertySet.
*
* Warning: In XPropertySet only the following methods that are
* used for testing are really implemented:
*
* - public XPropertySetInfo getPropertySetInfo()
* - public void setPropertyValue(String property, Object value)
* - public Object getPropertyValue(String property)
*/
public class MyPersistObject implements XPersistObject, XTypeProvider,
XServiceInfo, XPropertySet {
private class MyPropertySetInfo implements XPropertySetInfo {
Property[] _props;
public MyPropertySetInfo(Property[] props) {
_props = props;
}
public Property[] getProperties() {
return _props;
}
public Property getPropertyByName(String name) {
int i = getPropertyIndexByName(name);
return i>0?_props[i]:null;
}
public int getPropertyIndexByName(String name) {
for ( int i=0; i<_props.length; i++ )
if (name.equals(_props[i].Name))
return i;
return -1;
}
public boolean hasPropertyByName(String name) {
int i = getPropertyIndexByName(name);
return i>0;
}
}
private static final boolean verbose = false;
public static final String __serviceName =
"com.sun.star.cmp.PersistObject";
public static final String __implName =
"com.sun.star.cmp.MyPersistObject";
// lots of props to write
Property[] props;
private byte by;
private int i;
private char c;
private double d;
private float f;
private short s;
private String st;
// property set info
XPropertySetInfo xInfo;
/**
* Constructor: sets all properties
**/
public MyPersistObject() {
int prop_count = 7;
props = new Property[prop_count];
for (int i=0; i<prop_count; i++ ) {
props[i] = new Property();
}
by = 1;
props[0].Name = "byte";
i = 3;
props[1].Name = "int";
c = 'c';
props[2].Name = "char";
d = 3.142;
props[3].Name = "double";
f = 2.718f;
props[4].Name = "float";
s = 1;
props[5].Name = "short";
st = "Though this be madness, yet there is method in 't.";
props[6].Name = "String";
xInfo = new MyPropertySetInfo(props);
}
/**
* This function provides the service name
* @return the service name
* @see com.sun.star.io.XPersistObject
*/
public String getServiceName() {
if ( verbose ) {
System.out.println("get service name");
}
return __serviceName;
}
/**
* Function reads properties from this input stream
* @param inStream the input stream
* @see com.sun.star.io.XPersistObject
*/
public void read(XObjectInputStream inStream)
throws com.sun.star.io.IOException {
s = inStream.readShort();
i = inStream.readLong();
by = inStream.readByte();
c = inStream.readChar();
d = inStream.readDouble();
f = inStream.readFloat();
st = inStream.readUTF();
if ( verbose )
System.out.println("read called" + s + " " + i + " " + st);
}
/**
* Function writes properties on this output stream
* @param outStream the output stream
* @see com.sun.star.io.XPersistObject
*/
public void write(XObjectOutputStream outStream)
throws com.sun.star.io.IOException {
if ( verbose )
System.out.println("write called");
outStream.writeShort(s);
outStream.writeLong(i);
outStream.writeByte(by);
outStream.writeChar(c);
outStream.writeDouble(d);
outStream.writeFloat(f);
outStream.writeUTF(st);
}
/**
* Function to get information about the property set.
* @return The information
* @see com.sun.star.io.XPropertySet
*/
public XPropertySetInfo getPropertySetInfo() {
return xInfo;
}
/**
* Set a property value
* @param property The name of the property.
* @param value The new value of the property.
* @see com.sun.star.io.XPropertySet
*/
public void setPropertyValue(String property, Object value) {
if ( property.equals(props[0].Name))
by = ((Byte)value).byteValue();
if ( property.equals(props[1].Name))
i = ((Integer)value).intValue();
if ( property.equals(props[2].Name))
c = ((Character)value).charValue();
if ( property.equals(props[3].Name))
d = ((Double)value).doubleValue();
if ( property.equals(props[4].Name))
f = ((Float)value).floatValue();
if ( property.equals(props[5].Name))
s = ((Short)value).shortValue();
if ( property.equals(props[6].Name))
st = (String)value;
}
/**
* Get a property value
* @param property The property name.
* @return The value of the property.
* @see com.sun.star.io.XPropertySet
*/
public Object getPropertyValue(String property) {
if ( property.equals(props[0].Name))
return Byte.valueOf(by);
if ( property.equals(props[1].Name))
return Integer.valueOf(i);
if ( property.equals(props[2].Name))
return new Character(c);
if ( property.equals(props[3].Name))
return new Double(d);
if ( property.equals(props[4].Name))
return new Float(f);
if ( property.equals(props[5].Name))
return Short.valueOf(s);
if ( property.equals(props[6].Name))
return st;
return new Object();
}
/**
* Empty implementation: not needed for tests.
*/
public void addPropertyChangeListener(String aPropertyName,
XPropertyChangeListener xListener ) {}
/**
* Empty implementation: not needed for tests.
*/
public void removePropertyChangeListener(String aPropertyName,
XPropertyChangeListener aListener ) {}
/**
* Empty implementation: not needed for tests.
*/
public void addVetoableChangeListener(String PropertyName,
XVetoableChangeListener aListener ) {}
/**
* Empty implementation: not needed for tests.
*/
public void removeVetoableChangeListener(String PropertyName,
XVetoableChangeListener aListener ) {}
/**
* Get all implemented types of this class.
* @return An array of implemented interface types.
* @see com.sun.star.lang.XTypeProvider
*/
public Type[] getTypes() {
Type[] type = new Type[5];
type[0] = new Type(XInterface.class);
type[1] = new Type(XTypeProvider.class);
type[2] = new Type(XPersistObject.class);
type[3] = new Type(XServiceInfo.class);
type[4] = new Type(XPropertySet.class);
return type;
}
/**
* Get the implementation id.
* @return An empty implementation id.
* @see com.sun.star.lang.XTypeProvider
*/
public byte[] getImplementationId() {
return new byte[0];
}
/**
* Function for reading the implementation name.
*
* @return the implementation name
* @see com.sun.star.lang.XServiceInfo
*/
public String getImplementationName() {
return __implName;
}
/**
* Does the implementation support this service?
*
* @param serviceName The name of the service in question
* @return true, if service is supported, false otherwise
* @see com.sun.star.lang.XServiceInfo
*/
public boolean supportsService(String serviceName) {
return serviceName.equals(__serviceName);
}
/**
* Function for reading all supported services
*
* @return An aaray with all supported service names
* @see com.sun.star.lang.XServiceInfo
*/
public String[] getSupportedServiceNames() {
String[] supServiceNames = {__serviceName};
return supServiceNames;
}
/**
*
* Gives a factory for creating the service.
* This method is called by the <code>JavaLoader</code>
* <p>
* @return returns a <code>XSingleServiceFactory</code> for creating the component
* @param implName the name of the implementation for which a service is desired
* @param multiFactory the service manager to be used if needed
* @param regKey the registryKey
* @see com.sun.star.comp.loader.JavaLoader
*/
public static XSingleServiceFactory __getServiceFactory(String implName,
XMultiServiceFactory multiFactory, XRegistryKey regKey)
{
XSingleServiceFactory xSingleServiceFactory = null;
if (implName.equals(MyPersistObject.class.getName()))
xSingleServiceFactory = FactoryHelper.getServiceFactory(
MyPersistObject.class, __serviceName, multiFactory, regKey);
return xSingleServiceFactory;
}
/**
* Writes the service information into the given registry key.
* This method is called by the <code>JavaLoader</code>
* <p>
* @return returns true if the operation succeeded
* @param regKey the registryKey
* @see com.sun.star.comp.loader.JavaLoader
*/
public static boolean __writeRegistryServiceInfo(XRegistryKey regKey) {
return FactoryHelper.writeRegistryServiceInfo(MyPersistObject.class.getName(),
__serviceName, regKey);
}
} // finish class MyPersistObject
|