amstream: Use proper constructor name for ddraw mediastream.
[wine] / dlls / amstream / main.c
1 /*
2  *     MultiMedia Streams Base Functions (AMSTREAM.DLL)
3  *
4  * Copyright 2004 Christian Costa
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * 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 #include <stdarg.h>
22 #include <string.h>
23
24 #define COBJMACROS
25
26 #include "windef.h"
27 #include "winbase.h"
28 #include "winuser.h"
29 #include "winerror.h"
30
31 #include "ole2.h"
32 #include "rpcproxy.h"
33
34 #include "amstream_private.h"
35 #include "amstream.h"
36
37 #include "wine/debug.h"
38
39 WINE_DEFAULT_DEBUG_CHANNEL(amstream);
40
41 static HINSTANCE instance;
42 static DWORD dll_ref = 0;
43
44 /* For the moment, do nothing here. */
45 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
46 {
47     switch(fdwReason) {
48         case DLL_PROCESS_ATTACH:
49             instance = hInstDLL;
50             DisableThreadLibraryCalls(hInstDLL);
51             break;
52         case DLL_PROCESS_DETACH:
53             break;
54     }
55     return TRUE;
56 }
57
58 /******************************************************************************
59  * Multimedia Streams ClassFactory
60  */
61 typedef struct {
62     IClassFactory ITF_IClassFactory;
63
64     LONG ref;
65     HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj);
66 } IClassFactoryImpl;
67
68 struct object_creation_info
69 {
70     const CLSID *clsid;
71     HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj);
72 };
73
74 static const struct object_creation_info object_creation[] =
75 {
76     { &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
83 AMCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj)
84 {
85     IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
86
87     if (IsEqualGUID(riid, &IID_IUnknown)
88         || IsEqualGUID(riid, &IID_IClassFactory))
89     {
90         IClassFactory_AddRef(iface);
91         *ppobj = This;
92         return S_OK;
93     }
94
95     WARN("(%p)->(%s,%p),not found\n",This,debugstr_guid(riid),ppobj);
96     return E_NOINTERFACE;
97 }
98
99 static ULONG WINAPI AMCF_AddRef(LPCLASSFACTORY iface)
100 {
101     IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
102     return InterlockedIncrement(&This->ref);
103 }
104
105 static ULONG WINAPI AMCF_Release(LPCLASSFACTORY iface)
106 {
107     IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
108
109     ULONG ref = InterlockedDecrement(&This->ref);
110
111     if (ref == 0)
112         HeapFree(GetProcessHeap(), 0, This);
113
114     return ref;
115 }
116
117
118 static HRESULT WINAPI AMCF_CreateInstance(LPCLASSFACTORY iface, LPUNKNOWN pOuter,
119                                           REFIID riid, LPVOID *ppobj)
120 {
121     IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
122     HRESULT hres;
123     LPUNKNOWN punk;
124     
125     TRACE("(%p)->(%p,%s,%p)\n",This,pOuter,debugstr_guid(riid),ppobj);
126
127     *ppobj = NULL;
128     hres = This->pfnCreateInstance(pOuter, (LPVOID *) &punk);
129     if (SUCCEEDED(hres)) {
130         hres = IUnknown_QueryInterface(punk, riid, ppobj);
131         IUnknown_Release(punk);
132     }
133     return hres;
134 }
135
136 static HRESULT WINAPI AMCF_LockServer(LPCLASSFACTORY iface,BOOL dolock)
137 {
138     IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
139     FIXME("(%p)->(%d),stub!\n",This,dolock);
140     return S_OK;
141 }
142
143 static const IClassFactoryVtbl DSCF_Vtbl =
144 {
145     AMCF_QueryInterface,
146     AMCF_AddRef,
147     AMCF_Release,
148     AMCF_CreateInstance,
149     AMCF_LockServer
150 };
151
152 /*******************************************************************************
153  * DllGetClassObject [AMSTREAM.@]
154  * Retrieves class object from a DLL object
155  *
156  * NOTES
157  *    Docs say returns STDAPI
158  *
159  * PARAMS
160  *    rclsid [I] CLSID for the class object
161  *    riid   [I] Reference to identifier of interface for class object
162  *    ppv    [O] Address of variable to receive interface pointer for riid
163  *
164  * RETURNS
165  *    Success: S_OK
166  *    Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG,
167  *             E_UNEXPECTED
168  */
169 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
170 {
171     unsigned int i;
172     IClassFactoryImpl *factory;
173     
174     TRACE("(%s,%s,%p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
175     
176     if ( !IsEqualGUID( &IID_IClassFactory, riid )
177          && ! IsEqualGUID( &IID_IUnknown, riid) )
178         return E_NOINTERFACE;
179
180     for (i=0; i < sizeof(object_creation)/sizeof(object_creation[0]); i++)
181     {
182         if (IsEqualGUID(object_creation[i].clsid, rclsid))
183             break;
184     }
185
186     if (i == sizeof(object_creation)/sizeof(object_creation[0]))
187     {
188         FIXME("%s: no class found.\n", debugstr_guid(rclsid));
189         return CLASS_E_CLASSNOTAVAILABLE;
190     }
191
192     factory = HeapAlloc(GetProcessHeap(), 0, sizeof(*factory));
193     if (factory == NULL) return E_OUTOFMEMORY;
194
195     factory->ITF_IClassFactory.lpVtbl = &DSCF_Vtbl;
196     factory->ref = 1;
197
198     factory->pfnCreateInstance = object_creation[i].pfnCreateInstance;
199
200     *ppv = &(factory->ITF_IClassFactory);
201     return S_OK;
202 }
203
204 /***********************************************************************
205  *              DllCanUnloadNow (AMSTREAM.@)
206  */
207 HRESULT WINAPI DllCanUnloadNow(void)
208 {
209     return dll_ref != 0 ? S_FALSE : S_OK;
210 }
211
212 /***********************************************************************
213  *              DllRegisterServer (AMSTREAM.@)
214  */
215 HRESULT WINAPI DllRegisterServer(void)
216 {
217     return __wine_register_resources( instance );
218 }
219
220 /***********************************************************************
221  *              DllUnregisterServer (AMSTREAM.@)
222  */
223 HRESULT WINAPI DllUnregisterServer(void)
224 {
225     return __wine_unregister_resources( instance );
226 }