Imported Upstream version 16.3.2
[platform/upstream/libzypp.git] / zypp / media / MediaCD.h
index 4a39e43..4cd3527 100644 (file)
@@ -28,24 +28,38 @@ namespace zypp {
     class MediaCD : public MediaHandler {
 
       private:
-
         typedef std::list<MediaSource> DeviceList;
         /** list of devices to try to mount */
-        DeviceList _devices;
+        mutable DeviceList _devices;
 
         /** number of last successful mounted device in list */
         int        _lastdev;
+        int        _lastdev_tried;
 
         static bool openTray( const std::string & device_r );
         static bool closeTray( const std::string & device_r );
 
-       DeviceList  detectDevices(bool supportingDVD);
+       DeviceList  detectDevices(bool supportingDVD) const;
 
       protected:
 
-        MEDIA_HANDLER_API;
+       virtual void attachTo (bool next = false);
+        virtual void releaseFrom( const std::string & ejectDev );
+       virtual void getFile( const Pathname & filename ) const;
+       virtual void getDir( const Pathname & dirname, bool recurse_r ) const;
+        virtual void getDirInfo( std::list<std::string> & retlist,
+                                 const Pathname & dirname, bool dots = true ) const;
+        virtual void getDirInfo( filesystem::DirContent & retlist,
+                                 const Pathname & dirname, bool dots = true ) const;
+        virtual bool getDoesFileExist( const Pathname & filename ) const;
+
+        virtual void forceEject(const std::string & ejectDev);
+
+        virtual bool hasMoreDevices();
 
-        virtual void forceEject();
+        virtual void
+        getDetectedDevices(std::vector<std::string> & devices,
+                           unsigned int & index) const;
 
       public: