mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 12:44:07 +00:00
3858932ec4
* 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>
65 lines
2.5 KiB
C
65 lines
2.5 KiB
C
/**
|
|
* \file lzma/hardware.h
|
|
* \brief Hardware information
|
|
*
|
|
* Since liblzma can consume a lot of system resources, it also provides
|
|
* ways to limit the resource usage. Applications linking against liblzma
|
|
* need to do the actual decisions how much resources to let liblzma to use.
|
|
* To ease making these decisions, liblzma provides functions to find out
|
|
* the relevant capabilities of the underlying hardware. Currently there
|
|
* is only a function to find out the amount of RAM, but in the future there
|
|
* will be also a function to detect how many concurrent threads the system
|
|
* can run.
|
|
*
|
|
* \note On some operating systems, these function may temporarily
|
|
* load a shared library or open file descriptor(s) to find out
|
|
* the requested hardware information. Unless the application
|
|
* assumes that specific file descriptors are not touched by
|
|
* other threads, this should have no effect on thread safety.
|
|
* Possible operations involving file descriptors will restart
|
|
* the syscalls if they return EINTR.
|
|
*/
|
|
|
|
/*
|
|
* Author: Lasse Collin
|
|
*
|
|
* This file has been put into the public domain.
|
|
* You can do whatever you want with this file.
|
|
*
|
|
* See ../lzma.h for information about liblzma as a whole.
|
|
*/
|
|
|
|
#ifndef LZMA_H_INTERNAL
|
|
# error Never include this file directly. Use <lzma.h> instead.
|
|
#endif
|
|
|
|
|
|
/**
|
|
* \brief Get the total amount of physical memory (RAM) in bytes
|
|
*
|
|
* This function may be useful when determining a reasonable memory
|
|
* usage limit for decompressing or how much memory it is OK to use
|
|
* for compressing.
|
|
*
|
|
* \return On success, the total amount of physical memory in bytes
|
|
* is returned. If the amount of RAM cannot be determined,
|
|
* zero is returned. This can happen if an error occurs
|
|
* or if there is no code in liblzma to detect the amount
|
|
* of RAM on the specific operating system.
|
|
*/
|
|
extern LZMA_API(uint64_t) lzma_physmem(void) lzma_nothrow;
|
|
|
|
|
|
/**
|
|
* \brief Get the number of processor cores or threads
|
|
*
|
|
* This function may be useful when determining how many threads to use.
|
|
* If the hardware supports more than one thread per CPU core, the number
|
|
* of hardware threads is returned if that information is available.
|
|
*
|
|
* \return On success, the number of available CPU threads or cores is
|
|
* returned. If this information isn't available or an error
|
|
* occurs, zero is returned.
|
|
*/
|
|
extern LZMA_API(uint32_t) lzma_cputhreads(void) lzma_nothrow;
|