/usr/include/zim/file.h is in libzim-dev 2.0.0-2build2.
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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | /*
* Copyright (C) 2006,2009 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_FILE_H
#define ZIM_FILE_H
#include <string>
#include <iterator>
#include <zim/zim.h>
#include <zim/fileimpl.h>
#include <zim/blob.h>
#include <zim/smartptr.h>
namespace zim
{
class Article;
class Search;
class File
{
SmartPtr<FileImpl> impl;
public:
File()
{ }
explicit File(const std::string& fname)
: impl(new FileImpl(fname.c_str()))
{ }
const std::string& getFilename() const { return impl->getFilename(); }
const Fileheader& getFileheader() const { return impl->getFileheader(); }
offset_type getFilesize() const { return impl->getFilesize(); }
Dirent getDirent(size_type idx) const { return impl->getDirent(idx); }
Dirent getDirentByTitle(size_type idx) const { return impl->getDirentByTitle(idx); }
size_type getCountArticles() const { return impl->getCountArticles(); }
Article getArticle(size_type idx) const;
Article getArticle(char ns, const std::string& url) const;
Article getArticleByUrl(const std::string& url) const;
Article getArticleByTitle(size_type idx) const;
Article getArticleByTitle(char ns, const std::string& title) const;
Cluster getCluster(size_type idx) const { return impl->getCluster(idx); }
size_type getCountClusters() const { return impl->getCountClusters(); }
offset_type getClusterOffset(size_type idx) const { return impl->getClusterOffset(idx); }
Blob getBlob(size_type clusterIdx, size_type blobIdx) const
{ return getCluster(clusterIdx).getBlob(blobIdx); }
offset_type getOffset(size_type clusterIdx, size_type blobIdx) const;
size_type getNamespaceBeginOffset(char ch) const
{ return impl->getNamespaceBeginOffset(ch); }
size_type getNamespaceEndOffset(char ch) const
{ return impl->getNamespaceEndOffset(ch); }
size_type getNamespaceCount(char ns) const
{ return getNamespaceEndOffset(ns) - getNamespaceBeginOffset(ns); }
std::string getNamespaces() const
{ return impl->getNamespaces(); }
bool hasNamespace(char ch) const;
class const_iterator;
const_iterator begin() const;
const_iterator beginByTitle() const;
const_iterator end() const;
std::pair<bool, const_iterator> findx(char ns, const std::string& url) const;
std::pair<bool, const_iterator> findx(const std::string& url) const;
std::pair<bool, const_iterator> findxByTitle(char ns, const std::string& title) const;
const_iterator findByTitle(char ns, const std::string& title) const;
const_iterator find(char ns, const std::string& url) const;
const_iterator find(const std::string& url) const;
const Search* search(const std::string& query, int start, int end) const;
bool good() const { return impl.getPointer() != 0; }
time_t getMTime() const { return impl->getMTime(); }
const std::string& getMimeType(uint16_t idx) const { return impl->getMimeType(idx); }
std::string getChecksum() { return impl->getChecksum(); }
bool verify() { return impl->verify(); }
};
std::string urldecode(const std::string& url);
}
#endif // ZIM_FILE_H
|