push e4fb87785f42653a03d84664d7db014c69dd1260
[wine/hacks.git] / dlls / msctf / documentmgr.c
blobe1e5b193433c2b5aca8ddc30aa03066d999eb4ea
1 /*
2 * ITfDocumentMgr implementation
4 * Copyright 2009 Aric Stewart, CodeWeavers
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.
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.
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
21 #include "config.h"
23 #include <stdarg.h>
25 #define COBJMACROS
27 #include "wine/debug.h"
28 #include "windef.h"
29 #include "winbase.h"
30 #include "winreg.h"
31 #include "winuser.h"
32 #include "shlwapi.h"
33 #include "winerror.h"
34 #include "objbase.h"
36 #include "wine/unicode.h"
38 #include "msctf.h"
39 #include "msctf_internal.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(msctf);
43 typedef struct tagDocumentMgr {
44 const ITfDocumentMgrVtbl *DocumentMgrVtbl;
45 const ITfSourceVtbl *SourceVtbl;
46 LONG refCount;
48 ITfContext* contextStack[2]; /* limit of 2 contexts */
49 ITfThreadMgrEventSink* ThreadMgrSink;
50 } DocumentMgr;
52 static inline DocumentMgr *impl_from_ITfSourceVtbl(ITfSource *iface)
54 return (DocumentMgr *)((char *)iface - FIELD_OFFSET(DocumentMgr,SourceVtbl));
57 static void DocumentMgr_Destructor(DocumentMgr *This)
59 TRACE("destroying %p\n", This);
60 if (This->contextStack[0])
61 ITfContext_Release(This->contextStack[0]);
62 if (This->contextStack[1])
63 ITfContext_Release(This->contextStack[1]);
64 HeapFree(GetProcessHeap(),0,This);
67 static HRESULT WINAPI DocumentMgr_QueryInterface(ITfDocumentMgr *iface, REFIID iid, LPVOID *ppvOut)
69 DocumentMgr *This = (DocumentMgr *)iface;
70 *ppvOut = NULL;
72 if (IsEqualIID(iid, &IID_IUnknown) || IsEqualIID(iid, &IID_ITfDocumentMgr))
74 *ppvOut = This;
76 else if (IsEqualIID(iid, &IID_ITfSource))
78 *ppvOut = &This->SourceVtbl;
81 if (*ppvOut)
83 IUnknown_AddRef(iface);
84 return S_OK;
87 WARN("unsupported interface: %s\n", debugstr_guid(iid));
88 return E_NOINTERFACE;
91 static ULONG WINAPI DocumentMgr_AddRef(ITfDocumentMgr *iface)
93 DocumentMgr *This = (DocumentMgr *)iface;
94 return InterlockedIncrement(&This->refCount);
97 static ULONG WINAPI DocumentMgr_Release(ITfDocumentMgr *iface)
99 DocumentMgr *This = (DocumentMgr *)iface;
100 ULONG ret;
102 ret = InterlockedDecrement(&This->refCount);
103 if (ret == 0)
104 DocumentMgr_Destructor(This);
105 return ret;
108 /*****************************************************
109 * ITfDocumentMgr functions
110 *****************************************************/
111 static HRESULT WINAPI DocumentMgr_CreateContext(ITfDocumentMgr *iface,
112 TfClientId tidOwner,
113 DWORD dwFlags, IUnknown *punk, ITfContext **ppic,
114 TfEditCookie *pecTextStore)
116 DocumentMgr *This = (DocumentMgr *)iface;
117 TRACE("(%p) 0x%x 0x%x %p %p %p\n",This,tidOwner,dwFlags,punk,ppic,pecTextStore);
118 return Context_Constructor(tidOwner, punk, ppic, pecTextStore);
121 static HRESULT WINAPI DocumentMgr_Push(ITfDocumentMgr *iface, ITfContext *pic)
123 DocumentMgr *This = (DocumentMgr *)iface;
124 ITfContext *check;
126 TRACE("(%p) %p\n",This,pic);
128 if (This->contextStack[1]) /* FUll */
129 return TF_E_STACKFULL;
131 if (!pic || FAILED(IUnknown_QueryInterface(pic,&IID_ITfContext,(LPVOID*) &check)))
132 return E_INVALIDARG;
134 if (This->contextStack[0] == NULL)
135 ITfThreadMgrEventSink_OnInitDocumentMgr(This->ThreadMgrSink,iface);
137 This->contextStack[1] = This->contextStack[0];
138 This->contextStack[0] = check;
140 ITfThreadMgrEventSink_OnPushContext(This->ThreadMgrSink,check);
142 return S_OK;
145 static HRESULT WINAPI DocumentMgr_Pop(ITfDocumentMgr *iface, DWORD dwFlags)
147 DocumentMgr *This = (DocumentMgr *)iface;
148 TRACE("(%p) 0x%x\n",This,dwFlags);
150 if (dwFlags == TF_POPF_ALL)
152 if (This->contextStack[0])
154 ITfThreadMgrEventSink_OnPopContext(This->ThreadMgrSink,This->contextStack[0]);
155 ITfContext_Release(This->contextStack[0]);
157 if (This->contextStack[1])
159 ITfThreadMgrEventSink_OnPopContext(This->ThreadMgrSink,This->contextStack[1]);
160 ITfContext_Release(This->contextStack[1]);
162 This->contextStack[0] = This->contextStack[1] = NULL;
163 ITfThreadMgrEventSink_OnUninitDocumentMgr(This->ThreadMgrSink, iface);
164 return S_OK;
167 if (dwFlags)
168 return E_INVALIDARG;
170 if (This->contextStack[1] == NULL) /* Cannot pop last context */
171 return E_FAIL;
173 ITfThreadMgrEventSink_OnPopContext(This->ThreadMgrSink,This->contextStack[0]);
174 ITfContext_Release(This->contextStack[0]);
175 This->contextStack[0] = This->contextStack[1];
176 This->contextStack[1] = NULL;
178 if (This->contextStack[0] == NULL)
179 ITfThreadMgrEventSink_OnUninitDocumentMgr(This->ThreadMgrSink, iface);
181 return S_OK;
184 static HRESULT WINAPI DocumentMgr_GetTop(ITfDocumentMgr *iface, ITfContext **ppic)
186 DocumentMgr *This = (DocumentMgr *)iface;
187 TRACE("(%p)\n",This);
188 if (!ppic)
189 return E_INVALIDARG;
191 if (This->contextStack[0])
192 ITfContext_AddRef(This->contextStack[0]);
194 *ppic = This->contextStack[0];
196 return S_OK;
199 static HRESULT WINAPI DocumentMgr_GetBase(ITfDocumentMgr *iface, ITfContext **ppic)
201 DocumentMgr *This = (DocumentMgr *)iface;
202 ITfContext *tgt;
204 TRACE("(%p)\n",This);
205 if (!ppic)
206 return E_INVALIDARG;
208 if (This->contextStack[1])
209 tgt = This->contextStack[1];
210 else
211 tgt = This->contextStack[0];
213 if (tgt)
214 ITfContext_AddRef(tgt);
216 *ppic = tgt;
218 return S_OK;
221 static HRESULT WINAPI DocumentMgr_EnumContexts(ITfDocumentMgr *iface, IEnumTfContexts **ppEnum)
223 DocumentMgr *This = (DocumentMgr *)iface;
224 FIXME("STUB:(%p)\n",This);
225 return E_NOTIMPL;
228 static const ITfDocumentMgrVtbl DocumentMgr_DocumentMgrVtbl =
230 DocumentMgr_QueryInterface,
231 DocumentMgr_AddRef,
232 DocumentMgr_Release,
234 DocumentMgr_CreateContext,
235 DocumentMgr_Push,
236 DocumentMgr_Pop,
237 DocumentMgr_GetTop,
238 DocumentMgr_GetBase,
239 DocumentMgr_EnumContexts
243 static HRESULT WINAPI Source_QueryInterface(ITfSource *iface, REFIID iid, LPVOID *ppvOut)
245 DocumentMgr *This = impl_from_ITfSourceVtbl(iface);
246 return DocumentMgr_QueryInterface((ITfDocumentMgr*)This, iid, *ppvOut);
249 static ULONG WINAPI Source_AddRef(ITfSource *iface)
251 DocumentMgr *This = impl_from_ITfSourceVtbl(iface);
252 return DocumentMgr_AddRef((ITfDocumentMgr*)This);
255 static ULONG WINAPI Source_Release(ITfSource *iface)
257 DocumentMgr *This = impl_from_ITfSourceVtbl(iface);
258 return DocumentMgr_Release((ITfDocumentMgr*)This);
261 /*****************************************************
262 * ITfSource functions
263 *****************************************************/
264 static WINAPI HRESULT DocumentMgrSource_AdviseSink(ITfSource *iface,
265 REFIID riid, IUnknown *punk, DWORD *pdwCookie)
267 DocumentMgr *This = impl_from_ITfSourceVtbl(iface);
268 FIXME("STUB:(%p)\n",This);
269 return E_NOTIMPL;
272 static WINAPI HRESULT DocumentMgrSource_UnadviseSink(ITfSource *iface, DWORD pdwCookie)
274 DocumentMgr *This = impl_from_ITfSourceVtbl(iface);
275 FIXME("STUB:(%p)\n",This);
276 return E_NOTIMPL;
279 static const ITfSourceVtbl DocumentMgr_SourceVtbl =
281 Source_QueryInterface,
282 Source_AddRef,
283 Source_Release,
285 DocumentMgrSource_AdviseSink,
286 DocumentMgrSource_UnadviseSink,
289 HRESULT DocumentMgr_Constructor(ITfThreadMgrEventSink *ThreadMgrSink, ITfDocumentMgr **ppOut)
291 DocumentMgr *This;
293 This = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(DocumentMgr));
294 if (This == NULL)
295 return E_OUTOFMEMORY;
297 This->DocumentMgrVtbl= &DocumentMgr_DocumentMgrVtbl;
298 This->SourceVtbl = &DocumentMgr_SourceVtbl;
299 This->refCount = 1;
300 This->ThreadMgrSink = ThreadMgrSink;
302 TRACE("returning %p\n", This);
303 *ppOut = (ITfDocumentMgr*)This;
304 return S_OK;