]> git.saurik.com Git - apt.git/blame_incremental - apt-pkg/deb/debrecords.cc
releasing version 0.8.16~exp3
[apt.git] / apt-pkg / deb / debrecords.cc
... / ...
CommitLineData
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
3// $Id: debrecords.cc,v 1.10 2001/03/13 06:51:46 jgg Exp $
4/* ######################################################################
5
6 Debian Package Records - Parser for debian package records
7
8 ##################################################################### */
9 /*}}}*/
10// Include Files /*{{{*/
11#include <apt-pkg/debrecords.h>
12#include <apt-pkg/strutl.h>
13#include <apt-pkg/error.h>
14#include <apt-pkg/aptconfiguration.h>
15#include <langinfo.h>
16 /*}}}*/
17
18// RecordParser::debRecordParser - Constructor /*{{{*/
19// ---------------------------------------------------------------------
20/* */
21debRecordParser::debRecordParser(string FileName,pkgCache &Cache) :
22 File(FileName,FileFd::ReadOnlyGzip),
23 Tags(&File, std::max(Cache.Head().MaxVerFileSize,
24 Cache.Head().MaxDescFileSize) + 200)
25{
26}
27 /*}}}*/
28// RecordParser::Jump - Jump to a specific record /*{{{*/
29// ---------------------------------------------------------------------
30/* */
31bool debRecordParser::Jump(pkgCache::VerFileIterator const &Ver)
32{
33 return Tags.Jump(Section,Ver->Offset);
34}
35bool debRecordParser::Jump(pkgCache::DescFileIterator const &Desc)
36{
37 return Tags.Jump(Section,Desc->Offset);
38}
39 /*}}}*/
40// RecordParser::FileName - Return the archive filename on the site /*{{{*/
41// ---------------------------------------------------------------------
42/* */
43string debRecordParser::FileName()
44{
45 return Section.FindS("Filename");
46}
47 /*}}}*/
48// RecordParser::Name - Return the package name /*{{{*/
49// ---------------------------------------------------------------------
50/* */
51string debRecordParser::Name()
52{
53 return Section.FindS("Package");
54}
55 /*}}}*/
56// RecordParser::Homepage - Return the package homepage /*{{{*/
57// ---------------------------------------------------------------------
58/* */
59string debRecordParser::Homepage()
60{
61 return Section.FindS("Homepage");
62}
63 /*}}}*/
64// RecordParser::MD5Hash - Return the archive hash /*{{{*/
65// ---------------------------------------------------------------------
66/* */
67string debRecordParser::MD5Hash()
68{
69 return Section.FindS("MD5Sum");
70}
71 /*}}}*/
72// RecordParser::SHA1Hash - Return the archive hash /*{{{*/
73// ---------------------------------------------------------------------
74/* */
75string debRecordParser::SHA1Hash()
76{
77 return Section.FindS("SHA1");
78}
79 /*}}}*/
80// RecordParser::SHA256Hash - Return the archive hash /*{{{*/
81// ---------------------------------------------------------------------
82/* */
83string debRecordParser::SHA256Hash()
84{
85 return Section.FindS("SHA256");
86}
87 /*}}}*/
88// RecordParser::SHA512Hash - Return the archive hash /*{{{*/
89// ---------------------------------------------------------------------
90/* */
91string debRecordParser::SHA512Hash()
92{
93 return Section.FindS("SHA512");
94}
95 /*}}}*/
96// RecordParser::Maintainer - Return the maintainer email /*{{{*/
97// ---------------------------------------------------------------------
98/* */
99string debRecordParser::Maintainer()
100{
101 return Section.FindS("Maintainer");
102}
103 /*}}}*/
104// RecordParser::ShortDesc - Return a 1 line description /*{{{*/
105// ---------------------------------------------------------------------
106/* */
107string debRecordParser::ShortDesc()
108{
109 string Res = LongDesc();
110 string::size_type Pos = Res.find('\n');
111 if (Pos == string::npos)
112 return Res;
113 return string(Res,0,Pos);
114}
115 /*}}}*/
116// RecordParser::LongDesc - Return a longer description /*{{{*/
117// ---------------------------------------------------------------------
118/* */
119string debRecordParser::LongDesc()
120{
121 string orig, dest;
122
123 if (!Section.FindS("Description").empty())
124 orig = Section.FindS("Description").c_str();
125 else
126 {
127 vector<string> const lang = APT::Configuration::getLanguages();
128 for (vector<string>::const_iterator l = lang.begin();
129 orig.empty() && l != lang.end(); l++)
130 orig = Section.FindS(string("Description-").append(*l).c_str());
131 }
132
133 char const * const codeset = nl_langinfo(CODESET);
134 if (strcmp(codeset,"UTF-8") != 0) {
135 UTF8ToCodeset(codeset, orig, &dest);
136 orig = dest;
137 }
138
139 return orig;
140}
141 /*}}}*/
142
143static const char *SourceVerSeparators = " ()";
144
145// RecordParser::SourcePkg - Return the source package name if any /*{{{*/
146// ---------------------------------------------------------------------
147/* */
148string debRecordParser::SourcePkg()
149{
150 string Res = Section.FindS("Source");
151 string::size_type Pos = Res.find_first_of(SourceVerSeparators);
152 if (Pos == string::npos)
153 return Res;
154 return string(Res,0,Pos);
155}
156 /*}}}*/
157// RecordParser::SourceVer - Return the source version number if present /*{{{*/
158// ---------------------------------------------------------------------
159/* */
160string debRecordParser::SourceVer()
161{
162 string Pkg = Section.FindS("Source");
163 string::size_type Pos = Pkg.find_first_of(SourceVerSeparators);
164 if (Pos == string::npos)
165 return "";
166
167 string::size_type VerStart = Pkg.find_first_not_of(SourceVerSeparators, Pos);
168 if(VerStart == string::npos)
169 return "";
170
171 string::size_type VerEnd = Pkg.find_first_of(SourceVerSeparators, VerStart);
172 if(VerEnd == string::npos)
173 // Corresponds to the case of, e.g., "foo (1.2" without a closing
174 // paren. Be liberal and guess what it means.
175 return string(Pkg, VerStart);
176 else
177 return string(Pkg, VerStart, VerEnd - VerStart);
178}
179 /*}}}*/
180// RecordParser::GetRec - Return the whole record /*{{{*/
181// ---------------------------------------------------------------------
182/* */
183void debRecordParser::GetRec(const char *&Start,const char *&Stop)
184{
185 Section.GetSection(Start,Stop);
186}
187 /*}}}*/