1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
#pragma once
/*
* Copyright (C) 2005-2013 Team XBMC
* http://xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This Program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#include "MediaSource.h" // for VECSOURCES
#include <map>
#include "utils/Job.h"
#include "IStorageProvider.h"
#include "threads/CriticalSection.h"
#define TRAY_OPEN 16
#define TRAY_CLOSED_NO_MEDIA 64
#define TRAY_CLOSED_MEDIA_PRESENT 96
#define DRIVE_OPEN 0 // Open...
#define DRIVE_NOT_READY 1 // Opening.. Closing...
#define DRIVE_READY 2
#define DRIVE_CLOSED_NO_MEDIA 3 // CLOSED...but no media in drive
#define DRIVE_CLOSED_MEDIA_PRESENT 4 // Will be send once when the drive just have closed
#define DRIVE_NONE 5 // system doesn't have an optical drive
class CNetworkLocation
{
public:
CNetworkLocation() { id = 0; };
int id;
std::string path;
};
class CMediaManager : public IStorageEventsCallback, public IJobCallback
{
public:
CMediaManager();
void Initialize();
void Stop();
bool LoadSources();
bool SaveSources();
void GetLocalDrives(VECSOURCES &localDrives, bool includeQ = true);
void GetRemovableDrives(VECSOURCES &removableDrives);
void GetNetworkLocations(VECSOURCES &locations, bool autolocations = true);
bool AddNetworkLocation(const std::string &path);
bool HasLocation(const std::string& path) const;
bool RemoveLocation(const std::string& path);
bool SetLocationPath(const std::string& oldPath, const std::string& newPath);
void AddAutoSource(const CMediaSource &share, bool bAutorun=false);
void RemoveAutoSource(const CMediaSource &share);
bool IsDiscInDrive(const std::string& devicePath="");
bool IsAudio(const std::string& devicePath="");
bool HasOpticalDrive();
std::string TranslateDevicePath(const std::string& devicePath, bool bReturnAsDevice=false);
DWORD GetDriveStatus(const std::string& devicePath="");
#ifdef HAS_DVD_DRIVE
MEDIA_DETECT::CCdInfo* GetCdInfo(const std::string& devicePath="");
bool RemoveCdInfo(const std::string& devicePath="");
std::string GetDiskLabel(const std::string& devicePath="");
std::string GetDiskUniqueId(const std::string& devicePath="");
#endif
std::string GetDiscPath();
void SetHasOpticalDrive(bool bstatus);
bool Eject(const std::string& mountpath);
void EjectTray( const bool bEject=true, const char cDriveLetter='\0' );
void CloseTray(const char cDriveLetter='\0');
void ToggleTray(const char cDriveLetter='\0');
void ProcessEvents();
std::vector<std::string> GetDiskUsage();
virtual void OnStorageAdded(const std::string &label, const std::string &path);
virtual void OnStorageSafelyRemoved(const std::string &label);
virtual void OnStorageUnsafelyRemoved(const std::string &label);
virtual void OnJobComplete(unsigned int jobID, bool success, CJob *job) { }
protected:
std::vector<CNetworkLocation> m_locations;
CCriticalSection m_muAutoSource, m_CritSecStorageProvider;
#ifdef HAS_DVD_DRIVE
std::map<std::string,MEDIA_DETECT::CCdInfo*> m_mapCdInfo;
#endif
bool m_bhasoptical;
std::string m_strFirstAvailDrive;
private:
IStorageProvider *m_platformStorage;
};
extern class CMediaManager g_mediaManager;
|