This file is indexed.

/usr/include/zim/fileimpl.h is in libzim-dev 1.2-9.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
 * Copyright (C) 2006 Tommi Maekitalo
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * is provided AS IS, WITHOUT ANY WARRANTY; without even the implied
 * warranty of MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, and
 * NON-INFRINGEMENT.  See the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 *
 */

#ifndef ZIM_FILEIMPL_H
#define ZIM_FILEIMPL_H

#include <string>
#include <vector>
#include <map>
#include <zim/fstream.h>
#include <zim/refcounted.h>
#include <zim/zim.h>
#include <zim/fileheader.h>
#include <zim/cache.h>
#include <zim/dirent.h>
#include <zim/cluster.h>

namespace zim
{
  class FileImpl : public RefCounted
  {
      ifstream zimFile;
      Fileheader header;
      std::string filename;

      Cache<size_type, Dirent> direntCache;
      Cache<offset_type, Cluster> clusterCache;
      typedef std::map<char, size_type> NamespaceCache;
      NamespaceCache namespaceBeginCache;
      NamespaceCache namespaceEndCache;

      std::string namespaces;

      typedef std::vector<std::string> MimeTypes;
      MimeTypes mimeTypes;

      offset_type getOffset(offset_type ptrOffset, size_type idx);

    public:
      explicit FileImpl(const char* fname);

      time_t getMTime() const   { return zimFile.getMTime(); }

      const std::string& getFilename() const   { return filename; }
      const Fileheader& getFileheader() const  { return header; }
      offset_type getFilesize() const          { return zimFile.fsize(); }

      Dirent getDirent(size_type idx);
      Dirent getDirentByTitle(size_type idx);
      size_type getIndexByTitle(size_type idx);
      size_type getCountArticles() const       { return header.getArticleCount(); }

      Cluster getCluster(size_type idx);
      size_type getCountClusters() const       { return header.getClusterCount(); }
      offset_type getClusterOffset(size_type idx)   { return getOffset(header.getClusterPtrPos(), idx); }

      size_type getNamespaceBeginOffset(char ch);
      size_type getNamespaceEndOffset(char ch);
      size_type getNamespaceCount(char ns)
        { return getNamespaceEndOffset(ns) - getNamespaceBeginOffset(ns); }

      std::string getNamespaces();
      bool hasNamespace(char ch);

      const std::string& getMimeType(uint16_t idx) const;

      std::string getChecksum();
      bool verify();
  };

}

#endif // ZIM_FILEIMPL_H