|
MythTV master
|
This currently depends on Apple's DiskArbitration framework. More...
#include <libmythui/mediamonitor-darwin.h>
Public Member Functions | |
| MediaMonitorDarwin (QObject *par, unsigned long interval, bool allowEject) | |
| void | StartMonitoring (void) override |
| Start the monitoring thread if needed. More... | |
| bool | AddDevice (MythMediaDevice *pDevice) override |
| Simpler version of MediaMonitorUnix::AddDevice() More... | |
| QStringList | GetCDROMBlockDevices (void) override |
| List of CD/DVD devices. More... | |
Public Member Functions inherited from MediaMonitor | |
| virtual void | deleteLater (void) |
| bool | IsActive (void) const |
| virtual void | StartMonitoring (void) |
| Start the monitoring thread if needed. More... | |
| void | StopMonitoring (void) |
| Stop the monitoring thread if needed. More... | |
| void | ChooseAndEjectMedia (void) |
| Unmounts and ejects removable media devices. More... | |
| void | EjectMedia (const QString &path) |
| bool | ValidateAndLock (MythMediaDevice *pMedia) |
| Validates the MythMediaDevice and increments its reference count. More... | |
| void | Unlock (MythMediaDevice *pMedia) |
| decrements the MythMediaDevices reference count More... | |
| QList< MythMediaDevice * > | GetRemovable (bool showMounted=false, bool showUsable=false) |
| Generate a list of removable drives. More... | |
| QList< MythMediaDevice * > | GetMedias (unsigned mediatypes) |
| Ask for available media. More... | |
| MythMediaDevice * | GetMedia (const QString &path) |
| Get media device by pathname. More... | |
| void | RegisterMediaHandler (const QString &destination, const QString &description, MediaCallback callback, int mediaType, const QString &extensions) |
| Register a handler for media related events. More... | |
| void | JumpToMediaHandler (MythMediaDevice *pMedia, bool forcePlayback=false) |
| Find a relevant jump point for this type of media. More... | |
| virtual QStringList | GetCDROMBlockDevices (void)=0 |
Additional Inherited Members | |
Public Slots inherited from MediaMonitor | |
| void | mediaStatusChanged (MythMediaStatus oldStatus, MythMediaDevice *pMedia) const |
| Slot which is called when the device status changes and posts a media event to the mainwindow. More... | |
Static Public Member Functions inherited from MediaMonitor | |
| static MediaMonitor * | GetMediaMonitor (void) |
| static QString | GetMountPath (const QString &devPath) |
| If the device is being monitored, return its mountpoint. More... | |
| static void | SetCDSpeed (const char *device, int speed) |
| static QString | defaultCDdevice () |
| CDDevice, user-selected drive, or /dev/cdrom. More... | |
| static QString | defaultVCDdevice () |
| VCDDeviceLocation, user-selected drive, or /dev/cdrom. More... | |
| static QString | defaultDVDdevice () |
| DVDDeviceLocation, user-selected drive, or /dev/dvd. More... | |
| static QString | defaultCDWriter () |
| CDWriterDeviceLocation, user-selected drive, or /dev/cdrom. More... | |
| static QString | defaultDVDWriter () |
| MythArchiveDVDLocation, user-selected drive, or /dev/dvd. More... | |
| static void | ejectOpticalDisc (void) |
| Eject a disk, unmount a drive, open a tray. More... | |
Protected Member Functions inherited from MediaMonitor | |
| MediaMonitor (QObject *par, unsigned long interval, bool allowEject) | |
| Lookup some settings, and do OS-specific stuff in sub-classes. More... | |
| ~MediaMonitor () override=default | |
| void | CheckDevices (void) |
| Poll the devices in our list. More... | |
| virtual void | CheckDeviceNotifications (void) |
| virtual bool | AddDevice (MythMediaDevice *pDevice)=0 |
| bool | RemoveDevice (const QString &dev) |
| Remove a device from the media monitor. More... | |
| bool | shouldIgnore (const MythMediaDevice *device) |
| Check user preferences to see if this device should be monitored. More... | |
| bool | eventFilter (QObject *obj, QEvent *event) override |
| Installed into the main window's event chain, so that the main thread can safely jump to plugin code. More... | |
| QString | listDevices (void) |
| A string summarising the current devices, for debugging. More... | |
| MythMediaDevice * | selectDrivePopup (const QString &label, bool &canceled, bool showMounted=false, bool showUsable=false) |
| List removable drives, let the user select one. More... | |
Static Protected Member Functions inherited from MediaMonitor | |
| static void | AttemptEject (MythMediaDevice *device) |
| static QString | defaultDevice (const QString &setting, const QString &label, const char *hardCodedDefault) |
Protected Attributes inherited from MediaMonitor | |
| QRecursiveMutex | m_devicesLock |
| QList< MythMediaDevice * > | m_devices |
| QList< MythMediaDevice * > | m_removedDevices |
| QMap< MythMediaDevice *, int > | m_useCount |
| QStringList | m_ignoreList |
| bool volatile | m_active {false} |
| Was MonitorThread started? More... | |
| QWaitCondition | m_wait |
| MonitorThread * | m_thread {nullptr} |
| unsigned long | m_monitorPollingInterval |
| bool | m_allowEject |
| QMap< QString, MHData > | m_handlerMap |
| Registered Media Handlers. More... | |
Static Protected Attributes inherited from MediaMonitor | |
| static MediaMonitor * | s_monitor = nullptr |
This currently depends on Apple's DiskArbitration framework.
Only recent versions of OS X have this.
Definition at line 21 of file mediamonitor-darwin.h.
|
inline |
Definition at line 24 of file mediamonitor-darwin.h.
|
overridevirtual |
Simpler version of MediaMonitorUnix::AddDevice()
This doesn't do the stat() or duplicate checking.
Implements MediaMonitor.
Definition at line 560 of file mediamonitor-darwin.cpp.
|
overridevirtual |
List of CD/DVD devices.
On Unix, this returns a list of /dev nodes which can be open()d. Darwin doesn't have fixed devices for removables/pluggables, so this method is actually useless as it stands. In the long term, this method should return both a name, and an opaque type? (for the IOKit io_object_t)
Implements MediaMonitor.
Definition at line 637 of file mediamonitor-darwin.cpp.
|
overridevirtual |
Start the monitoring thread if needed.
Reimplemented from MediaMonitor.
Definition at line 533 of file mediamonitor-darwin.cpp.