use wildcard to get files in our library makefiles
[ntk/apt.git] / apt-pkg / cdrom.h
CommitLineData
a75c6a6e
MZ
1#ifndef PKGLIB_CDROM_H
2#define PKGLIB_CDROM_H
3
ce62f1de
DK
4#include <apt-pkg/macros.h>
5
a75c6a6e
MZ
6#include<string>
7#include<vector>
8
453b82a3
DK
9#include <stddef.h>
10
a4f6bdc8 11#ifndef APT_8_CLEANER_HEADERS
b9dadc24 12#include <apt-pkg/init.h>
a4f6bdc8
DK
13using namespace std;
14#endif
15
472ff00e
DK
16class Configuration;
17class OpProgress;
a75c6a6e 18
92fcbfc1 19class pkgCdromStatus /*{{{*/
a75c6a6e
MZ
20{
21 protected:
22 int totalSteps;
23
24 public:
4ccd3b3c 25 pkgCdromStatus() : totalSteps(0) {};
a75c6a6e
MZ
26 virtual ~pkgCdromStatus() {};
27
28 // total steps
29 virtual void SetTotal(int total) { totalSteps = total; };
30 // update steps, will be called regularly as a "pulse"
8f3ba4e8 31 virtual void Update(std::string text="", int current=0) = 0;
a75c6a6e
MZ
32
33 // ask for cdrom insert
34 virtual bool ChangeCdrom() = 0;
35 // ask for cdrom name
8f3ba4e8 36 virtual bool AskCdromName(std::string &Name) = 0;
a75c6a6e
MZ
37 // Progress indicator for the Index rewriter
38 virtual OpProgress* GetOpProgress() {return NULL; };
39};
92fcbfc1
DK
40 /*}}}*/
41class pkgCdrom /*{{{*/
a75c6a6e
MZ
42{
43 protected:
44 enum {
45 STEP_PREPARE = 1,
46 STEP_UNMOUNT,
47 STEP_WAIT,
48 STEP_MOUNT,
49 STEP_IDENT,
50 STEP_SCAN,
51 STEP_COPY,
52 STEP_WRITE,
53 STEP_UNMOUNT3,
54 STEP_LAST
55 };
56
57
8f3ba4e8
DK
58 bool FindPackages(std::string CD,
59 std::vector<std::string> &List,
60 std::vector<std::string> &SList,
61 std::vector<std::string> &SigList,
62 std::vector<std::string> &TransList,
63 std::string &InfoDir, pkgCdromStatus *log,
a75c6a6e 64 unsigned int Depth = 0);
8f3ba4e8
DK
65 bool DropBinaryArch(std::vector<std::string> &List);
66 bool DropRepeats(std::vector<std::string> &List,const char *Name);
c45233ea 67 bool DropTranslation(std::vector<std::string> &List);
8f3ba4e8 68 void ReduceSourcelist(std::string CD,std::vector<std::string> &List);
a75c6a6e 69 bool WriteDatabase(Configuration &Cnf);
8f3ba4e8
DK
70 bool WriteSourceList(std::string Name,std::vector<std::string> &List,bool Source);
71 int Score(std::string Path);
a75c6a6e
MZ
72
73 public:
8f3ba4e8 74 bool Ident(std::string &ident, pkgCdromStatus *log);
a75c6a6e 75 bool Add(pkgCdromStatus *log);
ce55512d
DK
76
77 private:
ce62f1de 78 APT_HIDDEN bool MountAndIdentCDROM(Configuration &Database, std::string &CDROM,
b374004b 79 std::string &ident, pkgCdromStatus * const log, bool const interactive);
a75c6a6e 80};
92fcbfc1 81 /*}}}*/
a75c6a6e 82
a75c6a6e 83
f4c4a24e 84// class that uses libudev to find cdrom/removable devices dynamically
3e2d7cce 85struct CdromDevice /*{{{*/
cbc9bed8 86{
8f3ba4e8 87 std::string DeviceName;
cbc9bed8 88 bool Mounted;
8f3ba4e8 89 std::string MountPath;
cbc9bed8 90};
3e2d7cce
MV
91 /*}}}*/
92class pkgUdevCdromDevices /*{{{*/
cbc9bed8
MV
93{
94 protected:
1e3f4083 95 // libudev dlopen structure
cbc9bed8
MV
96 void *libudev_handle;
97 struct udev* (*udev_new)(void);
98 int (*udev_enumerate_add_match_property)(struct udev_enumerate *udev_enumerate, const char *property, const char *value);
99 int (*udev_enumerate_scan_devices)(struct udev_enumerate *udev_enumerate);
100 struct udev_list_entry* (*udev_enumerate_get_list_entry)(struct udev_enumerate *udev_enumerate);
101 struct udev_device* (*udev_device_new_from_syspath)(struct udev *udev, const char *syspath);
102 struct udev* (*udev_enumerate_get_udev)(struct udev_enumerate *udev_enumerate);
103 const char* (*udev_list_entry_get_name)(struct udev_list_entry *list_entry);
104 const char* (*udev_device_get_devnode)(struct udev_device *udev_device);
105 struct udev_enumerate *(*udev_enumerate_new) (struct udev *udev);
106 struct udev_list_entry *(*udev_list_entry_get_next)(struct udev_list_entry *list_entry);
107 const char* (*udev_device_get_property_value)(struct udev_device *udev_device, const char *key);
f7cbd1fb 108 int (*udev_enumerate_add_match_sysattr)(struct udev_enumerate *udev_enumerate, const char *property, const char *value);
cbc9bed8
MV
109 // end libudev dlopen
110
111 public:
112 pkgUdevCdromDevices();
113 virtual ~pkgUdevCdromDevices();
114
115 // try to open
116 bool Dlopen();
f4c4a24e 117
f2e4a11d
MV
118 // convenience interface, this will just call ScanForRemovable
119 // with "APT::cdrom::CdromOnly"
8f3ba4e8 120 std::vector<CdromDevice> Scan();
f4c4a24e 121
8f3ba4e8 122 std::vector<CdromDevice> ScanForRemovable(bool CdromOnly);
cbc9bed8 123};
3e2d7cce 124 /*}}}*/
a75c6a6e
MZ
125
126#endif