Ensure we have a Policy in CacheFile.BuildDepCache()
[ntk/apt.git] / ftparchive / writer.h
CommitLineData
b2e465d6
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
b3d44315 3// $Id: writer.h,v 1.4.2.2 2003/12/26 22:55:43 mdz Exp $
b2e465d6
AL
4/* ######################################################################
5
6 Writer
7
8 The file writer classes. These write various types of output, sources,
9 packages and contents.
10
11 ##################################################################### */
12 /*}}}*/
13#ifndef WRITER_H
14#define WRITER_H
15
b2e465d6
AL
16#include <string>
17#include <stdio.h>
8c58f506 18#include <iostream>
64177f17 19#include <vector>
f7291f62 20#include <map>
66905344 21#include <set>
453b82a3
DK
22#include <stdlib.h>
23#include <sys/types.h>
b2e465d6 24
453b82a3 25#include "contents.h"
b2e465d6
AL
26#include "cachedb.h"
27#include "override.h"
28#include "apt-ftparchive.h"
8c58f506
AL
29
30using std::string;
31using std::cout;
32using std::endl;
98953965 33using std::vector;
f7291f62 34using std::map;
472ff00e 35
b2e465d6
AL
36class FTWScanner
37{
38 protected:
98953965 39 vector<string> Patterns;
31981076 40 string Arch;
b2e465d6 41 const char *OriginalPath;
b2e465d6
AL
42 bool ErrorPrinted;
43
44 // Stuff for the delinker
45 bool NoLinkAct;
46
47 static FTWScanner *Owner;
cde41ae8 48 static int ScannerFTW(const char *File,const struct stat *sb,int Flag);
9209ec47 49 static int ScannerFile(const char *File, bool const &ReadLink);
b2e465d6
AL
50
51 bool Delink(string &FileName,const char *OriginalPath,
650faab0 52 unsigned long long &Bytes,unsigned long long const &FileSize);
b2e465d6 53
9209ec47 54 inline void NewLine(unsigned const &Priority)
b2e465d6
AL
55 {
56 if (ErrorPrinted == false && Quiet <= Priority)
57 {
db40f8e0 58 c1out << endl;
b2e465d6
AL
59 ErrorPrinted = true;
60 }
61 }
62
63 public:
3c54407f
DK
64 bool DoMD5;
65 bool DoSHA1;
66 bool DoSHA256;
9abccf4a 67 bool DoSHA512;
b2e465d6
AL
68
69 unsigned long DeLinkLimit;
70 string InternalPrefix;
71
72 virtual bool DoPackage(string FileName) = 0;
9209ec47
DK
73 bool RecursiveScan(string const &Dir);
74 bool LoadFileList(string const &BaseDir,string const &File);
af6fa0b8 75 void ClearPatterns() { Patterns.clear(); };
9209ec47 76 void AddPattern(string const &Pattern) { Patterns.push_back(Pattern); };
3cb3fe76
DK
77 void AddPattern(char const *Pattern) { Patterns.push_back(Pattern); };
78 void AddPatterns(std::vector<std::string> const &patterns) { Patterns.insert(Patterns.end(), patterns.begin(), patterns.end()); };
9209ec47 79 bool SetExts(string const &Vals);
b2e465d6 80
31981076 81 FTWScanner(string const &Arch = string());
4c265635 82 virtual ~FTWScanner() {};
b2e465d6
AL
83};
84
472ff00e
DK
85class MultiCompress;
86
66905344
DK
87class TranslationWriter
88{
34f1d96c 89 MultiCompress *Comp;
66905344
DK
90 FILE *Output;
91 std::set<string> Included;
92 unsigned short RefCounter;
93
94 public:
95 void IncreaseRefCounter() { ++RefCounter; };
96 unsigned short DecreaseRefCounter() { return (RefCounter == 0) ? 0 : --RefCounter; };
97 unsigned short GetRefCounter() const { return RefCounter; };
98 bool DoPackage(string const &Pkg, string const &Desc, string const &MD5);
99
34f1d96c
DK
100 TranslationWriter(string const &File, string const &TransCompress, mode_t const &Permissions);
101 TranslationWriter() : Comp(NULL), Output(NULL), RefCounter(0) {};
66905344
DK
102 ~TranslationWriter();
103};
104
b2e465d6
AL
105class PackagesWriter : public FTWScanner
106{
107 Override Over;
108 CacheDB Db;
109
110 public:
111
112 // Some flags
ff574e76 113 bool DoAlwaysStat;
b2e465d6
AL
114 bool NoOverride;
115 bool DoContents;
9c24493f 116 bool LongDescription;
b2e465d6
AL
117
118 // General options
119 string PathPrefix;
120 string DirStrip;
121 FILE *Output;
122 struct CacheDB::Stats &Stats;
66905344 123 TranslationWriter *TransWriter;
0b41e0e7 124
9209ec47
DK
125 inline bool ReadOverride(string const &File) {return Over.ReadOverride(File);};
126 inline bool ReadExtraOverride(string const &File)
64177f17 127 {return Over.ReadExtraOverride(File);};
b2e465d6
AL
128 virtual bool DoPackage(string FileName);
129
21ea1dbb
MV
130 PackagesWriter(string const &DB,
131 string const &Overrides,
132 string const &ExtOverrides = "",
133 string const &Arch = "");
b2e465d6
AL
134 virtual ~PackagesWriter() {};
135};
136
137class ContentsWriter : public FTWScanner
138{
139 CacheDB Db;
140
141 GenContents Gen;
142
143 public:
144
145 // General options
146 FILE *Output;
147 struct CacheDB::Stats &Stats;
148 string Prefix;
149
150 bool DoPackage(string FileName,string Package);
151 virtual bool DoPackage(string FileName)
152 {return DoPackage(FileName,string());};
9209ec47 153 bool ReadFromPkgs(string const &PkgFile,string const &PkgCompress);
b2e465d6
AL
154
155 void Finish() {Gen.Print(Output);};
9209ec47 156 inline bool ReadyDB(string const &DB) {return Db.ReadyDB(DB);};
b2e465d6 157
31981076 158 ContentsWriter(string const &DB, string const &Arch = string());
b2e465d6
AL
159 virtual ~ContentsWriter() {};
160};
161
162class SourcesWriter : public FTWScanner
163{
f6f06a8f 164 CacheDB Db;
b2e465d6
AL
165 Override BOver;
166 Override SOver;
167 char *Buffer;
650faab0 168 unsigned long long BufSize;
b2e465d6
AL
169
170 public:
171
172 bool NoOverride;
f6f06a8f 173 bool DoAlwaysStat;
b2e465d6
AL
174
175 // General options
176 string PathPrefix;
177 string DirStrip;
178 FILE *Output;
ce928105 179 struct CacheDB::Stats &Stats;
b2e465d6 180
b2e465d6
AL
181 virtual bool DoPackage(string FileName);
182
f6f06a8f 183 SourcesWriter(string const &DB,string const &BOverrides,string const &SOverrides,
9209ec47 184 string const &ExtOverrides=string());
b2e465d6
AL
185 virtual ~SourcesWriter() {free(Buffer);};
186};
187
98953965
AL
188class ReleaseWriter : public FTWScanner
189{
190public:
9209ec47 191 ReleaseWriter(string const &DB);
98953965 192 virtual bool DoPackage(string FileName);
f7291f62
AL
193 void Finish();
194
195 FILE *Output;
98953965
AL
196 // General options
197 string PathPrefix;
198 string DirStrip;
f7291f62
AL
199
200protected:
201 struct CheckSum
202 {
203 string MD5;
204 string SHA1;
cde41ae8 205 string SHA256;
9a961efc 206 string SHA512;
f7291f62 207 // Limited by FileFd::Size()
650faab0 208 unsigned long long size;
0b41e0e7 209 ~CheckSum() {};
f7291f62
AL
210 };
211 map<string,struct CheckSum> CheckSums;
98953965 212};
b2e465d6
AL
213
214#endif