2017-08-27 12:05:17 +02:00
|
|
|
/*
|
2023-05-22 14:32:14 +02:00
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
2017-06-09 03:43:56 +02:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
2017-08-27 12:05:17 +02:00
|
|
|
* This source code is licensed under both the BSD-style license (found in the
|
|
|
|
* LICENSE file in the root directory of this source tree) and the GPLv2 (found
|
|
|
|
* in the COPYING file in the root directory of this source tree).
|
2017-10-26 22:41:47 +02:00
|
|
|
* You may select, at your option, one of the above-listed licenses.
|
2017-06-09 03:43:56 +02:00
|
|
|
*/
|
2017-08-27 12:05:17 +02:00
|
|
|
|
2017-06-09 03:43:56 +02:00
|
|
|
#ifndef POOL_H
|
|
|
|
#define POOL_H
|
|
|
|
|
|
|
|
#if defined (__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2021-01-08 11:21:43 +01:00
|
|
|
#include "zstd_deps.h"
|
2018-05-15 19:45:22 +02:00
|
|
|
#define ZSTD_STATIC_LINKING_ONLY /* ZSTD_customMem */
|
2020-09-18 21:38:36 +02:00
|
|
|
#include "../zstd.h"
|
2017-06-09 03:43:56 +02:00
|
|
|
|
|
|
|
typedef struct POOL_ctx_s POOL_ctx;
|
|
|
|
|
|
|
|
/*! POOL_create() :
|
2017-08-27 12:05:17 +02:00
|
|
|
* Create a thread pool with at most `numThreads` threads.
|
|
|
|
* `numThreads` must be at least 1.
|
|
|
|
* The maximum number of queued jobs before blocking is `queueSize`.
|
|
|
|
* @return : POOL_ctx pointer on success, else NULL.
|
2017-06-09 03:43:56 +02:00
|
|
|
*/
|
2018-05-15 19:45:22 +02:00
|
|
|
POOL_ctx* POOL_create(size_t numThreads, size_t queueSize);
|
2017-06-09 03:43:56 +02:00
|
|
|
|
2019-01-04 01:30:03 +01:00
|
|
|
POOL_ctx* POOL_create_advanced(size_t numThreads, size_t queueSize,
|
|
|
|
ZSTD_customMem customMem);
|
2017-10-26 22:41:47 +02:00
|
|
|
|
2017-06-09 03:43:56 +02:00
|
|
|
/*! POOL_free() :
|
2019-01-04 01:30:03 +01:00
|
|
|
* Free a thread pool returned by POOL_create().
|
|
|
|
*/
|
2018-05-15 19:45:22 +02:00
|
|
|
void POOL_free(POOL_ctx* ctx);
|
2017-06-09 03:43:56 +02:00
|
|
|
|
2023-05-22 14:32:14 +02:00
|
|
|
|
|
|
|
/*! POOL_joinJobs() :
|
|
|
|
* Waits for all queued jobs to finish executing.
|
|
|
|
*/
|
|
|
|
void POOL_joinJobs(POOL_ctx* ctx);
|
|
|
|
|
2019-01-04 01:30:03 +01:00
|
|
|
/*! POOL_resize() :
|
|
|
|
* Expands or shrinks pool's number of threads.
|
|
|
|
* This is more efficient than releasing + creating a new context,
|
|
|
|
* since it tries to preserve and re-use existing threads.
|
|
|
|
* `numThreads` must be at least 1.
|
|
|
|
* @return : 0 when resize was successful,
|
|
|
|
* !0 (typically 1) if there is an error.
|
|
|
|
* note : only numThreads can be resized, queueSize remains unchanged.
|
|
|
|
*/
|
|
|
|
int POOL_resize(POOL_ctx* ctx, size_t numThreads);
|
|
|
|
|
2017-07-22 23:46:05 +02:00
|
|
|
/*! POOL_sizeof() :
|
2019-01-04 01:30:03 +01:00
|
|
|
* @return threadpool memory usage
|
|
|
|
* note : compatible with NULL (returns 0 in this case)
|
|
|
|
*/
|
2022-01-24 11:04:45 +01:00
|
|
|
size_t POOL_sizeof(const POOL_ctx* ctx);
|
2017-07-22 23:46:05 +02:00
|
|
|
|
2017-06-09 03:43:56 +02:00
|
|
|
/*! POOL_function :
|
2019-01-04 01:30:03 +01:00
|
|
|
* The function type that can be added to a thread pool.
|
|
|
|
*/
|
2018-05-15 19:45:22 +02:00
|
|
|
typedef void (*POOL_function)(void*);
|
2017-06-09 03:43:56 +02:00
|
|
|
|
|
|
|
/*! POOL_add() :
|
2019-01-04 01:30:03 +01:00
|
|
|
* Add the job `function(opaque)` to the thread pool. `ctx` must be valid.
|
|
|
|
* Possibly blocks until there is room in the queue.
|
|
|
|
* Note : The function may be executed asynchronously,
|
|
|
|
* therefore, `opaque` must live until function has been completed.
|
|
|
|
*/
|
2018-05-15 19:45:22 +02:00
|
|
|
void POOL_add(POOL_ctx* ctx, POOL_function function, void* opaque);
|
|
|
|
|
|
|
|
|
|
|
|
/*! POOL_tryAdd() :
|
2022-01-24 11:04:45 +01:00
|
|
|
* Add the job `function(opaque)` to thread pool _if_ a queue slot is available.
|
2019-01-04 01:30:03 +01:00
|
|
|
* Returns immediately even if not (does not block).
|
|
|
|
* @return : 1 if successful, 0 if not.
|
|
|
|
*/
|
2018-05-15 19:45:22 +02:00
|
|
|
int POOL_tryAdd(POOL_ctx* ctx, POOL_function function, void* opaque);
|
2017-06-09 03:43:56 +02:00
|
|
|
|
|
|
|
|
|
|
|
#if defined (__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|