1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/volume.cpp
3 // Purpose: wxFSVolume - encapsulates system volume information
4 // Author: George Policello
8 // Copyright: (c) 2002 George Policello
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #include "wx/wxprec.h"
28 #include "wx/volume.h"
35 #include "wx/hashmap.h"
39 #include "wx/dynlib.h"
40 #include "wx/arrimpl.cpp"
44 #include "wx/msw/missing.h"
48 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
49 // Dynamic library function defs.
50 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
52 #if wxUSE_DYNLIB_CLASS
53 static wxDynamicLibrary s_mprLib
;
56 typedef DWORD (WINAPI
* WNetOpenEnumPtr
)(DWORD
, DWORD
, DWORD
, LPNETRESOURCE
, LPHANDLE
);
57 typedef DWORD (WINAPI
* WNetEnumResourcePtr
)(HANDLE
, LPDWORD
, LPVOID
, LPDWORD
);
58 typedef DWORD (WINAPI
* WNetCloseEnumPtr
)(HANDLE
);
60 static WNetOpenEnumPtr s_pWNetOpenEnum
;
61 static WNetEnumResourcePtr s_pWNetEnumResource
;
62 static WNetCloseEnumPtr s_pWNetCloseEnum
;
64 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
66 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
67 static long s_cancelSearch
= FALSE
;
71 FileInfo(unsigned flag
=0, wxFSVolumeKind type
=wxFS_VOL_OTHER
) :
72 m_flags(flag
), m_type(type
) {}
74 FileInfo(const FileInfo
& other
) { *this = other
; }
75 FileInfo
& operator=(const FileInfo
& other
)
77 m_flags
= other
.m_flags
;
78 m_type
= other
.m_type
;
83 wxFSVolumeKind m_type
;
85 WX_DECLARE_STRING_HASH_MAP(FileInfo
, FileInfoMap
);
86 // Cygwin bug (?) destructor for global s_fileInfo is called twice...
87 static FileInfoMap
& GetFileInfoMap()
89 static FileInfoMap
s_fileInfo(25);
93 #define s_fileInfo (GetFileInfoMap())
95 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
96 // Local helper functions.
97 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
99 //=============================================================================
100 // Function: GetBasicFlags
101 // Purpose: Set basic flags, primarily wxFS_VOL_REMOTE and wxFS_VOL_REMOVABLE.
102 // Notes: - Local and mapped drives are mounted by definition. We have no
103 // way to determine mounted status of network drives, so assume that
104 // all drives are mounted, and let the caller decide otherwise.
105 // - Other flags are 'best guess' from type of drive. The system will
106 // not report the file attributes with any degree of accuracy.
107 //=============================================================================
108 static unsigned GetBasicFlags(const wxChar
* filename
)
110 unsigned flags
= wxFS_VOL_MOUNTED
;
112 //----------------------------------
113 // 'Best Guess' based on drive type.
114 //----------------------------------
116 switch(GetDriveType(filename
))
119 type
= wxFS_VOL_DISK
;
122 case DRIVE_REMOVABLE
:
123 flags
|= wxFS_VOL_REMOVABLE
;
124 type
= wxFS_VOL_FLOPPY
;
128 flags
|= wxFS_VOL_REMOVABLE
| wxFS_VOL_READONLY
;
129 type
= wxFS_VOL_CDROM
;
133 flags
|= wxFS_VOL_REMOTE
;
134 type
= wxFS_VOL_NETWORK
;
137 case DRIVE_NO_ROOT_DIR
:
138 flags
&= ~wxFS_VOL_MOUNTED
;
139 type
= wxFS_VOL_OTHER
;
143 type
= wxFS_VOL_OTHER
;
147 //-----------------------------------------------------------------------
148 // The following most likely will not modify anything not set above,
149 // and will not work at all for network shares or empty CD ROM drives.
150 // But it is a good check if the Win API ever gets better about reporting
152 //-----------------------------------------------------------------------
154 long rc
= SHGetFileInfo(filename
, 0, &fi
, sizeof(fi
), SHGFI_ATTRIBUTES
);
157 // this error is not fatal, so don't show a message to the user about
158 // it, otherwise it would appear every time a generic directory picker
159 // dialog is used and there is a connected network drive
160 wxLogLastError(_T("SHGetFileInfo"));
164 if (fi
.dwAttributes
& SFGAO_READONLY
)
165 flags
|= wxFS_VOL_READONLY
;
166 if (fi
.dwAttributes
& SFGAO_REMOVABLE
)
167 flags
|= wxFS_VOL_REMOVABLE
;
173 s_fileInfo
[filename
] = FileInfo(flags
, type
);
178 //=============================================================================
179 // Function: FilteredAdd
180 // Purpose: Add a file to the list if it meets the filter requirement.
181 // Notes: - See GetBasicFlags for remarks about the Mounted flag.
182 //=============================================================================
183 static bool FilteredAdd(wxArrayString
& list
, const wxChar
* filename
,
184 unsigned flagsSet
, unsigned flagsUnset
)
187 unsigned flags
= GetBasicFlags(filename
);
189 if (flagsSet
& wxFS_VOL_MOUNTED
&& !(flags
& wxFS_VOL_MOUNTED
))
191 else if (flagsUnset
& wxFS_VOL_MOUNTED
&& (flags
& wxFS_VOL_MOUNTED
))
193 else if (flagsSet
& wxFS_VOL_REMOVABLE
&& !(flags
& wxFS_VOL_REMOVABLE
))
195 else if (flagsUnset
& wxFS_VOL_REMOVABLE
&& (flags
& wxFS_VOL_REMOVABLE
))
197 else if (flagsSet
& wxFS_VOL_READONLY
&& !(flags
& wxFS_VOL_READONLY
))
199 else if (flagsUnset
& wxFS_VOL_READONLY
&& (flags
& wxFS_VOL_READONLY
))
201 else if (flagsSet
& wxFS_VOL_REMOTE
&& !(flags
& wxFS_VOL_REMOTE
))
203 else if (flagsUnset
& wxFS_VOL_REMOTE
&& (flags
& wxFS_VOL_REMOTE
))
206 // Add to the list if passed the filter.
213 //=============================================================================
214 // Function: BuildListFromNN
215 // Purpose: Append or remove items from the list
216 // Notes: - There is no way to find all disconnected NN items, or even to find
217 // all items while determining which are connected and not. So this
218 // function will find either all items or connected items.
219 //=============================================================================
220 static void BuildListFromNN(wxArrayString
& list
, NETRESOURCE
* pResSrc
,
221 unsigned flagsSet
, unsigned flagsUnset
)
226 //-----------------------------------------------
227 // Scope may be all drives or all mounted drives.
228 //-----------------------------------------------
229 unsigned scope
= RESOURCE_GLOBALNET
;
230 if (flagsSet
& wxFS_VOL_MOUNTED
)
231 scope
= RESOURCE_CONNECTED
;
233 //----------------------------------------------------------------------
234 // Enumerate all items, adding only non-containers (ie. network shares).
235 // Containers cause a recursive call to this function for their own
237 //----------------------------------------------------------------------
238 if (rc
= s_pWNetOpenEnum(scope
, RESOURCETYPE_DISK
, 0, pResSrc
, &hEnum
), rc
== NO_ERROR
)
242 NETRESOURCE
* pRes
= (NETRESOURCE
*)malloc(size
);
243 memset(pRes
, 0, sizeof(NETRESOURCE
));
244 while (rc
= s_pWNetEnumResource(hEnum
, &count
, pRes
, &size
), rc
== NO_ERROR
|| rc
== ERROR_MORE_DATA
)
249 if (rc
== ERROR_MORE_DATA
)
251 pRes
= (NETRESOURCE
*)realloc(pRes
, size
);
256 // Enumerate the container.
257 if (pRes
->dwUsage
& RESOURCEUSAGE_CONTAINER
)
259 BuildListFromNN(list
, pRes
, flagsSet
, flagsUnset
);
262 // Add the network share.
265 wxString
filename(pRes
->lpRemoteName
);
267 if (!filename
.empty())
269 if (filename
.Last() != '\\')
270 filename
.Append('\\');
272 // The filter function will not know mounted from unmounted, and neither do we unless
273 // we are iterating using RESOURCE_CONNECTED, in which case they all are mounted.
274 // Volumes on disconnected servers, however, will correctly show as unmounted.
275 FilteredAdd(list
, filename
.wx_str(), flagsSet
, flagsUnset
&~wxFS_VOL_MOUNTED
);
276 if (scope
== RESOURCE_GLOBALNET
)
277 s_fileInfo
[filename
].m_flags
&= ~wxFS_VOL_MOUNTED
;
285 s_pWNetCloseEnum(hEnum
);
289 //=============================================================================
290 // Function: CompareFcn
291 // Purpose: Used to sort the NN list alphabetically, case insensitive.
292 //=============================================================================
293 static int CompareFcn(const wxString
& first
, const wxString
& second
)
295 return wxStricmp(first
.c_str(), second
.c_str());
298 //=============================================================================
299 // Function: BuildRemoteList
300 // Purpose: Append Network Neighborhood items to the list.
301 // Notes: - Mounted gets transalated into Connected. FilteredAdd is told
302 // to ignore the Mounted flag since we need to handle it in a weird
304 // - The resulting list is sorted alphabetically.
305 //=============================================================================
306 static bool BuildRemoteList(wxArrayString
& list
, NETRESOURCE
* pResSrc
,
307 unsigned flagsSet
, unsigned flagsUnset
)
309 // NN query depends on dynamically loaded library.
310 if (!s_pWNetOpenEnum
|| !s_pWNetEnumResource
|| !s_pWNetCloseEnum
)
312 wxLogError(_("Failed to load mpr.dll."));
316 // Don't waste time doing the work if the flags conflict.
317 if (flagsSet
& wxFS_VOL_MOUNTED
&& flagsUnset
& wxFS_VOL_MOUNTED
)
320 //----------------------------------------------
321 // Generate the list according to the flags set.
322 //----------------------------------------------
323 BuildListFromNN(list
, pResSrc
, flagsSet
, flagsUnset
);
324 list
.Sort(CompareFcn
);
326 //-------------------------------------------------------------------------
327 // If mounted only is requested, then we only need one simple pass.
328 // Otherwise, we need to build a list of all NN volumes and then apply the
329 // list of mounted drives to it.
330 //-------------------------------------------------------------------------
331 if (!(flagsSet
& wxFS_VOL_MOUNTED
))
334 wxArrayString mounted
;
335 BuildListFromNN(mounted
, pResSrc
, flagsSet
| wxFS_VOL_MOUNTED
, flagsUnset
& ~wxFS_VOL_MOUNTED
);
336 mounted
.Sort(CompareFcn
);
338 // apply list from bottom to top to preserve indexes if removing items.
339 ssize_t iList
= list
.GetCount()-1;
340 for (ssize_t iMounted
= mounted
.GetCount()-1; iMounted
>= 0 && iList
>= 0; iMounted
--)
343 wxString
all(list
[iList
]);
344 wxString
mount(mounted
[iMounted
]);
347 wxStricmp(list
[iList
].c_str(), mounted
[iMounted
].c_str()),
348 compare
> 0 && iList
>= 0)
357 // Found the element. Remove it or mark it mounted.
358 if (flagsUnset
& wxFS_VOL_MOUNTED
)
359 list
.RemoveAt(iList
);
361 s_fileInfo
[list
[iList
]].m_flags
|= wxFS_VOL_MOUNTED
;
372 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
374 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
376 //=============================================================================
377 // Function: GetVolumes
378 // Purpose: Generate and return a list of all volumes (drives) available.
380 //=============================================================================
381 wxArrayString
wxFSVolumeBase::GetVolumes(int flagsSet
, int flagsUnset
)
383 ::InterlockedExchange(&s_cancelSearch
, FALSE
); // reset
385 #if wxUSE_DYNLIB_CLASS
386 if (!s_mprLib
.IsLoaded() && s_mprLib
.Load(_T("mpr.dll")))
389 s_pWNetOpenEnum
= (WNetOpenEnumPtr
)s_mprLib
.GetSymbol(_T("WNetOpenEnumW"));
390 s_pWNetEnumResource
= (WNetEnumResourcePtr
)s_mprLib
.GetSymbol(_T("WNetEnumResourceW"));
392 s_pWNetOpenEnum
= (WNetOpenEnumPtr
)s_mprLib
.GetSymbol(_T("WNetOpenEnumA"));
393 s_pWNetEnumResource
= (WNetEnumResourcePtr
)s_mprLib
.GetSymbol(_T("WNetEnumResourceA"));
395 s_pWNetCloseEnum
= (WNetCloseEnumPtr
)s_mprLib
.GetSymbol(_T("WNetCloseEnum"));
401 //-------------------------------
402 // Local and mapped drives first.
403 //-------------------------------
404 // Allocate the required space for the API call.
405 const DWORD chars
= GetLogicalDriveStrings(0, NULL
);
406 TCHAR
* buf
= new TCHAR
[chars
+1];
408 // Get the list of drives.
409 GetLogicalDriveStrings(chars
, buf
);
411 // Parse the list into an array, applying appropriate filters.
416 FilteredAdd(list
, pVol
, flagsSet
, flagsUnset
);
417 pVol
= pVol
+ wxStrlen(pVol
) + 1;
423 //---------------------------
424 // Network Neighborhood next.
425 //---------------------------
427 // not exclude remote and not removable
428 if (!(flagsUnset
& wxFS_VOL_REMOTE
) &&
429 !(flagsSet
& wxFS_VOL_REMOVABLE
)
432 // The returned list will be sorted alphabetically. We don't pass
433 // our in since we don't want to change to order of the local drives.
435 if (BuildRemoteList(nn
, 0, flagsSet
, flagsUnset
))
437 for (size_t idx
= 0; idx
< nn
.GetCount(); idx
++)
445 //=============================================================================
446 // Function: CancelSearch
447 // Purpose: Instruct an active search to stop.
448 // Notes: - This will only sensibly be called by a thread other than the one
449 // performing the search. This is the only thread-safe function
450 // provided by the class.
451 //=============================================================================
452 void wxFSVolumeBase::CancelSearch()
454 ::InterlockedExchange(&s_cancelSearch
, TRUE
);
457 //=============================================================================
458 // Function: constructor
459 // Purpose: default constructor
460 //=============================================================================
461 wxFSVolumeBase::wxFSVolumeBase()
466 //=============================================================================
467 // Function: constructor
468 // Purpose: constructor that calls Create
469 //=============================================================================
470 wxFSVolumeBase::wxFSVolumeBase(const wxString
& name
)
475 //=============================================================================
477 // Purpose: Finds, logs in, etc. to the request volume.
478 //=============================================================================
479 bool wxFSVolumeBase::Create(const wxString
& name
)
489 long rc
= SHGetFileInfo(m_volName
.wx_str(), 0, &fi
, sizeof(fi
), SHGFI_DISPLAYNAME
);
492 wxLogError(_("Cannot read typename from '%s'!"), m_volName
.c_str());
495 m_dispName
= fi
.szDisplayName
;
498 return m_isOk
= true;
501 //=============================================================================
503 // Purpose: returns true if the volume is legal.
504 // Notes: For fixed disks, it must exist. For removable disks, it must also
505 // be present. For Network Shares, it must also be logged in, etc.
506 //=============================================================================
507 bool wxFSVolumeBase::IsOk() const
512 //=============================================================================
514 // Purpose: Return the type of the volume.
515 //=============================================================================
516 wxFSVolumeKind
wxFSVolumeBase::GetKind() const
519 return wxFS_VOL_OTHER
;
521 FileInfoMap::iterator itr
= s_fileInfo
.find(m_volName
);
522 if (itr
== s_fileInfo
.end())
523 return wxFS_VOL_OTHER
;
525 return itr
->second
.m_type
;
528 //=============================================================================
529 // Function: GetFlags
530 // Purpose: Return the caches flags for this volume.
531 // Notes: - Returns -1 if no flags were cached.
532 //=============================================================================
533 int wxFSVolumeBase::GetFlags() const
538 FileInfoMap::iterator itr
= s_fileInfo
.find(m_volName
);
539 if (itr
== s_fileInfo
.end())
542 return itr
->second
.m_flags
;
547 // ============================================================================
549 // ============================================================================
553 void wxFSVolume::InitIcons()
555 m_icons
.Alloc(wxFS_VOL_ICO_MAX
);
557 for (int idx
= 0; idx
< wxFS_VOL_ICO_MAX
; idx
++)
561 //=============================================================================
563 // Purpose: return the requested icon.
564 //=============================================================================
566 wxIcon
wxFSVolume::GetIcon(wxFSIconType type
) const
568 wxCHECK_MSG( type
>= 0 && (size_t)type
< m_icons
.GetCount(), wxNullIcon
,
569 _T("wxFSIconType::GetIcon(): invalid icon index") );
572 if (m_icons
[type
].IsNull())
574 UINT flags
= SHGFI_ICON
;
577 case wxFS_VOL_ICO_SMALL
:
578 flags
|= SHGFI_SMALLICON
;
581 case wxFS_VOL_ICO_LARGE
:
582 flags
|= SHGFI_SHELLICONSIZE
;
585 case wxFS_VOL_ICO_SEL_SMALL
:
586 flags
|= SHGFI_SMALLICON
| SHGFI_OPENICON
;
589 case wxFS_VOL_ICO_SEL_LARGE
:
590 flags
|= SHGFI_SHELLICONSIZE
| SHGFI_OPENICON
;
593 case wxFS_VOL_ICO_MAX
:
594 wxFAIL_MSG(_T("wxFS_VOL_ICO_MAX is not valid icon type"));
599 long rc
= SHGetFileInfo(m_volName
.wx_str(), 0, &fi
, sizeof(fi
), flags
);
600 m_icons
[type
].SetHICON((WXHICON
)fi
.hIcon
);
601 if (!rc
|| !fi
.hIcon
)
602 wxLogError(_("Cannot load icon from '%s'."), m_volName
.c_str());
605 return m_icons
[type
];
610 #endif // wxUSE_FSVOLUME