wine/dlls/windows.web/json_object.c

256 lines
8.1 KiB
C

/* WinRT Windows.Data.Json.JsonObject Implementation
*
* Copyright (C) 2024 Mohamad Al-Jaf
*
* 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"
WINE_DEFAULT_DEBUG_CHANNEL(web);
struct json_object
{
IJsonObject IJsonObject_iface;
LONG ref;
};
static inline struct json_object *impl_from_IJsonObject( IJsonObject *iface )
{
return CONTAINING_RECORD( iface, struct json_object, IJsonObject_iface );
}
static HRESULT WINAPI json_object_statics_QueryInterface( IJsonObject *iface, REFIID iid, void **out )
{
struct json_object *impl = impl_from_IJsonObject( 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_IJsonObject ))
{
*out = &impl->IJsonObject_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 json_object_statics_AddRef( IJsonObject *iface )
{
struct json_object *impl = impl_from_IJsonObject( iface );
ULONG ref = InterlockedIncrement( &impl->ref );
TRACE( "iface %p, ref %lu.\n", iface, ref );
return ref;
}
static ULONG WINAPI json_object_statics_Release( IJsonObject *iface )
{
struct json_object *impl = impl_from_IJsonObject( iface );
ULONG ref = InterlockedDecrement( &impl->ref );
TRACE( "iface %p, ref %lu.\n", iface, ref );
if (!ref) free( impl );
return ref;
}
static HRESULT WINAPI json_object_statics_GetIids( IJsonObject *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 json_object_statics_GetRuntimeClassName( IJsonObject *iface, HSTRING *class_name )
{
FIXME( "iface %p, class_name %p stub!\n", iface, class_name );
return E_NOTIMPL;
}
static HRESULT WINAPI json_object_statics_GetTrustLevel( IJsonObject *iface, TrustLevel *trust_level )
{
FIXME( "iface %p, trust_level %p stub!\n", iface, trust_level );
return E_NOTIMPL;
}
static HRESULT WINAPI json_object_statics_GetNamedValue( IJsonObject *iface, HSTRING name, IJsonValue **value )
{
FIXME( "iface %p, name %s, value %p stub!\n", iface, debugstr_hstring( name ), value );
return E_NOTIMPL;
}
static HRESULT WINAPI json_object_statics_SetNamedValue( IJsonObject *iface, HSTRING name, IJsonValue *value )
{
FIXME( "iface %p, name %s, value %p stub!\n", iface, debugstr_hstring( name ), value );
return E_NOTIMPL;
}
static HRESULT WINAPI json_object_statics_GetNamedObject( IJsonObject *iface, HSTRING name, IJsonObject **value )
{
FIXME( "iface %p, name %s, value %p stub!\n", iface, debugstr_hstring( name ), value );
return E_NOTIMPL;
}
static HRESULT WINAPI json_object_statics_GetNamedArray( IJsonObject *iface, HSTRING name, IJsonArray **value )
{
FIXME( "iface %p, name %s, value %p stub!\n", iface, debugstr_hstring( name ), value );
return E_NOTIMPL;
}
static HRESULT WINAPI json_object_statics_GetNamedString( IJsonObject *iface, HSTRING name, HSTRING *value )
{
FIXME( "iface %p, name %s, value %p stub!\n", iface, debugstr_hstring( name ), value );
return E_NOTIMPL;
}
static HRESULT WINAPI json_object_statics_GetNamedNumber( IJsonObject *iface, HSTRING name, DOUBLE *value )
{
FIXME( "iface %p, name %s, value %p stub!\n", iface, debugstr_hstring( name ), value );
return E_NOTIMPL;
}
static HRESULT WINAPI json_object_statics_GetNamedBoolean( IJsonObject *iface, HSTRING name, boolean *value )
{
FIXME( "iface %p, name %s, value %p stub!\n", iface, debugstr_hstring( name ), value );
return E_NOTIMPL;
}
static const struct IJsonObjectVtbl json_object_statics_vtbl =
{
json_object_statics_QueryInterface,
json_object_statics_AddRef,
json_object_statics_Release,
/* IInspectable methods */
json_object_statics_GetIids,
json_object_statics_GetRuntimeClassName,
json_object_statics_GetTrustLevel,
/* IJsonObject methods */
json_object_statics_GetNamedValue,
json_object_statics_SetNamedValue,
json_object_statics_GetNamedObject,
json_object_statics_GetNamedArray,
json_object_statics_GetNamedString,
json_object_statics_GetNamedNumber,
json_object_statics_GetNamedBoolean,
};
struct json_object_statics
{
IActivationFactory IActivationFactory_iface;
LONG ref;
};
static inline struct json_object_statics *impl_from_IActivationFactory( IActivationFactory *iface )
{
return CONTAINING_RECORD( iface, struct json_object_statics, IActivationFactory_iface );
}
static HRESULT WINAPI factory_QueryInterface( IActivationFactory *iface, REFIID iid, void **out )
{
struct json_object_statics *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;
}
FIXME( "%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid( iid ) );
*out = NULL;
return E_NOINTERFACE;
}
static ULONG WINAPI factory_AddRef( IActivationFactory *iface )
{
struct json_object_statics *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 json_object_statics *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 )
{
struct json_object *impl;
TRACE( "iface %p, instance %p.\n", iface, instance );
*instance = NULL;
if (!(impl = calloc( 1, sizeof(*impl) ))) return E_OUTOFMEMORY;
impl->IJsonObject_iface.lpVtbl = &json_object_statics_vtbl;
impl->ref = 1;
*instance = (IInspectable *)&impl->IJsonObject_iface;
return S_OK;
}
static const struct IActivationFactoryVtbl factory_vtbl =
{
factory_QueryInterface,
factory_AddRef,
factory_Release,
/* IInspectable methods */
factory_GetIids,
factory_GetRuntimeClassName,
factory_GetTrustLevel,
/* IActivationFactory methods */
factory_ActivateInstance,
};
static struct json_object_statics json_object_statics =
{
{&factory_vtbl},
1,
};
IActivationFactory *json_object_factory = &json_object_statics.IActivationFactory_iface;