]>
git.saurik.com Git - apt.git/blob - apt-pkg/indexfile.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: indexfile.cc,v 1.2.2.1 2003/12/24 23:09:17 mdz Exp $
4 /* ######################################################################
6 Index File - Abstraction for an index of archive/souce file.
8 ##################################################################### */
10 // Include Files /*{{{*/
11 #include <apt-pkg/indexfile.h>
12 #include <apt-pkg/error.h>
13 #include <apt-pkg/aptconfiguration.h>
19 // Global list of Item supported
20 static pkgIndexFile::Type
*ItmList
[10];
21 pkgIndexFile::Type
**pkgIndexFile::Type::GlobalList
= ItmList
;
22 unsigned long pkgIndexFile::Type::GlobalListLen
= 0;
24 // Type::Type - Constructor /*{{{*/
25 // ---------------------------------------------------------------------
27 pkgIndexFile::Type::Type()
29 ItmList
[GlobalListLen
] = this;
33 // Type::GetType - Locate the type by name /*{{{*/
34 // ---------------------------------------------------------------------
36 pkgIndexFile::Type
*pkgIndexFile::Type::GetType(const char *Type
)
38 for (unsigned I
= 0; I
!= GlobalListLen
; I
++)
39 if (strcmp(GlobalList
[I
]->Label
,Type
) == 0)
44 // IndexFile::ArchiveInfo - Stub /*{{{*/
45 // ---------------------------------------------------------------------
47 string
pkgIndexFile::ArchiveInfo(pkgCache::VerIterator Ver
) const
52 // IndexFile::FindInCache - Stub /*{{{*/
53 // ---------------------------------------------------------------------
55 pkgCache::PkgFileIterator
pkgIndexFile::FindInCache(pkgCache
&Cache
) const
57 return pkgCache::PkgFileIterator(Cache
);
60 // IndexFile::SourceIndex - Stub /*{{{*/
61 // ---------------------------------------------------------------------
63 string
pkgIndexFile::SourceInfo(pkgSrcRecords::Parser
const &Record
,
64 pkgSrcRecords::File
const &File
) const
69 // IndexFile::TranslationsAvailable - Check if will use Translation /*{{{*/
70 // ---------------------------------------------------------------------
72 bool pkgIndexFile::TranslationsAvailable() {
73 return (APT::Configuration::getLanguages().empty() != true);
76 // IndexFile::CheckLanguageCode - Check the Language Code /*{{{*/
77 // ---------------------------------------------------------------------
78 /* No intern need for this method anymore as the check for correctness
79 is already done in getLanguages(). Note also that this check is
80 rather bad (doesn't take three character like ast into account).
81 TODO: Remove method with next API break */
82 __attribute__ ((deprecated
)) bool pkgIndexFile::CheckLanguageCode(const char *Lang
)
84 if (strlen(Lang
) == 2 || (strlen(Lang
) == 5 && Lang
[2] == '_'))
87 if (strcmp(Lang
,"C") != 0)
88 _error
->Warning("Wrong language code %s", Lang
);
93 // IndexFile::LanguageCode - Return the Language Code /*{{{*/
94 // ---------------------------------------------------------------------
95 /* As we have now possibly more than one LanguageCode this method is
96 supersided by a) private classmembers or b) getLanguages().
97 TODO: Remove method with next API break */
98 __attribute__ ((deprecated
)) string
pkgIndexFile::LanguageCode() {
99 if (TranslationsAvailable() == false)
101 return APT::Configuration::getLanguages()[0];