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