]>
git.saurik.com Git - apt.git/blob - apt-pkg/deb/debrecords.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: debrecords.cc,v 1.10 2001/03/13 06:51:46 jgg Exp $
4 /* ######################################################################
6 Debian Package Records - Parser for debian package records
8 ##################################################################### */
10 // Include Files /*{{{*/
11 #include <apt-pkg/debrecords.h>
12 #include <apt-pkg/strutl.h>
13 #include <apt-pkg/error.h>
17 // RecordParser::debRecordParser - Constructor /*{{{*/
18 // ---------------------------------------------------------------------
20 debRecordParser::debRecordParser(string FileName
,pkgCache
&Cache
) :
21 File(FileName
,FileFd::ReadOnly
),
22 Tags(&File
,Cache
.Head().MaxVerFileSize
+ 200)
26 // RecordParser::Jump - Jump to a specific record /*{{{*/
27 // ---------------------------------------------------------------------
29 bool debRecordParser::Jump(pkgCache::VerFileIterator
const &Ver
)
31 return Tags
.Jump(Section
,Ver
->Offset
);
33 bool debRecordParser::Jump(pkgCache::DescFileIterator
const &Desc
)
35 return Tags
.Jump(Section
,Desc
->Offset
);
38 // RecordParser::FileName - Return the archive filename on the site /*{{{*/
39 // ---------------------------------------------------------------------
41 string
debRecordParser::FileName()
43 return Section
.FindS("Filename");
46 // RecordParser::Name - Return the package name /*{{{*/
47 // ---------------------------------------------------------------------
49 string
debRecordParser::Name()
51 return Section
.FindS("Package");
54 // RecordParser::MD5Hash - Return the archive hash /*{{{*/
55 // ---------------------------------------------------------------------
57 string
debRecordParser::MD5Hash()
59 return Section
.FindS("MD5Sum");
62 // RecordParser::SHA1Hash - Return the archive hash /*{{{*/
63 // ---------------------------------------------------------------------
65 string
debRecordParser::SHA1Hash()
67 return Section
.FindS("SHA1");
70 // RecordParser::SHA1Hash - Return the archive hash /*{{{*/
71 // ---------------------------------------------------------------------
73 string
debRecordParser::SHA256Hash()
75 return Section
.FindS("SHA256");
78 // RecordParser::Maintainer - Return the maintainer email /*{{{*/
79 // ---------------------------------------------------------------------
81 string
debRecordParser::Maintainer()
83 return Section
.FindS("Maintainer");
86 // RecordParser::ShortDesc - Return a 1 line description /*{{{*/
87 // ---------------------------------------------------------------------
89 string
debRecordParser::ShortDesc()
91 string Res
= LongDesc();
92 string::size_type Pos
= Res
.find('\n');
93 if (Pos
== string::npos
)
95 return string(Res
,0,Pos
);
98 // RecordParser::LongDesc - Return a longer description /*{{{*/
99 // ---------------------------------------------------------------------
101 string
debRecordParser::LongDesc()
104 char *codeset
= nl_langinfo(CODESET
);
106 if (!Section
.FindS("Description").empty())
107 orig
= Section
.FindS("Description").c_str();
109 orig
= Section
.FindS(("Description-" + pkgIndexFile::LanguageCode()).c_str()).c_str();
111 if (strcmp(codeset
,"UTF-8") != 0) {
112 UTF8ToCodeset(codeset
, orig
, &dest
);
120 static const char *SourceVerSeparators
= " ()";
122 // RecordParser::SourcePkg - Return the source package name if any /*{{{*/
123 // ---------------------------------------------------------------------
125 string
debRecordParser::SourcePkg()
127 string Res
= Section
.FindS("Source");
128 string::size_type Pos
= Res
.find_first_of(SourceVerSeparators
);
129 if (Pos
== string::npos
)
131 return string(Res
,0,Pos
);
134 // RecordParser::SourceVer - Return the source version number if present /*{{{*/
135 // ---------------------------------------------------------------------
137 string
debRecordParser::SourceVer()
139 string Pkg
= Section
.FindS("Source");
140 string::size_type Pos
= Pkg
.find_first_of(SourceVerSeparators
);
141 if (Pos
== string::npos
)
144 string::size_type VerStart
= Pkg
.find_first_not_of(SourceVerSeparators
, Pos
);
145 if(VerStart
== string::npos
)
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
);
154 return string(Pkg
, VerStart
, VerEnd
- VerStart
);
157 // RecordParser::GetRec - Return the whole record /*{{{*/
158 // ---------------------------------------------------------------------
160 void debRecordParser::GetRec(const char *&Start
,const char *&Stop
)
162 Section
.GetSection(Start
,Stop
);