2001-09-18 08:13:39 +00:00
|
|
|
// Lotus Notes Domino API
|
|
|
|
import lotus.domino.NotesThread;
|
|
|
|
import lotus.domino.Session;
|
|
|
|
import lotus.domino.Database;
|
|
|
|
import lotus.domino.DocumentCollection;
|
|
|
|
import lotus.domino.Document;
|
|
|
|
import lotus.domino.NotesFactory;
|
|
|
|
|
|
|
|
// OpenOffice.org API
|
|
|
|
import com.sun.star.bridge.XUnoUrlResolver;
|
|
|
|
import com.sun.star.lang.XComponent;
|
2001-12-12 13:49:02 +00:00
|
|
|
import com.sun.star.lang.XMultiComponentFactory;
|
|
|
|
import com.sun.star.uno.XComponentContext;
|
2001-09-18 08:13:39 +00:00
|
|
|
import com.sun.star.uno.UnoRuntime;
|
|
|
|
import com.sun.star.frame.XComponentLoader;
|
|
|
|
import com.sun.star.beans.PropertyValue;
|
2001-12-12 13:49:02 +00:00
|
|
|
import com.sun.star.beans.XPropertySet;
|
2001-09-18 08:13:39 +00:00
|
|
|
import com.sun.star.sheet.XSpreadsheetDocument;
|
|
|
|
import com.sun.star.sheet.XSpreadsheets;
|
|
|
|
import com.sun.star.sheet.XSpreadsheet;
|
|
|
|
import com.sun.star.container.XIndexAccess;
|
|
|
|
import com.sun.star.table.XCell;
|
|
|
|
|
|
|
|
/** This class creates an OpenOffice.org Calc spreadsheet document and fills it
|
|
|
|
* with existing values of documents from a Lotus Notes database.
|
|
|
|
*/
|
|
|
|
public class NotesAccess implements Runnable {
|
2001-11-16 11:49:34 +00:00
|
|
|
/** Connection to the office.
|
|
|
|
*/
|
2002-12-20 11:52:10 +00:00
|
|
|
static String sOfficeConnection = "uno:socket,host=localhost,port=8100;urp;StarOffice.ServiceManager";
|
2001-11-16 11:49:34 +00:00
|
|
|
|
2001-09-18 08:13:39 +00:00
|
|
|
/** Host server of the Domino Directory.
|
|
|
|
*/
|
2001-11-16 11:49:34 +00:00
|
|
|
static String stringHost = "";
|
2001-09-18 08:13:39 +00:00
|
|
|
|
|
|
|
/** User in the host's Domino Directory.
|
|
|
|
*/
|
2001-11-16 11:49:34 +00:00
|
|
|
static String stringUser = "";
|
2001-09-18 08:13:39 +00:00
|
|
|
|
|
|
|
/** Password for the user in the host's Domino Directory.
|
|
|
|
*/
|
2001-11-16 11:49:34 +00:00
|
|
|
static String stringPassword = "";
|
|
|
|
|
|
|
|
/** Database with documents to get data from.
|
|
|
|
*/
|
|
|
|
static String stringDatabase = "";
|
2001-09-18 08:13:39 +00:00
|
|
|
|
|
|
|
/** Reading the arguments and constructing the thread.
|
|
|
|
* @param argv Holding values for the host, user, and the password of the user.
|
|
|
|
*/
|
2001-11-16 11:49:34 +00:00
|
|
|
public static void main( String args[] ) {
|
2001-09-18 08:13:39 +00:00
|
|
|
Thread thread;
|
|
|
|
|
2002-12-20 11:52:10 +00:00
|
|
|
if ( args.length < 4 ) {
|
2001-11-16 11:49:34 +00:00
|
|
|
System.out.println(
|
|
|
|
"usage: java -classpath .;<Office path>/program/classes/jurt.jar;" +
|
|
|
|
"<Office path>/program/classes/ridl.jar;" +
|
|
|
|
"<Office path>/program/classes/sandbox.jar;" +
|
|
|
|
"<Office path>/program/classes/unoil.jar;" +
|
|
|
|
"<Office path>/program/classes/juh.jar " +
|
2002-12-20 11:52:10 +00:00
|
|
|
"NotesAccess \"<Domino Host>\" \"<User>\" " +
|
|
|
|
"\"<Password>\" \"<Database>\" [\"<Connection>\"]" );
|
2001-11-16 11:49:34 +00:00
|
|
|
System.out.println( "\ne.g.:" );
|
|
|
|
System.out.println(
|
|
|
|
"java -classpath .;d:/office60/program/classes/jurt.jar;" +
|
|
|
|
"d:/office60/program/classes/ridl.jar;" +
|
|
|
|
"d:/office60/program/classes/sandbox.jar;" +
|
|
|
|
"d:/office60/program/classes/unoil.jar; " +
|
|
|
|
"d:/office60/program/classes/juh.jar " +
|
2002-12-20 11:52:10 +00:00
|
|
|
"NotesAccess \"\" \"\" \"\" \"Stocks.nsf\"" );
|
2001-11-16 11:49:34 +00:00
|
|
|
System.exit( 1 );
|
|
|
|
}
|
|
|
|
|
2002-12-20 11:52:10 +00:00
|
|
|
// It is possible to use a different connection string, passed as argument
|
|
|
|
if ( args.length == 2 ) {
|
2003-02-28 16:41:28 +00:00
|
|
|
sOfficeConnection = args[1];
|
2002-12-20 11:52:10 +00:00
|
|
|
}
|
|
|
|
|
2001-11-16 11:49:34 +00:00
|
|
|
if ( !args[ 1 ].trim().equals( "" ) ) {
|
|
|
|
stringHost = args[ 1 ].trim();
|
|
|
|
}
|
|
|
|
if ( !args[ 2 ].trim().equals( "" ) ) {
|
|
|
|
stringUser = args[ 2 ].trim();
|
|
|
|
}
|
|
|
|
stringPassword = args[ 3 ].trim();
|
|
|
|
stringDatabase = args[ 4 ].trim();
|
|
|
|
|
|
|
|
if ( stringHost.equals( "" ) ) {
|
2001-09-18 08:13:39 +00:00
|
|
|
// Initializing.
|
|
|
|
NotesAccess notesaccess = new NotesAccess();
|
|
|
|
|
|
|
|
// Allowing only local calls to the Domino classes.
|
|
|
|
thread = new NotesThread( ( Runnable ) notesaccess );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Extracting the host, user, and password.
|
2001-11-16 11:49:34 +00:00
|
|
|
NotesAccess notesaccess = new NotesAccess();
|
2001-09-18 08:13:39 +00:00
|
|
|
|
|
|
|
// Allowing remote calls to the Domino classes.
|
|
|
|
thread = new Thread( ( Runnable ) notesaccess );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Starting the thread.
|
|
|
|
thread.start();
|
|
|
|
}
|
|
|
|
|
|
|
|
/** This is the default constructor without arguments.
|
|
|
|
*/
|
|
|
|
public NotesAccess() {
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Reading all documents from the given database and writing the data to
|
|
|
|
* an OpenOffice.org Calc spreadsheet document.
|
|
|
|
*/
|
|
|
|
public void run() {
|
|
|
|
try {
|
2001-12-12 13:49:02 +00:00
|
|
|
/* Bootstraps a component context with the jurt base components
|
|
|
|
registered. Component context to be granted to a component for running.
|
|
|
|
Arbitrary values can be retrieved from the context. */
|
|
|
|
XComponentContext xcomponentcontext =
|
|
|
|
com.sun.star.comp.helper.Bootstrap.createInitialComponentContext( null );
|
|
|
|
|
|
|
|
/* Gets the service manager instance to be used (or null). This method has
|
|
|
|
been added for convenience, because the service manager is a often used
|
|
|
|
object. */
|
|
|
|
XMultiComponentFactory xmulticomponentfactory =
|
|
|
|
xcomponentcontext.getServiceManager();
|
2001-09-18 08:13:39 +00:00
|
|
|
|
|
|
|
/* Creates an instance of the component UnoUrlResolver which
|
|
|
|
supports the services specified by the factory. */
|
2001-12-12 13:49:02 +00:00
|
|
|
Object objectUrlResolver =
|
|
|
|
xmulticomponentfactory.createInstanceWithContext(
|
|
|
|
"com.sun.star.bridge.UnoUrlResolver", xcomponentcontext );
|
2001-09-18 08:13:39 +00:00
|
|
|
|
|
|
|
// Create a new url resolver
|
|
|
|
XUnoUrlResolver xurlresolver = ( XUnoUrlResolver )
|
|
|
|
UnoRuntime.queryInterface( XUnoUrlResolver.class,
|
|
|
|
objectUrlResolver );
|
|
|
|
|
|
|
|
// Resolves an object that is specified as follow:
|
|
|
|
// uno:<connection description>;<protocol description>;<initial object name>
|
2002-12-20 11:52:10 +00:00
|
|
|
Object objectInitial = xurlresolver.resolve( sOfficeConnection );
|
2001-09-18 08:13:39 +00:00
|
|
|
|
|
|
|
// Create a service manager from the initial object
|
2001-12-12 13:49:02 +00:00
|
|
|
xmulticomponentfactory = ( XMultiComponentFactory )
|
|
|
|
UnoRuntime.queryInterface( XMultiComponentFactory.class, objectInitial );
|
|
|
|
|
|
|
|
// Query for the XPropertySet interface.
|
|
|
|
XPropertySet xpropertysetMultiComponentFactory = ( XPropertySet )
|
|
|
|
UnoRuntime.queryInterface( XPropertySet.class, xmulticomponentfactory );
|
|
|
|
|
|
|
|
// Get the default context from the office server.
|
|
|
|
Object objectDefaultContext =
|
|
|
|
xpropertysetMultiComponentFactory.getPropertyValue( "DefaultContext" );
|
|
|
|
|
|
|
|
// Query for the interface XComponentContext.
|
|
|
|
xcomponentcontext = ( XComponentContext ) UnoRuntime.queryInterface(
|
|
|
|
XComponentContext.class, objectDefaultContext );
|
2001-09-18 08:13:39 +00:00
|
|
|
|
|
|
|
/* A desktop environment contains tasks with one or more
|
|
|
|
frames in which components can be loaded. Desktop is the
|
|
|
|
environment for components which can instanciate within
|
|
|
|
frames. */
|
|
|
|
XComponentLoader xcomponentloader = ( XComponentLoader )
|
|
|
|
UnoRuntime.queryInterface( XComponentLoader.class,
|
2001-12-12 13:49:02 +00:00
|
|
|
xmulticomponentfactory.createInstanceWithContext(
|
|
|
|
"com.sun.star.frame.Desktop", xcomponentcontext ) );
|
2001-09-18 08:13:39 +00:00
|
|
|
|
|
|
|
// Load a Writer document, which will be automaticly displayed
|
|
|
|
XComponent xcomponent = xcomponentloader.loadComponentFromURL(
|
|
|
|
"private:factory/scalc", "_blank", 0,
|
|
|
|
new PropertyValue[0] );
|
|
|
|
|
|
|
|
// Querying for the interface XSpreadsheetDocument
|
|
|
|
XSpreadsheetDocument xspreadsheetdocument =
|
|
|
|
( XSpreadsheetDocument ) UnoRuntime.queryInterface(
|
|
|
|
XSpreadsheetDocument.class, xcomponent );
|
|
|
|
|
|
|
|
// Getting all sheets from the spreadsheet document.
|
|
|
|
XSpreadsheets xspreadsheets = xspreadsheetdocument.getSheets() ;
|
|
|
|
|
|
|
|
// Querying for the interface XIndexAccess.
|
|
|
|
XIndexAccess xindexaccess = ( XIndexAccess ) UnoRuntime.queryInterface(
|
|
|
|
XIndexAccess.class, xspreadsheets );
|
|
|
|
|
|
|
|
// Getting the first spreadsheet.
|
2003-02-28 16:41:28 +00:00
|
|
|
XSpreadsheet xspreadsheet = ( XSpreadsheet ) UnoRuntime.queryInterface(
|
|
|
|
XSpreadsheet.class, xindexaccess.getByIndex( 0 ));
|
2001-09-18 08:13:39 +00:00
|
|
|
|
|
|
|
Session session;
|
2002-07-05 09:54:17 +00:00
|
|
|
if ( !stringHost.equals( "" ) ) {
|
2001-09-18 08:13:39 +00:00
|
|
|
// Creating a Notes session for remote calls to the Domino classes.
|
|
|
|
session = NotesFactory.createSession( stringHost, stringUser,
|
|
|
|
stringPassword );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Creating a Notes session for only local calls to the Domino classes.
|
|
|
|
session = NotesFactory.createSession();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Getting the specified Notes database.
|
2001-11-16 11:49:34 +00:00
|
|
|
Database database = session.getDatabase( "", stringDatabase );
|
2001-09-18 08:13:39 +00:00
|
|
|
|
|
|
|
// Getting a collection of all documents from the database.
|
|
|
|
DocumentCollection documentcollection = database.getAllDocuments();
|
|
|
|
|
|
|
|
// Getting the first document from the database
|
|
|
|
Document document = documentcollection.getFirstDocument();
|
|
|
|
|
|
|
|
// Start to write to cells at this row.
|
|
|
|
int intRowToStart = 0;
|
|
|
|
|
|
|
|
// The current row.
|
|
|
|
int intRow = intRowToStart;
|
|
|
|
|
|
|
|
// The current column.
|
|
|
|
int intColumn = 0;
|
|
|
|
|
|
|
|
// Process all documents
|
|
|
|
while ( document != null ) {
|
|
|
|
// Getting the name of the stock.
|
|
|
|
String stringName = document.getItemValueString( "Name" );
|
|
|
|
|
|
|
|
// Inserting the name to a specified cell.
|
|
|
|
insertIntoCell( intColumn, intRow, stringName, xspreadsheet, "" );
|
|
|
|
|
|
|
|
// Getting the number of stocks.
|
|
|
|
double intNumber = document.getItemValueInteger( "Number" );
|
|
|
|
|
|
|
|
// Inserting the number of stocks to a specified cell.
|
|
|
|
insertIntoCell( intColumn + 1, intRow, String.valueOf( intNumber ),
|
|
|
|
xspreadsheet, "V" );
|
|
|
|
|
|
|
|
// Getting current share price.
|
|
|
|
double doubleSharePrice = document.getItemValueDouble( "SharePrice" );
|
|
|
|
|
|
|
|
// Inserting the current share price to a specified cell.
|
|
|
|
insertIntoCell( intColumn + 2, intRow, String.valueOf( doubleSharePrice ),
|
|
|
|
xspreadsheet, "V" );
|
|
|
|
|
|
|
|
// Inserting the total value.
|
|
|
|
insertIntoCell( intColumn + 3, intRow, "=B"
|
|
|
|
+ String.valueOf( intRow + 1 ) + "*C" + String.valueOf( intRow + 1 ),
|
|
|
|
xspreadsheet, "" );
|
|
|
|
|
|
|
|
// Increasing the current row.
|
|
|
|
intRow++;
|
|
|
|
|
|
|
|
// Getting the next document from the collection.
|
|
|
|
document = documentcollection.getNextDocument();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Summing all specific amounts.
|
|
|
|
insertIntoCell( intColumn + 3, intRow, "=sum(D"
|
|
|
|
+ String.valueOf( intRowToStart + 1 ) + ":D"
|
|
|
|
+ String.valueOf( intRow ),
|
|
|
|
xspreadsheet, "" );
|
|
|
|
|
2001-12-12 13:49:02 +00:00
|
|
|
xcomponentcontext = null;
|
|
|
|
|
2001-09-18 08:13:39 +00:00
|
|
|
// Leaving the program.
|
|
|
|
System.exit(0);
|
|
|
|
}
|
|
|
|
catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Inserting a value or formula to a cell defined by the row and column.
|
|
|
|
* @param intCellX Row.
|
|
|
|
* @param intCellY Column.
|
|
|
|
* @param stringValue This value will be written to the cell.
|
|
|
|
* @param xspreadsheet Write the value to the cells of this spreadsheet.
|
|
|
|
* @param stringFlag If this string contains "V", the value will be written, otherwise the formula.
|
|
|
|
*/
|
|
|
|
public static void insertIntoCell( int intCellX, int intCellY,
|
|
|
|
String stringValue, XSpreadsheet xspreadsheet, String stringFlag ) {
|
|
|
|
XCell xcell = null;
|
|
|
|
|
|
|
|
try {
|
|
|
|
xcell = xspreadsheet.getCellByPosition( intCellX, intCellY );
|
|
|
|
} catch ( com.sun.star.lang.IndexOutOfBoundsException exception ) {
|
|
|
|
System.out.println( "Could not get Cell" );
|
|
|
|
}
|
|
|
|
if ( stringFlag.equals( "V" )) {
|
|
|
|
xcell.setValue( ( new Float( stringValue ) ).floatValue());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
xcell.setFormula( stringValue );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|