]>
Commit | Line | Data |
---|---|---|
11e7af84 AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
c33b707e | 3 | // $Id: debsrcrecords.cc,v 1.6 2004/03/17 05:58:54 mdz Exp $ |
11e7af84 AL |
4 | /* ###################################################################### |
5 | ||
6 | Debian Source Package Records - Parser implementation for Debian style | |
7 | source indexes | |
8 | ||
9 | ##################################################################### */ | |
10 | /*}}}*/ | |
11 | // Include Files /*{{{*/ | |
b2e465d6 | 12 | #include <apt-pkg/deblistparser.h> |
11e7af84 AL |
13 | #include <apt-pkg/debsrcrecords.h> |
14 | #include <apt-pkg/error.h> | |
36f610f1 | 15 | #include <apt-pkg/strutl.h> |
b2e465d6 | 16 | #include <apt-pkg/configuration.h> |
4ab24e53 MV |
17 | |
18 | using std::max; | |
11e7af84 AL |
19 | /*}}}*/ |
20 | ||
21 | // SrcRecordParser::Binaries - Return the binaries field /*{{{*/ | |
22 | // --------------------------------------------------------------------- | |
23 | /* This member parses the binaries field into a pair of class arrays and | |
24 | returns a list of strings representing all of the components of the | |
25 | binaries field. The returned array need not be freed and will be | |
b2e465d6 AL |
26 | reused by the next Binaries function call. This function is commonly |
27 | used during scanning to find the right package */ | |
11e7af84 AL |
28 | const char **debSrcRecordParser::Binaries() |
29 | { | |
b2e465d6 | 30 | // This should use Start/Stop too, it is supposed to be efficient after all. |
11e7af84 | 31 | string Bins = Sect.FindS("Binary"); |
c33b707e | 32 | if (Bins.empty() == true || Bins.length() >= 102400) |
11e7af84 AL |
33 | return 0; |
34 | ||
d295f24c | 35 | if (Bins.length() >= BufSize) |
c33b707e | 36 | { |
4ab24e53 MV |
37 | delete [] Buffer; |
38 | // allocate new size based on buffer (but never smaller than 4000) | |
19ec5723 | 39 | BufSize = max((unsigned int)4000, max((unsigned int)Bins.length()+1,2*BufSize)); |
4ab24e53 | 40 | Buffer = new char[BufSize]; |
c33b707e AL |
41 | } |
42 | ||
4ab24e53 MV |
43 | strcpy(Buffer,Bins.c_str()); |
44 | if (TokSplitString(',',Buffer,StaticBinList, | |
b2e465d6 AL |
45 | sizeof(StaticBinList)/sizeof(StaticBinList[0])) == false) |
46 | return 0; | |
c33b707e | 47 | |
b2e465d6 AL |
48 | return (const char **)StaticBinList; |
49 | } | |
50 | /*}}}*/ | |
51 | // SrcRecordParser::BuildDepends - Return the Build-Depends information /*{{{*/ | |
52 | // --------------------------------------------------------------------- | |
53 | /* This member parses the build-depends information and returns a list of | |
54 | package/version records representing the build dependency. The returned | |
55 | array need not be freed and will be reused by the next call to this | |
56 | function */ | |
45430cbf | 57 | bool debSrcRecordParser::BuildDepends(vector<pkgSrcRecords::Parser::BuildDepRec> &BuildDeps, bool ArchOnly) |
b2e465d6 AL |
58 | { |
59 | unsigned int I; | |
60 | const char *Start, *Stop; | |
61 | BuildDepRec rec; | |
62 | const char *fields[] = {"Build-Depends", | |
63 | "Build-Depends-Indep", | |
64 | "Build-Conflicts", | |
65 | "Build-Conflicts-Indep"}; | |
66 | ||
67 | BuildDeps.clear(); | |
11e7af84 | 68 | |
b2e465d6 | 69 | for (I = 0; I < 4; I++) |
11e7af84 | 70 | { |
45430cbf AL |
71 | if (ArchOnly && (I == 1 || I == 3)) |
72 | continue; | |
73 | ||
b2e465d6 AL |
74 | if (Sect.Find(fields[I], Start, Stop) == false) |
75 | continue; | |
11e7af84 | 76 | |
b2e465d6 AL |
77 | while (1) |
78 | { | |
79 | Start = debListParser::ParseDepends(Start, Stop, | |
80 | rec.Package,rec.Version,rec.Op,true); | |
81 | ||
82 | if (Start == 0) | |
83 | return _error->Error("Problem parsing dependency: %s", fields[I]); | |
84 | rec.Type = I; | |
85 | ||
86 | if (rec.Package != "") | |
87 | BuildDeps.push_back(rec); | |
88 | ||
89 | if (Start == Stop) | |
90 | break; | |
91 | } | |
11e7af84 AL |
92 | } |
93 | ||
b2e465d6 | 94 | return true; |
11e7af84 AL |
95 | } |
96 | /*}}}*/ | |
36f610f1 AL |
97 | // SrcRecordParser::Files - Return a list of files for this source /*{{{*/ |
98 | // --------------------------------------------------------------------- | |
99 | /* This parses the list of files and returns it, each file is required to have | |
100 | a complete source package */ | |
101 | bool debSrcRecordParser::Files(vector<pkgSrcRecords::File> &List) | |
102 | { | |
103 | List.erase(List.begin(),List.end()); | |
104 | ||
105 | string Files = Sect.FindS("Files"); | |
106 | if (Files.empty() == true) | |
107 | return false; | |
108 | ||
109 | // Stash the / terminated directory prefix | |
36375005 | 110 | string Base = Sect.FindS("Directory"); |
36f610f1 AL |
111 | if (Base.empty() == false && Base[Base.length()-1] != '/') |
112 | Base += '/'; | |
36375005 | 113 | |
36f610f1 AL |
114 | // Iterate over the entire list grabbing each triplet |
115 | const char *C = Files.c_str(); | |
116 | while (*C != 0) | |
117 | { | |
118 | pkgSrcRecords::File F; | |
119 | string Size; | |
120 | ||
121 | // Parse each of the elements | |
122 | if (ParseQuoteWord(C,F.MD5Hash) == false || | |
123 | ParseQuoteWord(C,Size) == false || | |
124 | ParseQuoteWord(C,F.Path) == false) | |
125 | return _error->Error("Error parsing file record"); | |
126 | ||
127 | // Parse the size and append the directory | |
128 | F.Size = atoi(Size.c_str()); | |
129 | F.Path = Base + F.Path; | |
b2e465d6 AL |
130 | |
131 | // Try to guess what sort of file it is we are getting. | |
132 | string::size_type Pos = F.Path.length()-1; | |
133 | while (1) | |
134 | { | |
135 | string::size_type Tmp = F.Path.rfind('.',Pos); | |
136 | if (Tmp == string::npos) | |
137 | break; | |
138 | F.Type = string(F.Path,Tmp+1,Pos-Tmp); | |
139 | ||
140 | if (F.Type == "gz" || F.Type == "bz2") | |
141 | { | |
142 | Pos = Tmp-1; | |
143 | continue; | |
144 | } | |
145 | ||
146 | break; | |
147 | } | |
148 | ||
36f610f1 AL |
149 | List.push_back(F); |
150 | } | |
151 | ||
152 | return true; | |
153 | } | |
154 | /*}}}*/ |