]>
git.saurik.com Git - apt.git/blob - apt-pkg/deb/debsrcrecords.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: debsrcrecords.cc,v 1.6 2004/03/17 05:58:54 mdz Exp $
4 /* ######################################################################
6 Debian Source Package Records - Parser implementation for Debian style
9 ##################################################################### */
11 // Include Files /*{{{*/
14 #include <apt-pkg/deblistparser.h>
15 #include <apt-pkg/debsrcrecords.h>
16 #include <apt-pkg/error.h>
17 #include <apt-pkg/strutl.h>
18 #include <apt-pkg/aptconfiguration.h>
19 #include <apt-pkg/srcrecords.h>
20 #include <apt-pkg/tagfile.h>
33 // SrcRecordParser::Binaries - Return the binaries field /*{{{*/
34 // ---------------------------------------------------------------------
35 /* This member parses the binaries field into a pair of class arrays and
36 returns a list of strings representing all of the components of the
37 binaries field. The returned array need not be freed and will be
38 reused by the next Binaries function call. This function is commonly
39 used during scanning to find the right package */
40 const char **debSrcRecordParser::Binaries()
42 const char *Start
, *End
;
43 if (Sect
.Find("Binary", Start
, End
) == false)
45 for (; isspace(*Start
) != 0; ++Start
);
49 StaticBinList
.clear();
51 Buffer
= strndup(Start
, End
- Start
);
55 char* binStartNext
= strchrnul(bin
, ',');
56 char* binEnd
= binStartNext
- 1;
57 for (; isspace(*binEnd
) != 0; --binEnd
)
59 StaticBinList
.push_back(bin
);
60 if (*binStartNext
!= ',')
63 for (bin
= binStartNext
+ 1; isspace(*bin
) != 0; ++bin
);
64 } while (*bin
!= '\0');
65 StaticBinList
.push_back(NULL
);
67 return &StaticBinList
[0];
70 // SrcRecordParser::BuildDepends - Return the Build-Depends information /*{{{*/
71 // ---------------------------------------------------------------------
72 /* This member parses the build-depends information and returns a list of
73 package/version records representing the build dependency. The returned
74 array need not be freed and will be reused by the next call to this
76 bool debSrcRecordParser::BuildDepends(std::vector
<pkgSrcRecords::Parser::BuildDepRec
> &BuildDeps
,
77 bool const &ArchOnly
, bool const &StripMultiArch
)
80 const char *Start
, *Stop
;
82 const char *fields
[] = {"Build-Depends",
83 "Build-Depends-Indep",
85 "Build-Conflicts-Indep"};
89 for (I
= 0; I
< 4; I
++)
91 if (ArchOnly
&& (I
== 1 || I
== 3))
94 if (Sect
.Find(fields
[I
], Start
, Stop
) == false)
99 Start
= debListParser::ParseDepends(Start
, Stop
,
100 rec
.Package
,rec
.Version
,rec
.Op
,true,StripMultiArch
,true);
103 return _error
->Error("Problem parsing dependency: %s", fields
[I
]);
106 if (rec
.Package
!= "")
107 BuildDeps
.push_back(rec
);
117 // SrcRecordParser::Files - Return a list of files for this source /*{{{*/
118 // ---------------------------------------------------------------------
119 /* This parses the list of files and returns it, each file is required to have
120 a complete source package */
121 bool debSrcRecordParser::Files(std::vector
<pkgSrcRecords::File
> &List
)
123 List
.erase(List
.begin(),List
.end());
125 string Files
= Sect
.FindS("Files");
126 if (Files
.empty() == true)
129 // Stash the / terminated directory prefix
130 string Base
= Sect
.FindS("Directory");
131 if (Base
.empty() == false && Base
[Base
.length()-1] != '/')
134 std::vector
<std::string
> const compExts
= APT::Configuration::getCompressorExtensions();
136 // Iterate over the entire list grabbing each triplet
137 const char *C
= Files
.c_str();
140 pkgSrcRecords::File F
;
143 // Parse each of the elements
144 if (ParseQuoteWord(C
,F
.MD5Hash
) == false ||
145 ParseQuoteWord(C
,Size
) == false ||
146 ParseQuoteWord(C
,F
.Path
) == false)
147 return _error
->Error("Error parsing file record");
149 // Parse the size and append the directory
150 F
.Size
= atoi(Size
.c_str());
151 F
.Path
= Base
+ F
.Path
;
153 // Try to guess what sort of file it is we are getting.
154 string::size_type Pos
= F
.Path
.length()-1;
157 string::size_type Tmp
= F
.Path
.rfind('.',Pos
);
158 if (Tmp
== string::npos
)
160 if (F
.Type
== "tar") {
161 // source v3 has extension 'debian.tar.*' instead of 'diff.*'
162 if (string(F
.Path
, Tmp
+1, Pos
-Tmp
) == "debian")
166 F
.Type
= string(F
.Path
,Tmp
+1,Pos
-Tmp
);
168 if (std::find(compExts
.begin(), compExts
.end(), std::string(".").append(F
.Type
)) != compExts
.end() ||
184 // SrcRecordParser::~SrcRecordParser - Destructor /*{{{*/
185 // ---------------------------------------------------------------------
187 debSrcRecordParser::~debSrcRecordParser()
189 // was allocated via strndup()