goldendict-ng/winlibs/include/zim/writer/contentProvider.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

174 lines
4.6 KiB
C
Raw Normal View History

feat!: add libzim dependency (#725) * feat!: add libzim dependency * 🎨 apply clang-format changes * action: add libzim dependency to action * feat!: change dependency folder * action: add zim support * feat!: add libzim support * action: fix sonarcloud check * doc: add libzim readme * action: cmake build * action: cmake check * fix: code smell * action: cmake check * action: cmake on Macos * action: cmake on Macos * feat: use libzim to read title and description * 🎨 apply clang-format changes * feat: split zim file support * feat: loadArticle refactor * 🎨 apply clang-format changes * 🎨 apply clang-format changes * feat: update library and goldendict.pro * 🎨 apply clang-format changes * fix:word count * 🎨 apply clang-format changes * fix: video src url subsititue * 🎨 apply clang-format changes * zim: headword is not usually a valid it is from title and url. * fix: remove nested try catch * zim: fix resource loading issue. * 🎨 apply clang-format changes * action: remove libao * zim: process url some old zim dictionary url does not contain namespace such as /C/url make the old and new zim dictionary's url consistent without the leading ../C/ etc. * 🎨 apply clang-format changes * zim: process url remove leading dot and slash such as ../-/assets ,remove ../ * 🎨 apply clang-format changes * zim: remove resourceIndex creation use libzim to read the resource directly. * zim: only iterate all the articles * 🎨 apply clang-format changes * fix: code smell * 🎨 apply clang-format changes * zim: refactor method to convert url to wstring * 🎨 apply clang-format changes * fix:code smell * 🎨 apply clang-format changes * zim: update windows dependencies * zim: add mutex lock * 🎨 apply clang-format changes * fix: code smell * 🎨 apply clang-format changes --------- Co-authored-by: xiaoyifang <xiaoyifang@users.noreply.github.com> Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
2023-05-27 04:12:16 +00:00
/*
* Copyright (C) 2020 Matthieu Gautier <mgautier@kymeria.fr>
*
* 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_WRITER_CONTENTPROVIDER_H
#define ZIM_WRITER_CONTENTPROVIDER_H
#include <stdexcept>
#include <zim/blob.h>
#include <zim/zim.h>
#include <string>
namespace zim {
#ifdef _WIN32
#define DEFAULTFD zim::windows::FD
namespace windows {
#else
#define DEFAULTFD zim::unix::FD
namespace unix {
#endif
class FD;
}
namespace writer {
/**
* `ContentProvider` is an abstract class in charge of providing the content to
* add in the archive to the creator.
*/
class LIBZIM_API ContentProvider
{
public:
virtual ~ContentProvider() = default;
/**
* The size of the content to add into the archive.
*
* @return the total size of the content.
*/
virtual zim::size_type getSize() const = 0;
/**
* Return a blob to add to the archive.
*
* The returned blob doesn't have to represent the whole content.
* The feed method can return the whole content chunk by chunk or in
* one step.
* When the whole content has been returned, feed must return an empty blob
* (size == 0).
*
* This method will be called several times (at least twice) for
* each content to add.
*
* It is up to the implementation to manage correctly the data pointed by
* the returned blob.
* It may (re)use the same buffer between calls (rewriting its content),
* create a new buffer each time or make the blob point to a new region of
* a big buffer.
* It is up to the implementation to free any allocated memory.
*
* The data pointed by the blob must stay valid until the next call to feed.
* A call to feed ensure that the data returned by a previous call will not
* be used anymore.
*/
virtual Blob feed() = 0;
};
/**
* StringProvider provide the content stored in a string.
*/
class LIBZIM_API StringProvider: public ContentProvider
{
public:
/**
* Create a provider using a string as content.
* The string content is copied and the reference don't have to be "keep" alive.
*
* @param content the content to serve.
*/
explicit StringProvider( const std::string & content ):
content( content ),
feeded( false )
{
}
zim::size_type getSize() const
{
return content.size();
}
Blob feed();
protected:
std::string content;
bool feeded;
};
/**
* SharedStringProvider provide the content stored in a shared string.
*
* It is mostly the same thing that `StringProvider` but use a shared_ptr
* to avoid copy.
*/
class LIBZIM_API SharedStringProvider: public ContentProvider
{
public:
/**
* Create a provider using a string as content.
* The string content is not copied.
*
* @param content the content to serve.
*/
explicit SharedStringProvider( std::shared_ptr< const std::string > content ):
content( content ),
feeded( false )
{
}
zim::size_type getSize() const
{
return content->size();
}
Blob feed();
protected:
std::shared_ptr< const std::string > content;
bool feeded;
};
/**
* FileProvider provide the content stored in file.
*/
class LIBZIM_API FileProvider: public ContentProvider
{
public:
/**
* Create a provider using file as content.
*
* @param filepath the path to the file to serve.
*/
explicit FileProvider( const std::string & filepath );
~FileProvider();
zim::size_type getSize() const
{
return size;
}
Blob feed();
protected:
std::string filepath;
zim::size_type size;
private:
std::unique_ptr< char[] > buffer;
std::unique_ptr< DEFAULTFD > fd;
zim::offset_type offset;
};
} // namespace writer
} // namespace zim
#undef DEFAULTFD
#endif // ZIM_WRITER_CONTENTPROVIDER_H