merge the german translations from lp:~mvo/apt/debian-sid
[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
17#include <string>
18#include <stdio.h>
8c58f506 19#include <iostream>
64177f17 20#include <vector>
f7291f62 21#include <map>
b2e465d6
AL
22
23#include "cachedb.h"
24#include "override.h"
25#include "apt-ftparchive.h"
8c58f506
AL
26
27using std::string;
28using std::cout;
29using std::endl;
98953965 30using std::vector;
f7291f62 31using std::map;
b2e465d6
AL
32
33class FTWScanner
34{
35 protected:
98953965 36 vector<string> Patterns;
b2e465d6
AL
37 const char *OriginalPath;
38 char *RealPath;
39 bool ErrorPrinted;
40
41 // Stuff for the delinker
42 bool NoLinkAct;
43
44 static FTWScanner *Owner;
cde41ae8
MV
45 static int ScannerFTW(const char *File,const struct stat *sb,int Flag);
46 static int ScannerFile(const char *File, bool ReadLink);
b2e465d6
AL
47
48 bool Delink(string &FileName,const char *OriginalPath,
cde41ae8 49 unsigned long &Bytes,off_t FileSize);
b2e465d6
AL
50
51 inline void NewLine(unsigned Priority)
52 {
53 if (ErrorPrinted == false && Quiet <= Priority)
54 {
db40f8e0 55 c1out << endl;
b2e465d6
AL
56 ErrorPrinted = true;
57 }
58 }
59
60 public:
61
62 unsigned long DeLinkLimit;
63 string InternalPrefix;
64
65 virtual bool DoPackage(string FileName) = 0;
66 bool RecursiveScan(string Dir);
67 bool LoadFileList(string BaseDir,string File);
af6fa0b8
AL
68 void ClearPatterns() { Patterns.clear(); };
69 void AddPattern(string Pattern) { Patterns.push_back(Pattern); };
b2e465d6
AL
70 bool SetExts(string Vals);
71
72 FTWScanner();
98953965 73 virtual ~FTWScanner() {delete [] RealPath;};
b2e465d6
AL
74};
75
76class PackagesWriter : public FTWScanner
77{
78 Override Over;
79 CacheDB Db;
80
81 public:
82
83 // Some flags
84 bool DoMD5;
cde41ae8
MV
85 bool DoSHA1;
86 bool DoSHA256;
b2e465d6
AL
87 bool NoOverride;
88 bool DoContents;
89
90 // General options
91 string PathPrefix;
92 string DirStrip;
93 FILE *Output;
94 struct CacheDB::Stats &Stats;
0b41e0e7
MV
95 string Arch;
96
b2e465d6 97 inline bool ReadOverride(string File) {return Over.ReadOverride(File);};
64177f17
AL
98 inline bool ReadExtraOverride(string File)
99 {return Over.ReadExtraOverride(File);};
b2e465d6
AL
100 virtual bool DoPackage(string FileName);
101
0b41e0e7
MV
102 PackagesWriter(string DB,string Overrides,string ExtOverrides=string(),
103 string Arch=string());
b2e465d6
AL
104 virtual ~PackagesWriter() {};
105};
106
107class ContentsWriter : public FTWScanner
108{
109 CacheDB Db;
110
111 GenContents Gen;
112
113 public:
114
115 // General options
116 FILE *Output;
117 struct CacheDB::Stats &Stats;
118 string Prefix;
119
120 bool DoPackage(string FileName,string Package);
121 virtual bool DoPackage(string FileName)
122 {return DoPackage(FileName,string());};
123 bool ReadFromPkgs(string PkgFile,string PkgCompress);
124
125 void Finish() {Gen.Print(Output);};
126 inline bool ReadyDB(string DB) {return Db.ReadyDB(DB);};
127
128 ContentsWriter(string DB);
129 virtual ~ContentsWriter() {};
130};
131
132class SourcesWriter : public FTWScanner
133{
134 Override BOver;
135 Override SOver;
136 char *Buffer;
137 unsigned long BufSize;
138
139 public:
140
141 bool NoOverride;
142
143 // General options
144 string PathPrefix;
145 string DirStrip;
146 FILE *Output;
147 struct CacheDB::Stats Stats;
148
b2e465d6
AL
149 virtual bool DoPackage(string FileName);
150
64177f17
AL
151 SourcesWriter(string BOverrides,string SOverrides,
152 string ExtOverrides=string());
b2e465d6
AL
153 virtual ~SourcesWriter() {free(Buffer);};
154};
155
98953965
AL
156class ReleaseWriter : public FTWScanner
157{
158public:
159 ReleaseWriter(string DB);
160 virtual bool DoPackage(string FileName);
f7291f62
AL
161 void Finish();
162
163 FILE *Output;
98953965
AL
164 // General options
165 string PathPrefix;
166 string DirStrip;
f7291f62
AL
167
168protected:
169 struct CheckSum
170 {
171 string MD5;
172 string SHA1;
cde41ae8 173 string SHA256;
f7291f62
AL
174 // Limited by FileFd::Size()
175 unsigned long size;
0b41e0e7 176 ~CheckSum() {};
f7291f62
AL
177 };
178 map<string,struct CheckSum> CheckSums;
98953965 179};
b2e465d6
AL
180
181#endif