main.c 5.91 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 38 39

#include "amstream_private.h"

#include "wine/debug.h"

WINE_DEFAULT_DEBUG_CHANNEL(amstream);

40
static HINSTANCE instance;
41 42 43 44 45 46

/* For the moment, do nothing here. */
BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
{
    switch(fdwReason) {
        case DLL_PROCESS_ATTACH:
47
            instance = hInstDLL;
48 49 50 51 52 53 54 55 56 57
            DisableThreadLibraryCalls(hInstDLL);
	    break;
    }
    return TRUE;
}

/******************************************************************************
 * Multimedia Streams ClassFactory
 */
typedef struct {
58
    IClassFactory IClassFactory_iface;
59
    LONG ref;
60 61 62
    HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj);
} IClassFactoryImpl;

63 64 65 66 67
static inline IClassFactoryImpl *impl_from_IClassFactory(IClassFactory *iface)
{
    return CONTAINING_RECORD(iface, IClassFactoryImpl, IClassFactory_iface);
}

68 69 70 71 72 73 74 75 76
struct object_creation_info
{
    const CLSID *clsid;
    HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj);
};

static const struct object_creation_info object_creation[] =
{
    { &CLSID_AMMultiMediaStream, AM_create },
77
    { &CLSID_AMDirectDrawStream, AM_create },
78
    { &CLSID_AMAudioData, AMAudioData_create },
79
    { &CLSID_MediaStreamFilter, MediaStreamFilter_create }
80 81
};

82
static HRESULT WINAPI AMCF_QueryInterface(IClassFactory *iface, REFIID riid, void **ppobj)
83 84 85 86 87
{
    if (IsEqualGUID(riid, &IID_IUnknown)
	|| IsEqualGUID(riid, &IID_IClassFactory))
    {
	IClassFactory_AddRef(iface);
88
        *ppobj = iface;
89 90 91
	return S_OK;
    }

92 93
    *ppobj = NULL;
    WARN("(%p)->(%s,%p), not found\n", iface, debugstr_guid(riid), ppobj);
94 95 96
    return E_NOINTERFACE;
}

97
static ULONG WINAPI AMCF_AddRef(IClassFactory *iface)
98
{
99
    IClassFactoryImpl *This = impl_from_IClassFactory(iface);
100
    return InterlockedIncrement(&This->ref);
101 102
}

103
static ULONG WINAPI AMCF_Release(IClassFactory *iface)
104
{
105
    IClassFactoryImpl *This = impl_from_IClassFactory(iface);
106
    ULONG ref = InterlockedDecrement(&This->ref);
107 108 109 110 111 112 113 114

    if (ref == 0)
	HeapFree(GetProcessHeap(), 0, This);

    return ref;
}


115 116
static HRESULT WINAPI AMCF_CreateInstance(IClassFactory *iface, IUnknown *pOuter,
                                          REFIID riid, void **ppobj)
117
{
118
    IClassFactoryImpl *This = impl_from_IClassFactory(iface);
119
    HRESULT hres;
120 121
    IUnknown *punk;

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

124
    *ppobj = NULL;
125
    hres = This->pfnCreateInstance(pOuter, (LPVOID *) &punk);
126 127 128
    if (SUCCEEDED(hres)) {
        hres = IUnknown_QueryInterface(punk, riid, ppobj);
        IUnknown_Release(punk);
129 130 131 132
    }
    return hres;
}

133
static HRESULT WINAPI AMCF_LockServer(IClassFactory *iface, BOOL dolock)
134
{
135
    IClassFactoryImpl *This = impl_from_IClassFactory(iface);
136 137 138 139
    FIXME("(%p)->(%d),stub!\n",This,dolock);
    return S_OK;
}

140
static const IClassFactoryVtbl DSCF_Vtbl =
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
{
    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
 */
166
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
167
{
168
    unsigned int i;
169 170 171 172 173 174 175 176
    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;

177
    for (i = 0; i < ARRAY_SIZE(object_creation); i++)
178 179 180 181 182
    {
	if (IsEqualGUID(object_creation[i].clsid, rclsid))
	    break;
    }

183
    if (i == ARRAY_SIZE(object_creation))
184 185 186 187 188 189 190 191
    {
	FIXME("%s: no class found.\n", debugstr_guid(rclsid));
	return CLASS_E_CLASSNOTAVAILABLE;
    }

    factory = HeapAlloc(GetProcessHeap(), 0, sizeof(*factory));
    if (factory == NULL) return E_OUTOFMEMORY;

192
    factory->IClassFactory_iface.lpVtbl = &DSCF_Vtbl;
193 194 195 196
    factory->ref = 1;

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

197
    *ppv = &factory->IClassFactory_iface;
198 199 200 201 202 203
    return S_OK;
}

/***********************************************************************
 *              DllCanUnloadNow (AMSTREAM.@)
 */
204
HRESULT WINAPI DllCanUnloadNow(void)
205
{
206
    return S_FALSE;
207
}
208 209 210 211 212 213

/***********************************************************************
 *		DllRegisterServer (AMSTREAM.@)
 */
HRESULT WINAPI DllRegisterServer(void)
{
214
    return __wine_register_resources( instance );
215 216 217 218 219 220 221
}

/***********************************************************************
 *		DllUnregisterServer (AMSTREAM.@)
 */
HRESULT WINAPI DllUnregisterServer(void)
{
222
    return __wine_unregister_resources( instance );
223
}