]>
git.saurik.com Git - apt.git/blob - cmdline/apt-sortpkgs.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: apt-sortpkgs.cc,v 1.5 2003/01/11 07:18:44 jgg Exp $
4 /* ######################################################################
6 APT Sort Packages - Program to sort Package and Source files
8 This program is quite simple, it just sorts the package files by
9 package and sorts the fields inside by the internal APT sort order.
10 Input is taken from a named file and sent to stdout.
12 ##################################################################### */
14 // Include Files /*{{{*/
17 #include <apt-pkg/tagfile.h>
18 #include <apt-pkg/error.h>
19 #include <apt-pkg/configuration.h>
20 #include <apt-pkg/cmndline.h>
21 #include <apt-pkg/init.h>
22 #include <apt-pkg/strutl.h>
23 #include <apt-pkg/fileutl.h>
24 #include <apt-pkg/pkgsystem.h>
26 #include <apt-private/private-cmndline.h>
39 struct PkgName
/*{{{*/
47 inline int Compare3(const PkgName
&x
) const
49 int A
= stringcasecmp(Name
,x
.Name
);
52 A
= stringcasecmp(Ver
,x
.Ver
);
54 A
= stringcasecmp(Arch
,x
.Arch
);
59 bool operator <(const PkgName
&x
) const {return Compare3(x
) < 0;};
60 bool operator >(const PkgName
&x
) const {return Compare3(x
) > 0;};
61 bool operator ==(const PkgName
&x
) const {return Compare3(x
) == 0;};
64 // DoIt - Sort a single file /*{{{*/
65 // ---------------------------------------------------------------------
67 static bool DoIt(string InFile
)
69 FileFd
Fd(InFile
,FileFd::ReadOnly
);
71 if (_error
->PendingError() == true)
76 pkgTagSection Section
;
77 unsigned long Largest
= 0;
78 unsigned long Offset
= Tags
.Offset();
79 bool Source
= _config
->FindB("APT::SortPkgs::Source",false);
80 while (Tags
.Step(Section
) == true)
84 /* Fetch the name, auto-detecting if this is a source file or a
86 Tmp
.Name
= Section
.FindS("Package");
87 Tmp
.Ver
= Section
.FindS("Version");
88 Tmp
.Arch
= Section
.FindS("Architecture");
90 if (Tmp
.Name
.empty() == true)
91 return _error
->Error(_("Unknown package record!"));
94 Tmp
.Length
= Section
.size();
95 if (Largest
< Tmp
.Length
)
100 Offset
= Tags
.Offset();
102 if (_error
->PendingError() == true)
106 sort(List
.begin(),List
.end());
108 const char **Order
= TFRewritePackageOrder
;
110 Order
= TFRewriteSourceOrder
;
114 stdoutfd
.OpenDescriptor(STDOUT_FILENO
, FileFd::WriteOnly
, false);
115 unsigned char *Buffer
= new unsigned char[Largest
+1];
116 for (vector
<PkgName
>::iterator I
= List
.begin(); I
!= List
.end(); ++I
)
118 // Read in the Record.
119 if (Fd
.Seek(I
->Offset
) == false || Fd
.Read(Buffer
,I
->Length
) == false)
125 Buffer
[I
->Length
] = '\n';
126 if (Section
.Scan((char *)Buffer
,I
->Length
+1) == false)
129 return _error
->Error("Internal error, failed to scan buffer");
133 if (Section
.Write(stdoutfd
, Order
) == false || stdoutfd
.Write("\n", 1) == false)
136 return _error
->Error("Internal error, failed to sort fields");
144 // ShowHelp - Show the help text /*{{{*/
145 // ---------------------------------------------------------------------
147 static bool ShowHelp(CommandLine
&)
149 ioprintf(std::cout
, "%s %s (%s)\n", PACKAGE
, PACKAGE_VERSION
, COMMON_ARCH
);
150 if (_config
->FindB("version") == true)
154 _("Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
156 "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
157 "to indicate what kind of file it is.\n"
160 " -h This help text\n"
161 " -s Use source file sorting\n"
162 " -c=? Read this configuration file\n"
163 " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n");
168 int main(int argc
,const char *argv
[]) /*{{{*/
170 CommandLine::Args Args
[] = {
171 {'h',"help","help",0},
172 {'v',"version","version",0},
173 {'s',"source","APT::SortPkgs::Source",0},
174 {'c',"config-file",0,CommandLine::ConfigFile
},
175 {'o',"option",0,CommandLine::ArbItem
},
178 // Set up gettext support
179 setlocale(LC_ALL
,"");
182 // Parse the command line and initialize the package library
183 CommandLine::Dispatch Cmds
[] = {{NULL
, NULL
}};
185 ParseCommandLine(CmdL
, Cmds
, Args
, &_config
, &_system
, argc
, argv
, ShowHelp
);
187 // Match the operation
188 for (unsigned int I
= 0; I
!= CmdL
.FileSize(); I
++)
189 if (DoIt(CmdL
.FileList
[I
]) == false)
192 // Print any errors or warnings found during parsing
193 if (_error
->empty() == false)
195 bool Errors
= _error
->PendingError();
196 _error
->DumpErrors();
197 return Errors
== true?100:0;