main.c 5.03 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 *     MultiMedia Streams Base Functions (AMSTREAM.DLL)
 *
 * Copyright 2004 Christian Costa
 *
 * 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
18
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 20 21 22 23
 */

#include <stdarg.h>
#include <string.h>

24 25
#define COBJMACROS

26 27 28 29 30 31
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "winerror.h"

#include "ole2.h"
32
#include "rpcproxy.h"
33 34 35 36 37

#include "amstream_private.h"

#include "wine/debug.h"

38
WINE_DEFAULT_DEBUG_CHANNEL(quartz);
39 40 41 42 43

/******************************************************************************
 * Multimedia Streams ClassFactory
 */
typedef struct {
44
    IClassFactory IClassFactory_iface;
45
    LONG ref;
46 47 48
    HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj);
} IClassFactoryImpl;

49 50 51 52 53
static inline IClassFactoryImpl *impl_from_IClassFactory(IClassFactory *iface)
{
    return CONTAINING_RECORD(iface, IClassFactoryImpl, IClassFactory_iface);
}

54 55 56 57 58 59 60 61
struct object_creation_info
{
    const CLSID *clsid;
    HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj);
};

static const struct object_creation_info object_creation[] =
{
62
    { &CLSID_AMMultiMediaStream, multimedia_stream_create },
63 64
    { &CLSID_AMDirectDrawStream, ddraw_stream_create },
    { &CLSID_AMAudioStream, audio_stream_create },
65
    { &CLSID_AMAudioData, AMAudioData_create },
66
    { &CLSID_MediaStreamFilter, filter_create }
67 68
};

69
static HRESULT WINAPI AMCF_QueryInterface(IClassFactory *iface, REFIID riid, void **ppobj)
70 71 72 73 74
{
    if (IsEqualGUID(riid, &IID_IUnknown)
	|| IsEqualGUID(riid, &IID_IClassFactory))
    {
	IClassFactory_AddRef(iface);
75
        *ppobj = iface;
76 77 78
	return S_OK;
    }

79 80
    *ppobj = NULL;
    WARN("(%p)->(%s,%p), not found\n", iface, debugstr_guid(riid), ppobj);
81 82 83
    return E_NOINTERFACE;
}

84
static ULONG WINAPI AMCF_AddRef(IClassFactory *iface)
85
{
86
    IClassFactoryImpl *This = impl_from_IClassFactory(iface);
87
    return InterlockedIncrement(&This->ref);
88 89
}

90
static ULONG WINAPI AMCF_Release(IClassFactory *iface)
91
{
92
    IClassFactoryImpl *This = impl_from_IClassFactory(iface);
93
    ULONG ref = InterlockedDecrement(&This->ref);
94 95

    if (ref == 0)
96
        free(This);
97 98 99 100 101

    return ref;
}


102 103
static HRESULT WINAPI AMCF_CreateInstance(IClassFactory *iface, IUnknown *pOuter,
                                          REFIID riid, void **ppobj)
104
{
105
    IClassFactoryImpl *This = impl_from_IClassFactory(iface);
106
    HRESULT hres;
107 108
    IUnknown *punk;

109 110
    TRACE("(%p)->(%p,%s,%p)\n",This,pOuter,debugstr_guid(riid),ppobj);

111
    *ppobj = NULL;
112
    hres = This->pfnCreateInstance(pOuter, (LPVOID *) &punk);
113 114 115
    if (SUCCEEDED(hres)) {
        hres = IUnknown_QueryInterface(punk, riid, ppobj);
        IUnknown_Release(punk);
116 117 118 119
    }
    return hres;
}

120
static HRESULT WINAPI AMCF_LockServer(IClassFactory *iface, BOOL dolock)
121
{
122
    IClassFactoryImpl *This = impl_from_IClassFactory(iface);
123 124 125 126
    FIXME("(%p)->(%d),stub!\n",This,dolock);
    return S_OK;
}

127
static const IClassFactoryVtbl DSCF_Vtbl =
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
{
    AMCF_QueryInterface,
    AMCF_AddRef,
    AMCF_Release,
    AMCF_CreateInstance,
    AMCF_LockServer
};

/*******************************************************************************
 * DllGetClassObject [AMSTREAM.@]
 * Retrieves class object from a DLL object
 *
 * NOTES
 *    Docs say returns STDAPI
 *
 * PARAMS
 *    rclsid [I] CLSID for the class object
 *    riid   [I] Reference to identifier of interface for class object
 *    ppv    [O] Address of variable to receive interface pointer for riid
 *
 * RETURNS
 *    Success: S_OK
 *    Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG,
 *             E_UNEXPECTED
 */
153
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
154
{
155
    unsigned int i;
156 157 158 159 160 161 162 163
    IClassFactoryImpl *factory;
    
    TRACE("(%s,%s,%p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
    
    if ( !IsEqualGUID( &IID_IClassFactory, riid )
	 && ! IsEqualGUID( &IID_IUnknown, riid) )
	return E_NOINTERFACE;

164
    for (i = 0; i < ARRAY_SIZE(object_creation); i++)
165 166 167 168 169
    {
	if (IsEqualGUID(object_creation[i].clsid, rclsid))
	    break;
    }

170
    if (i == ARRAY_SIZE(object_creation))
171 172 173 174 175
    {
	FIXME("%s: no class found.\n", debugstr_guid(rclsid));
	return CLASS_E_CLASSNOTAVAILABLE;
    }

176 177
    if (!(factory = calloc(1, sizeof(*factory))))
        return E_OUTOFMEMORY;
178

179
    factory->IClassFactory_iface.lpVtbl = &DSCF_Vtbl;
180 181 182 183
    factory->ref = 1;

    factory->pfnCreateInstance = object_creation[i].pfnCreateInstance;

184
    *ppv = &factory->IClassFactory_iface;
185 186
    return S_OK;
}