Nikolay Sivov : opcservices: Add a stub IOpcFactory.

Alexandre Julliard julliard at winehq.org
Thu Aug 30 16:34:42 CDT 2018


Module: wine
Branch: master
Commit: d2c5d0171aef8f74cfaf134b9848dfcb611b48a8
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=d2c5d0171aef8f74cfaf134b9848dfcb611b48a8

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Thu Aug 30 14:54:37 2018 +0300

opcservices: Add a stub IOpcFactory.

Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 configure                         |   2 +
 configure.ac                      |   1 +
 dlls/opcservices/Makefile.in      |   8 ++
 dlls/opcservices/factory.c        | 225 ++++++++++++++++++++++++++++++++++++++
 dlls/opcservices/opcservices.idl  |  21 ++++
 dlls/opcservices/opcservices.spec |   4 +
 6 files changed, 261 insertions(+)

diff --git a/configure b/configure
index 2a611bd..023a164 100755
--- a/configure
+++ b/configure
@@ -1463,6 +1463,7 @@ enable_oledlg
 enable_olepro32
 enable_olesvr32
 enable_olethk32
+enable_opcservices
 enable_openal32
 enable_opencl
 enable_opengl32
@@ -19713,6 +19714,7 @@ wine_fn_config_makefile dlls/olepro32 enable_olepro32
 wine_fn_config_makefile dlls/olesvr.dll16 enable_win16
 wine_fn_config_makefile dlls/olesvr32 enable_olesvr32
 wine_fn_config_makefile dlls/olethk32 enable_olethk32
+wine_fn_config_makefile dlls/opcservices enable_opcservices
 wine_fn_config_makefile dlls/openal32 enable_openal32
 wine_fn_config_makefile dlls/opencl enable_opencl
 wine_fn_config_makefile dlls/opengl32 enable_opengl32
diff --git a/configure.ac b/configure.ac
index ddf7ee3..2b63d6a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3573,6 +3573,7 @@ WINE_CONFIG_MAKEFILE(dlls/olepro32)
 WINE_CONFIG_MAKEFILE(dlls/olesvr.dll16,enable_win16)
 WINE_CONFIG_MAKEFILE(dlls/olesvr32)
 WINE_CONFIG_MAKEFILE(dlls/olethk32)
+WINE_CONFIG_MAKEFILE(dlls/opcservices)
 WINE_CONFIG_MAKEFILE(dlls/openal32)
 WINE_CONFIG_MAKEFILE(dlls/opencl)
 WINE_CONFIG_MAKEFILE(dlls/opengl32)
