From: Paul Gofman pgofman@codeweavers.com
--- dlls/windows.perception.stub/Makefile.in | 1 + dlls/windows.perception.stub/anchor.c | 155 ++++++++++++++++++ dlls/windows.perception.stub/classes.idl | 4 + dlls/windows.perception.stub/main.c | 2 + dlls/windows.perception.stub/private.h | 2 + .../tests/perception.c | 25 +++ 6 files changed, 189 insertions(+) create mode 100644 dlls/windows.perception.stub/anchor.c
diff --git a/dlls/windows.perception.stub/Makefile.in b/dlls/windows.perception.stub/Makefile.in index f7b6065cb0d..0ba9db95a5e 100644 --- a/dlls/windows.perception.stub/Makefile.in +++ b/dlls/windows.perception.stub/Makefile.in @@ -3,6 +3,7 @@ IMPORTS = combase user32
SOURCES = \ classes.idl \ + anchor.c \ holographic_space.c \ main.c \ observer.c diff --git a/dlls/windows.perception.stub/anchor.c b/dlls/windows.perception.stub/anchor.c new file mode 100644 index 00000000000..77baa0f2133 --- /dev/null +++ b/dlls/windows.perception.stub/anchor.c @@ -0,0 +1,155 @@ +/* + * Copyright (C) 2025 Paul Gofman 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 + */ + +#include "private.h" +#include "wine/debug.h" + +#include "private.h" +#include "wine/debug.h" + +WINE_DEFAULT_DEBUG_CHANNEL(perception); + +struct exporter +{ + IActivationFactory IActivationFactory_iface; + ISpatialAnchorExporterStatics ISpatialAnchorExporterStatics_iface; + LONG ref; +}; + +static inline struct exporter *impl_from_IActivationFactory( IActivationFactory *iface ) +{ + return CONTAINING_RECORD( iface, struct exporter, IActivationFactory_iface ); +} + +static HRESULT WINAPI factory_QueryInterface( IActivationFactory *iface, REFIID iid, void **out ) +{ + struct exporter *impl = impl_from_IActivationFactory( iface ); + + TRACE( "iface %p, iid %s, out %p.\n", iface, debugstr_guid( iid ), out ); + + if (IsEqualGUID( iid, &IID_IUnknown ) || + IsEqualGUID( iid, &IID_IInspectable ) || + IsEqualGUID( iid, &IID_IAgileObject ) || + IsEqualGUID( iid, &IID_IActivationFactory )) + { + *out = &impl->IActivationFactory_iface; + IInspectable_AddRef( *out ); + return S_OK; + } + + if (IsEqualGUID( iid, &IID_ISpatialAnchorExporterStatics )) + { + *out = &impl->ISpatialAnchorExporterStatics_iface; + IInspectable_AddRef( *out ); + return S_OK; + } + + FIXME( "%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid( iid ) ); + *out = NULL; + return E_NOINTERFACE; +} + +static ULONG WINAPI factory_AddRef( IActivationFactory *iface ) +{ + struct exporter *impl = impl_from_IActivationFactory( iface ); + ULONG ref = InterlockedIncrement( &impl->ref ); + TRACE( "iface %p increasing refcount to %lu.\n", iface, ref ); + return ref; +} + +static ULONG WINAPI factory_Release( IActivationFactory *iface ) +{ + struct exporter *impl = impl_from_IActivationFactory( iface ); + ULONG ref = InterlockedDecrement( &impl->ref ); + TRACE( "iface %p decreasing refcount to %lu.\n", iface, ref ); + return ref; +} + +static HRESULT WINAPI factory_GetIids( IActivationFactory *iface, ULONG *iid_count, IID **iids ) +{ + FIXME( "iface %p, iid_count %p, iids %p stub!\n", iface, iid_count, iids ); + return E_NOTIMPL; +} + +static HRESULT WINAPI factory_GetRuntimeClassName( IActivationFactory *iface, HSTRING *class_name ) +{ + FIXME( "iface %p, class_name %p stub!\n", iface, class_name ); + return E_NOTIMPL; +} + +static HRESULT WINAPI factory_GetTrustLevel( IActivationFactory *iface, TrustLevel *trust_level ) +{ + FIXME( "iface %p, trust_level %p stub!\n", iface, trust_level ); + return E_NOTIMPL; +} + +static HRESULT WINAPI factory_ActivateInstance( IActivationFactory *iface, IInspectable **instance ) +{ + FIXME( "iface %p, instance %p stub!\n", iface, instance ); + return E_NOTIMPL; +} + +static const struct IActivationFactoryVtbl factory_vtbl = +{ + factory_QueryInterface, + factory_AddRef, + factory_Release, + /* IInspectable methods */ + factory_GetIids, + factory_GetRuntimeClassName, + factory_GetTrustLevel, + /* IActivationFactory methods */ + factory_ActivateInstance, +}; + +DEFINE_IINSPECTABLE( exporter_statics, ISpatialAnchorExporterStatics, struct exporter, IActivationFactory_iface ) + +static HRESULT WINAPI exporter_statics_GetDefault( ISpatialAnchorExporterStatics *iface, ISpatialAnchorExporter **value ) +{ + FIXME( "iface %p, value %p stub.\n", iface, value ); + return E_NOTIMPL; +} + +static HRESULT WINAPI exporter_statics_RequestAccessAsync( ISpatialAnchorExporterStatics *iface, IAsyncOperation_SpatialPerceptionAccessStatus **result ) +{ + FIXME( "iface %p, result %p stub.\n", iface, result ); + return E_NOTIMPL; +} + +static const struct ISpatialAnchorExporterStaticsVtbl exporter_statics_vtbl = +{ + exporter_statics_QueryInterface, + exporter_statics_AddRef, + exporter_statics_Release, + /* IInspectable methods */ + exporter_statics_GetIids, + exporter_statics_GetRuntimeClassName, + exporter_statics_GetTrustLevel, + /* ISpatialAnchorExporterStatics methods */ + exporter_statics_GetDefault, + exporter_statics_RequestAccessAsync, +}; + +static struct exporter exporter_statics = +{ + {&factory_vtbl}, + {&exporter_statics_vtbl}, + 1, +}; + +IActivationFactory *anchor_exporter_factory = &exporter_statics.IActivationFactory_iface; diff --git a/dlls/windows.perception.stub/classes.idl b/dlls/windows.perception.stub/classes.idl index e79c20c715b..a901784a47e 100644 --- a/dlls/windows.perception.stub/classes.idl +++ b/dlls/windows.perception.stub/classes.idl @@ -24,6 +24,10 @@ import "windows.perception.spatial.surfaces.idl"; import "windows.graphics.holographic.idl";
+ +namespace Windows.Perception.Spatial { + runtimeclass SpatialAnchorExporter; +} namespace Windows.Perception.Spatial.Surfaces { runtimeclass SpatialSurfaceObserver; } diff --git a/dlls/windows.perception.stub/main.c b/dlls/windows.perception.stub/main.c index de3b7d389e8..e47f794ab0e 100644 --- a/dlls/windows.perception.stub/main.c +++ b/dlls/windows.perception.stub/main.c @@ -42,6 +42,8 @@ HRESULT WINAPI DllGetActivationFactory( HSTRING classid, IActivationFactory **fa IActivationFactory_QueryInterface( observer_factory, &IID_IActivationFactory, (void **)factory ); if (!wcscmp( buffer, RuntimeClass_Windows_Graphics_Holographic_HolographicSpace )) IActivationFactory_QueryInterface( holographic_space_factory, &IID_IActivationFactory, (void **)factory ); + if (!wcscmp( buffer, RuntimeClass_Windows_Perception_Spatial_SpatialAnchorExporter )) + IActivationFactory_QueryInterface( anchor_exporter_factory, &IID_IActivationFactory, (void **)factory );
if (*factory) return S_OK; return CLASS_E_CLASSNOTAVAILABLE; diff --git a/dlls/windows.perception.stub/private.h b/dlls/windows.perception.stub/private.h index bf233e72fd4..f89cd0905a3 100644 --- a/dlls/windows.perception.stub/private.h +++ b/dlls/windows.perception.stub/private.h @@ -32,6 +32,7 @@ #define WIDL_using_Windows_Foundation #define WIDL_using_Windows_Foundation_Collections #include "windows.foundation.h" +#define WIDL_using_Windows_Perception_Spatial #define WIDL_using_Windows_Perception_Spatial_Surfaces #include "windows.perception.spatial.surfaces.h" #define WIDL_using_Windows_Graphics_Holographic @@ -41,6 +42,7 @@
extern IActivationFactory *observer_factory; extern IActivationFactory *holographic_space_factory; +extern IActivationFactory *anchor_exporter_factory;
#define DEFINE_IINSPECTABLE_( pfx, iface_type, impl_type, impl_from, iface_mem, expr ) \ static inline impl_type *impl_from( iface_type *iface ) \ diff --git a/dlls/windows.perception.stub/tests/perception.c b/dlls/windows.perception.stub/tests/perception.c index 8fea17882b0..91cf7c36589 100644 --- a/dlls/windows.perception.stub/tests/perception.c +++ b/dlls/windows.perception.stub/tests/perception.c @@ -284,6 +284,30 @@ done: ok( ref == 1, "got ref %ld.\n", ref ); }
+static void test_SpatialAnchorExporter(void) +{ + static const WCHAR *class_name = L"Windows.Perception.Spatial.SpatialAnchorExporter"; + IActivationFactory *factory; + HSTRING str; + HRESULT hr; + LONG ref; + + hr = WindowsCreateString( class_name, wcslen( class_name ), &str ); + ok( hr == S_OK, "got hr %#lx.\n", hr ); + + hr = RoGetActivationFactory( str, &IID_IActivationFactory, (void **)&factory ); + WindowsDeleteString( str ); + ok( hr == S_OK || broken( hr == REGDB_E_CLASSNOTREG ), "got hr %#lx.\n", hr ); + if (hr == REGDB_E_CLASSNOTREG) + { + win_skip( "%s runtimeclass not registered, skipping tests.\n", wine_dbgstr_w( class_name ) ); + return; + } + + ref = IActivationFactory_Release( factory ); + ok( ref == 1, "got ref %ld.\n", ref ); +} + START_TEST(perception) { HRESULT hr; @@ -293,6 +317,7 @@ START_TEST(perception)
test_ObserverStatics(); test_HolographicSpaceStatics(); + test_SpatialAnchorExporter();
RoUninitialize(); }