cdrom.cc 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. // -*- mode: cpp; mode: fold -*-
  2. // Description /*{{{*/
  3. // $Id: cdrom.cc,v 1.15 1999/10/02 04:14:54 jgg Exp $
  4. /* ######################################################################
  5. CDROM URI method for APT
  6. ##################################################################### */
  7. /*}}}*/
  8. // Include Files /*{{{*/
  9. #include <apt-pkg/acquire-method.h>
  10. #include <apt-pkg/cdromutl.h>
  11. #include <apt-pkg/error.h>
  12. #include <apt-pkg/configuration.h>
  13. #include <apt-pkg/fileutl.h>
  14. #include <sys/stat.h>
  15. #include <unistd.h>
  16. /*}}}*/
  17. class CDROMMethod : public pkgAcqMethod
  18. {
  19. bool DatabaseLoaded;
  20. ::Configuration Database;
  21. string CurrentID;
  22. virtual bool Fetch(FetchItem *Itm);
  23. string GetID(string Name);
  24. public:
  25. CDROMMethod();
  26. };
  27. // CDROMMethod::CDROMethod - Constructor /*{{{*/
  28. // ---------------------------------------------------------------------
  29. /* */
  30. CDROMMethod::CDROMMethod() : pkgAcqMethod("1.0",SingleInstance | LocalOnly |
  31. SendConfig), DatabaseLoaded(false)
  32. {
  33. };
  34. /*}}}*/
  35. // CDROMMethod::GetID - Search the database for a matching string /*{{{*/
  36. // ---------------------------------------------------------------------
  37. /* */
  38. string CDROMMethod::GetID(string Name)
  39. {
  40. // Search for an ID
  41. const Configuration::Item *Top = Database.Tree("CD");
  42. if (Top != 0)
  43. Top = Top->Child;
  44. for (; Top != 0;)
  45. {
  46. if (Top->Value == Name)
  47. return Top->Tag;
  48. Top = Top->Next;
  49. }
  50. return string();
  51. }
  52. /*}}}*/
  53. // CDROMMethod::Fetch - Fetch a file /*{{{*/
  54. // ---------------------------------------------------------------------
  55. /* */
  56. bool CDROMMethod::Fetch(FetchItem *Itm)
  57. {
  58. URI Get = Itm->Uri;
  59. string File = Get.Path;
  60. FetchResult Res;
  61. bool Debug = _config->FindB("Debug::Acquire::cdrom",false);
  62. /* All IMS queries are returned as a hit, CDROMs are readonly so
  63. time stamps never change */
  64. if (Itm->LastModified != 0)
  65. {
  66. Res.LastModified = Itm->LastModified;
  67. Res.IMSHit = true;
  68. Res.Filename = File;
  69. URIDone(Res);
  70. return true;
  71. }
  72. // Load the database
  73. if (DatabaseLoaded == false)
  74. {
  75. // Read the database
  76. string DFile = _config->FindFile("Dir::State::cdroms");
  77. if (FileExists(DFile) == true)
  78. {
  79. if (ReadConfigFile(Database,DFile) == false)
  80. return _error->Error("Unable to read the cdrom database %s",
  81. DFile.c_str());
  82. }
  83. DatabaseLoaded = true;
  84. }
  85. // All non IMS queries for package files fail.
  86. if (Itm->IndexFile == true || GetID(Get.Host).empty() == true)
  87. {
  88. Fail("Please use apt-cdrom to make this CD recognized by APT."
  89. " apt-get update cannot be used to add new CDs");
  90. return true;
  91. }
  92. // We already have a CD inserted, but it is the wrong one
  93. if (CurrentID.empty() == false && Database.Find("CD::" + CurrentID) != Get.Host)
  94. {
  95. Fail("Wrong CD",true);
  96. return true;
  97. }
  98. string CDROM = _config->FindDir("Acquire::cdrom::mount","/cdrom/");
  99. if (CDROM[0] == '.')
  100. CDROM= SafeGetCWD() + '/' + CDROM;
  101. string NewID;
  102. while (CurrentID.empty() == true)
  103. {
  104. bool Hit = false;
  105. for (unsigned int Version = 2; Version != 0; Version--)
  106. {
  107. if (IdentCdrom(CDROM,NewID,Version) == false)
  108. return false;
  109. if (Debug == true)
  110. clog << "ID " << Version << " " << NewID << endl;
  111. // A hit
  112. if (Database.Find("CD::" + NewID) == Get.Host)
  113. {
  114. Hit = true;
  115. break;
  116. }
  117. }
  118. if (Hit == true)
  119. break;
  120. // I suppose this should prompt somehow?
  121. if (UnmountCdrom(CDROM) == false)
  122. return _error->Error("Unable to unmount the CD-ROM in %s, it may still be in use.",
  123. CDROM.c_str());
  124. if (MediaFail(Get.Host,CDROM) == false)
  125. {
  126. CurrentID = "FAIL";
  127. Fail("Wrong CD",true);
  128. return true;
  129. }
  130. MountCdrom(CDROM);
  131. }
  132. // Found a CD
  133. Res.Filename = CDROM + File;
  134. struct stat Buf;
  135. if (stat(Res.Filename.c_str(),&Buf) != 0)
  136. return _error->Error("File not found");
  137. if (NewID.empty() == false)
  138. CurrentID = NewID;
  139. Res.LastModified = Buf.st_mtime;
  140. Res.IMSHit = true;
  141. Res.Size = Buf.st_size;
  142. URIDone(Res);
  143. return true;
  144. }
  145. /*}}}*/
  146. int main()
  147. {
  148. CDROMMethod Mth;
  149. return Mth.Run();
  150. }