diff --git a/dlls/opcservices/Makefile.in b/dlls/opcservices/Makefile.in
new file mode 100644
index 0000000..20d8eb5
--- /dev/null
+++ b/dlls/opcservices/Makefile.in
@@ -0,0 +1,8 @@
+MODULE  = opcservices.dll
+IMPORTS = uuid
+
+C_SRCS = \
+	factory.c
+
+IDL_SRCS = \
+	opcservices.idl
diff --git a/dlls/opcservices/factory.c b/dlls/opcservices/factory.c
new file mode 100644
index 0000000..dd6556d
--- /dev/null
+++ b/dlls/opcservices/factory.c
@@ -0,0 +1,225 @@
+/*
+ * Copyright 2018 Nikolay Sivov for CodeWeavers
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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 for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#define COBJMACROS
+
+#include <stdarg.h>
+#include "windef.h"
+#include "winbase.h"
+
+#include "initguid.h"
+#include "ole2.h"
+#include "rpcproxy.h"
+#include "msopc.h"
+
+#include "wine/debug.h"
+
+WINE_DEFAULT_DEBUG_CHANNEL(msopc);
+
+static HRESULT WINAPI opc_factory_QueryInterface(IOpcFactory *iface, REFIID iid, void **out)
+{
+    TRACE("iface %p, iid %s, out %p.\n", iface, debugstr_guid(iid), out);
+
+    if (IsEqualIID(iid, &IID_IOpcFactory) ||
+            IsEqualIID(iid, &IID_IUnknown))
+    {
+        *out = iface;
+        IOpcFactory_AddRef(iface);
+        return S_OK;
+    }
+
+    WARN("Unsupported interface %s.\n", debugstr_guid(iid));
+    return E_NOINTERFACE;
+}
+
+static ULONG WINAPI opc_factory_AddRef(IOpcFactory *iface)
+{
+    return 2;
+}
+
+static ULONG WINAPI opc_factory_Release(IOpcFactory *iface)
+{
+    return 1;
+}
+
+static HRESULT WINAPI opc_factory_CreatePackageRootUri(IOpcFactory *iface, IOpcUri **uri)
+{
+    FIXME("iface %p, uri %p stub!\n", iface, uri);
+
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI opc_factory_CreatePartUri(IOpcFactory *iface, LPCWSTR uri, IOpcPartUri **part_uri)
+{
+    FIXME("iface %p, uri %s, part_uri %p stub!\n", iface, debugstr_w(uri), part_uri);
+
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI opc_factory_CreateStreamOnFile(IOpcFactory *iface, LPCWSTR filename,
+        OPC_STREAM_IO_MODE io_mode, SECURITY_ATTRIBUTES *sa, DWORD flags, IStream **stream)
+{
+    FIXME("iface %p, filename %s, io_mode %d, sa %p, flags %#x, stream %p stub!\n", iface, debugstr_w(filename),
+            io_mode, sa, flags, stream);
+
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI opc_factory_CreatePackage(IOpcFactory *iface, IOpcPackage **package)
+{
+    FIXME("iface %p, package %p.\n", iface, package);
+
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI opc_factory_ReadPackageFromStream(IOpcFactory *iface, IStream *stream,
+        OPC_READ_FLAGS flags, IOpcPackage **package)
+{
+    FIXME("iface %p, stream %p, flags %#x, package %p stub!\n", iface, stream, flags, package);
+
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI opc_factory_WritePackageToStream(IOpcFactory *iface, IOpcPackage *package, OPC_WRITE_FLAGS flags,
+        IStream *stream)
+{
+    FIXME("iface %p, package %p, flags %#x, stream %p stub!\n", iface, package, flags, stream);
+
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI opc_factory_CreateDigitalSignatureManager(IOpcFactory *iface, IOpcPackage *package,
+        IOpcDigitalSignatureManager **signature_manager)
+{
+    FIXME("iface %p, package %p, signature_manager %p stub!\n", iface, package, signature_manager);
+
+    return E_NOTIMPL;
+}
+
+static const IOpcFactoryVtbl opc_factory_vtbl =
+{
+    opc_factory_QueryInterface,
+    opc_factory_AddRef,
+    opc_factory_Release,
+    opc_factory_CreatePackageRootUri,
+    opc_factory_CreatePartUri,
+    opc_factory_CreateStreamOnFile,
+    opc_factory_CreatePackage,
+    opc_factory_ReadPackageFromStream,
+    opc_factory_WritePackageToStream,
+    opc_factory_CreateDigitalSignatureManager,
+};
+
+static IOpcFactory opc_factory = { &opc_factory_vtbl };
+
+static HRESULT WINAPI opc_class_factory_QueryInterface(IClassFactory *iface, REFIID iid, void **out)
+{
+    TRACE("iface %p, iid %s, out %p.\n", iface, debugstr_guid(iid), out);
+
+    if (IsEqualGUID(iid, &IID_IClassFactory) ||
+            IsEqualGUID(iid, &IID_IUnknown))
+    {
+        IClassFactory_AddRef(iface);
+        *out = iface;
+        return S_OK;
+    }
+
+    *out = NULL;
+    WARN("Unsupported interface %s.\n", debugstr_guid(iid));
+    return E_NOINTERFACE;
+}
+
+static ULONG WINAPI opc_class_factory_AddRef(IClassFactory *iface)
+{
+    return 2;
+}
+
+static ULONG WINAPI opc_class_factory_Release(IClassFactory *iface)
+{
+    return 1;
+}
+
+static HRESULT WINAPI opc_class_factory_CreateInstance(IClassFactory *iface,
+        IUnknown *outer, REFIID iid, void **out)
+{
+    TRACE("iface %p, outer %p, iid %s, out %p.\n", iface, outer, debugstr_guid(iid), out);
+
+    if (outer)
+        return CLASS_E_NOAGGREGATION;
+
+    return IOpcFactory_QueryInterface(&opc_factory, iid, out);
+}
+
+static HRESULT WINAPI opc_class_factory_LockServer(IClassFactory *iface, BOOL dolock)
+{
+    FIXME("iface %p, dolock %d stub!\n", iface, dolock);
+    return S_OK;
+}
+
+static const struct IClassFactoryVtbl opc_class_factory_vtbl =
+{
+    opc_class_factory_QueryInterface,
+    opc_class_factory_AddRef,
+    opc_class_factory_Release,
+    opc_class_factory_CreateInstance,
+    opc_class_factory_LockServer
+};
+
+static IClassFactory opc_class_factory = { &opc_class_factory_vtbl };
+
+HRESULT WINAPI DllGetClassObject(REFCLSID clsid, REFIID iid, void **out)
+{
+    TRACE("clsid %s, iid %s, out %p\n", debugstr_guid(clsid), debugstr_guid(iid), out);
+
+    if (IsEqualCLSID(clsid, &CLSID_OpcFactory))
+        return IClassFactory_QueryInterface(&opc_class_factory, iid, out);
+
+    WARN("Unsupported class %s.\n", debugstr_guid(clsid));
+    return E_NOTIMPL;
+}
+
+HRESULT WINAPI DllCanUnloadNow(void)
+{
+    return S_FALSE;
+}
+
+static HINSTANCE OPC_hInstance;
+
+BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD reason, void *reserved)
+{
+    OPC_hInstance = hInstDLL;
+
+    switch (reason)
+    {
+    case DLL_PROCESS_ATTACH:
+        DisableThreadLibraryCalls(hInstDLL);
+        break;
+    }
+    return TRUE;
+}
+
+HRESULT WINAPI DllRegisterServer(void)
+{
+    FIXME("\n");
+    return __wine_register_resources( OPC_hInstance );
+}
+
+HRESULT WINAPI DllUnregisterServer(void)
+{
+    return __wine_unregister_resources( OPC_hInstance );
+}
diff --git a/dlls/opcservices/opcservices.idl b/dlls/opcservices/opcservices.idl
new file mode 100644
index 0000000..689131b
--- /dev/null
+++ b/dlls/opcservices/opcservices.idl
@@ -0,0 +1,21 @@
+/*
+ * Copyright 2018 Nikolay Sivov for CodeWeavers
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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 for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#pragma makedep register
+
+#include "msopc.idl"
diff --git a/dlls/opcservices/opcservices.spec b/dlls/opcservices/opcservices.spec
new file mode 100644
index 0000000..b16365d
--- /dev/null
+++ b/dlls/opcservices/opcservices.spec
@@ -0,0 +1,4 @@
+@ stdcall -private DllCanUnloadNow()
+@ stdcall -private DllGetClassObject(ptr ptr ptr)
+@ stdcall -private DllRegisterServer()
+@ stdcall -private DllUnregisterServer()




More information about the wine-cvs mailing list