2 * Copyright 2012 Alistair Leslie-Hughes
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
29 #include "scrrun_private.h"
31 #include "wine/debug.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(scrrun);
35 static HRESULT WINAPI filesys_QueryInterface(IFileSystem3 *iface, REFIID riid, void **ppvObject)
37 TRACE("%p %s %p\n", iface, debugstr_guid(riid), ppvObject);
39 if ( IsEqualGUID( riid, &IID_IFileSystem3 ) ||
40 IsEqualGUID( riid, &IID_IFileSystem ) ||
41 IsEqualGUID( riid, &IID_IDispatch ) ||
42 IsEqualGUID( riid, &IID_IUnknown ) )
46 else if ( IsEqualGUID( riid, &IID_IDispatchEx ))
48 TRACE("Interface IDispatchEx not supported - returning NULL\n");
52 else if ( IsEqualGUID( riid, &IID_IObjectWithSite ))
54 TRACE("Interface IObjectWithSite not supported - returning NULL\n");
60 FIXME("Unsupported interface %s\n", debugstr_guid(riid));
64 IFileSystem3_AddRef(iface);
69 static ULONG WINAPI filesys_AddRef(IFileSystem3 *iface)
76 static ULONG WINAPI filesys_Release(IFileSystem3 *iface)
83 static HRESULT WINAPI filesys_GetTypeInfoCount(IFileSystem3 *iface, UINT *pctinfo)
85 TRACE("(%p)->(%p)\n", iface, pctinfo);
91 static HRESULT WINAPI filesys_GetTypeInfo(IFileSystem3 *iface, UINT iTInfo,
92 LCID lcid, ITypeInfo **ppTInfo)
94 TRACE("(%p)->(%u %u %p)\n", iface, iTInfo, lcid, ppTInfo);
95 return get_typeinfo(IFileSystem3_tid, ppTInfo);}
97 static HRESULT WINAPI filesys_GetIDsOfNames(IFileSystem3 *iface, REFIID riid,
98 LPOLESTR *rgszNames, UINT cNames,
99 LCID lcid, DISPID *rgDispId)
104 TRACE("(%p)->(%s %p %u %u %p)\n", iface, debugstr_guid(riid), rgszNames, cNames, lcid, rgDispId);
106 hr = get_typeinfo(IFileSystem3_tid, &typeinfo);
109 hr = ITypeInfo_GetIDsOfNames(typeinfo, rgszNames, cNames, rgDispId);
110 ITypeInfo_Release(typeinfo);
116 static HRESULT WINAPI filesys_Invoke(IFileSystem3 *iface, DISPID dispIdMember,
117 REFIID riid, LCID lcid, WORD wFlags,
118 DISPPARAMS *pDispParams, VARIANT *pVarResult,
119 EXCEPINFO *pExcepInfo, UINT *puArgErr)
124 TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", iface, dispIdMember, debugstr_guid(riid),
125 lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
127 hr = get_typeinfo(IFileSystem3_tid, &typeinfo);
130 hr = ITypeInfo_Invoke(typeinfo, &iface, dispIdMember, wFlags,
131 pDispParams, pVarResult, pExcepInfo, puArgErr);
132 ITypeInfo_Release(typeinfo);
138 static HRESULT WINAPI filesys_get_Drives(IFileSystem3 *iface, IDriveCollection **ppdrives)
140 FIXME("%p %p\n", iface, ppdrives);
145 static HRESULT WINAPI filesys_BuildPath(IFileSystem3 *iface, BSTR Path,
146 BSTR Name, BSTR *pbstrResult)
148 FIXME("%p %s %s %p\n", iface, debugstr_w(Path), debugstr_w(Name), pbstrResult);
153 static HRESULT WINAPI filesys_GetDriveName(IFileSystem3 *iface, BSTR Path,
156 FIXME("%p %s %p\n", iface, debugstr_w(Path), pbstrResult);
161 static HRESULT WINAPI filesys_GetParentFolderName(IFileSystem3 *iface, BSTR Path,
164 FIXME("%p %s %p\n", iface, debugstr_w(Path), pbstrResult);
169 static HRESULT WINAPI filesys_GetFileName(IFileSystem3 *iface, BSTR Path,
172 FIXME("%p %s %p\n", iface, debugstr_w(Path), pbstrResult);
177 static HRESULT WINAPI filesys_GetBaseName(IFileSystem3 *iface, BSTR Path,
180 FIXME("%p %s %p\n", iface, debugstr_w(Path), pbstrResult);
185 static HRESULT WINAPI filesys_GetExtensionName(IFileSystem3 *iface, BSTR Path,
188 FIXME("%p %s %p\n", iface, debugstr_w(Path), pbstrResult);
193 static HRESULT WINAPI filesys_GetAbsolutePathName(IFileSystem3 *iface, BSTR Path,
196 FIXME("%p %s %p\n", iface, debugstr_w(Path), pbstrResult);
201 static HRESULT WINAPI filesys_GetTempName(IFileSystem3 *iface, BSTR *pbstrResult)
203 FIXME("%p %p\n", iface, pbstrResult);
208 static HRESULT WINAPI filesys_DriveExists(IFileSystem3 *iface, BSTR DriveSpec,
209 VARIANT_BOOL *pfExists)
211 FIXME("%p %s %p\n", iface, debugstr_w(DriveSpec), pfExists);
216 static HRESULT WINAPI filesys_FileExists(IFileSystem3 *iface, BSTR path, VARIANT_BOOL *ret)
219 TRACE("%p %s %p\n", iface, debugstr_w(path), ret);
221 if (!ret) return E_POINTER;
223 attrs = GetFileAttributesW(path);
224 *ret = attrs != INVALID_FILE_ATTRIBUTES && !(attrs & FILE_ATTRIBUTE_DIRECTORY) ? VARIANT_TRUE : VARIANT_FALSE;
228 static HRESULT WINAPI filesys_FolderExists(IFileSystem3 *iface, BSTR path, VARIANT_BOOL *ret)
231 TRACE("%p %s %p\n", iface, debugstr_w(path), ret);
233 if (!ret) return E_POINTER;
235 attrs = GetFileAttributesW(path);
236 *ret = attrs != INVALID_FILE_ATTRIBUTES && (attrs & FILE_ATTRIBUTE_DIRECTORY) ? VARIANT_TRUE : VARIANT_FALSE;
241 static HRESULT WINAPI filesys_GetDrive(IFileSystem3 *iface, BSTR DriveSpec,
244 FIXME("%p %s %p\n", iface, debugstr_w(DriveSpec), ppdrive);
249 static HRESULT WINAPI filesys_GetFile(IFileSystem3 *iface, BSTR FilePath,
252 FIXME("%p %s %p\n", iface, debugstr_w(FilePath), ppfile);
257 static HRESULT WINAPI filesys_GetFolder(IFileSystem3 *iface, BSTR FolderPath,
260 FIXME("%p %s %p\n", iface, debugstr_w(FolderPath), ppfolder);
265 static HRESULT WINAPI filesys_GetSpecialFolder(IFileSystem3 *iface,
266 SpecialFolderConst SpecialFolder,
269 FIXME("%p %d %p\n", iface, SpecialFolder, ppfolder);
274 static HRESULT WINAPI filesys_DeleteFile(IFileSystem3 *iface, BSTR FileSpec,
277 FIXME("%p %s %d\n", iface, debugstr_w(FileSpec), Force);
282 static HRESULT WINAPI filesys_DeleteFolder(IFileSystem3 *iface, BSTR FolderSpec,
285 FIXME("%p %s %d\n", iface, debugstr_w(FolderSpec), Force);
290 static HRESULT WINAPI filesys_MoveFile(IFileSystem3 *iface, BSTR Source,
293 FIXME("%p %s %s\n", iface, debugstr_w(Source), debugstr_w(Destination));
298 static HRESULT WINAPI filesys_MoveFolder(IFileSystem3 *iface,BSTR Source,
301 FIXME("%p %s %s\n", iface, debugstr_w(Source), debugstr_w(Destination));
306 static HRESULT WINAPI filesys_CopyFile(IFileSystem3 *iface, BSTR Source,
307 BSTR Destination, VARIANT_BOOL OverWriteFiles)
309 FIXME("%p %s %s %d\n", iface, debugstr_w(Source), debugstr_w(Destination), OverWriteFiles);
314 static HRESULT WINAPI filesys_CopyFolder(IFileSystem3 *iface, BSTR Source,
315 BSTR Destination, VARIANT_BOOL OverWriteFiles)
317 FIXME("%p %s %s %d\n", iface, debugstr_w(Source), debugstr_w(Destination), OverWriteFiles);
322 static HRESULT WINAPI filesys_CreateFolder(IFileSystem3 *iface, BSTR Path,
325 FIXME("%p %s %p\n", iface, debugstr_w(Path), ppfolder);
330 static HRESULT WINAPI filesys_CreateTextFile(IFileSystem3 *iface, BSTR FileName,
331 VARIANT_BOOL Overwrite, VARIANT_BOOL Unicode,
334 FIXME("%p %s %d %d %p\n", iface, debugstr_w(FileName), Overwrite, Unicode, ppts);
339 static HRESULT WINAPI filesys_OpenTextFile(IFileSystem3 *iface, BSTR FileName,
340 IOMode IOMode, VARIANT_BOOL Create,
341 Tristate Format, ITextStream **ppts)
343 FIXME("%p %s %d %d %d %p\n", iface, debugstr_w(FileName), IOMode, Create, Format, ppts);
348 static HRESULT WINAPI filesys_GetStandardStream(IFileSystem3 *iface,
349 StandardStreamTypes StandardStreamType,
350 VARIANT_BOOL Unicode,
353 FIXME("%p %d %d %p\n", iface, StandardStreamType, Unicode, ppts);
358 static HRESULT WINAPI filesys_GetFileVersion(IFileSystem3 *iface, BSTR FileName,
361 FIXME("%p %s %p\n", iface, debugstr_w(FileName), FileVersion);
366 static const struct IFileSystem3Vtbl filesys_vtbl =
368 filesys_QueryInterface,
371 filesys_GetTypeInfoCount,
373 filesys_GetIDsOfNames,
377 filesys_GetDriveName,
378 filesys_GetParentFolderName,
381 filesys_GetExtensionName,
382 filesys_GetAbsolutePathName,
386 filesys_FolderExists,
390 filesys_GetSpecialFolder,
392 filesys_DeleteFolder,
397 filesys_CreateFolder,
398 filesys_CreateTextFile,
399 filesys_OpenTextFile,
400 filesys_GetStandardStream,
401 filesys_GetFileVersion
404 static IFileSystem3 filesystem = { &filesys_vtbl };
406 HRESULT WINAPI FileSystem_CreateInstance(IClassFactory *iface, IUnknown *outer, REFIID riid, void **ppv)
408 TRACE("(%p %s %p)\n", outer, debugstr_guid(riid), ppv);
410 return IFileSystem3_QueryInterface(&filesystem, riid, ppv);