summaryrefslogtreecommitdiff
path: root/cli_ure
diff options
context:
space:
mode:
authorPetr Mladek <pmladek@suse.cz>2011-08-02 18:11:29 +0200
committerAndras Timar <atimar@suse.com>2012-10-13 12:24:36 +0200
commit0df66fb66af1fa55d92d762e343e0ca5cf94039f (patch)
tree2f55201163f6630e72172f240ff8f12c6c9d6c8c /cli_ure
parentba9fd3cc98d9205eb3574df6a9428e3ae520832b (diff)
[mono] cli_ure-source-bootstrap-managed_bootstrap-cs.diff: add mono support
Diffstat (limited to 'cli_ure')
-rw-r--r--cli_ure/source/bootstrap/managed_bootstrap.cs106
1 files changed, 106 insertions, 0 deletions
diff --git a/cli_ure/source/bootstrap/managed_bootstrap.cs b/cli_ure/source/bootstrap/managed_bootstrap.cs
new file mode 100644
index 000000000000..9a7fc41d9053
--- /dev/null
+++ b/cli_ure/source/bootstrap/managed_bootstrap.cs
@@ -0,0 +1,106 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+namespace uno.util
+{
+
+using System;
+using System.Collections;
+using System.Runtime.InteropServices;
+
+public class Bootstrap
+{
+ private Bootstrap() {}
+
+ public static unoidl.com.sun.star.uno.XComponentContext
+ defaultBootstrap_InitialComponentContext()
+ {
+ return defaultBootstrap_InitialComponentContext(null, null);
+ }
+
+ public static unoidl.com.sun.star.uno.XComponentContext
+ defaultBootstrap_InitialComponentContext(
+ string iniFile,
+ IDictionaryEnumerator bootstrapParameters)
+ {
+ if (bootstrapParameters != null)
+ {
+ bootstrapParameters.Reset();
+ while (bootstrapParameters.MoveNext())
+ {
+ string key = (string)bootstrapParameters.Key;
+ string value = (string)bootstrapParameters.Value;
+
+ native_bootstrap_set(key, key.Length, value, value.Length);
+ }
+ }
+
+ System.Console.WriteLine("Bootstrap with ini " + iniFile);
+ // bootstrap native uno
+ IntPtr context;
+ if (iniFile == null)
+ {
+ context = native_defaultBootstrap_InitialComponentContext();
+ }
+ else
+ {
+ context = native_defaultBootstrap_InitialComponentContext(iniFile, iniFile.Length);
+ }
+
+ return (unoidl.com.sun.star.uno.XComponentContext)ExtractObject(context);
+ }
+
+ public static unoidl.com.sun.star.uno.XComponentContext bootstrap()
+ {
+ return (unoidl.com.sun.star.uno.XComponentContext)ExtractObject(native_bootstrap());
+ }
+
+ static object ExtractObject(IntPtr managed)
+ {
+ GCHandle handle = (GCHandle)managed;
+ object ret = handle.Target;
+ handle.Free();
+ return ret;
+ }
+
+ [DllImport("cli_uno_glue")]
+ private static extern void native_bootstrap_set(
+ [MarshalAs(UnmanagedType.LPWStr)] string key, int keyLength,
+ [MarshalAs(UnmanagedType.LPWStr)] string value, int valueLength);
+
+ [DllImport("cli_uno_glue", EntryPoint="native_defaultBootstrap_InitialComponentContext")]
+ private static extern IntPtr native_defaultBootstrap_InitialComponentContext();
+
+ [DllImport("cli_uno_glue", EntryPoint="native_defaultBootstrap_InitialComponentContext_iniFile")]
+ private static extern IntPtr native_defaultBootstrap_InitialComponentContext(
+ [MarshalAs(UnmanagedType.LPWStr)] string iniFile, int nameLength);
+
+ [DllImport("cli_uno_glue")]
+ private static extern IntPtr native_bootstrap();
+}
+
+}