thread_utils.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. // Copyright 2011 Google Inc. All Rights Reserved.
  2. //
  3. // Use of this source code is governed by a BSD-style license
  4. // that can be found in the COPYING file in the root of the source
  5. // tree. An additional intellectual property rights grant can be found
  6. // in the file PATENTS. All contributing project authors may
  7. // be found in the AUTHORS file in the root of the source tree.
  8. // -----------------------------------------------------------------------------
  9. //
  10. // Multi-threaded worker
  11. //
  12. // Author: Skal (pascal.massimino@gmail.com)
  13. #ifndef WEBP_UTILS_THREAD_UTILS_H_
  14. #define WEBP_UTILS_THREAD_UTILS_H_
  15. #ifdef HAVE_CONFIG_H
  16. #include "../webp/config.h"
  17. #endif
  18. #include "../webp/types.h"
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22. // State of the worker thread object
  23. typedef enum {
  24. NOT_OK = 0, // object is unusable
  25. OK, // ready to work
  26. WORK // busy finishing the current task
  27. } WebPWorkerStatus;
  28. // Function to be called by the worker thread. Takes two opaque pointers as
  29. // arguments (data1 and data2), and should return false in case of error.
  30. typedef int (*WebPWorkerHook)(void*, void*);
  31. // Synchronization object used to launch job in the worker thread
  32. typedef struct {
  33. void* impl_; // platform-dependent implementation worker details
  34. WebPWorkerStatus status_;
  35. WebPWorkerHook hook; // hook to call
  36. void* data1; // first argument passed to 'hook'
  37. void* data2; // second argument passed to 'hook'
  38. int had_error; // return value of the last call to 'hook'
  39. } WebPWorker;
  40. // The interface for all thread-worker related functions. All these functions
  41. // must be implemented.
  42. typedef struct {
  43. // Must be called first, before any other method.
  44. void (*Init)(WebPWorker* const worker);
  45. // Must be called to initialize the object and spawn the thread. Re-entrant.
  46. // Will potentially launch the thread. Returns false in case of error.
  47. int (*Reset)(WebPWorker* const worker);
  48. // Makes sure the previous work is finished. Returns true if worker->had_error
  49. // was not set and no error condition was triggered by the working thread.
  50. int (*Sync)(WebPWorker* const worker);
  51. // Triggers the thread to call hook() with data1 and data2 arguments. These
  52. // hook/data1/data2 values can be changed at any time before calling this
  53. // function, but not be changed afterward until the next call to Sync().
  54. void (*Launch)(WebPWorker* const worker);
  55. // This function is similar to Launch() except that it calls the
  56. // hook directly instead of using a thread. Convenient to bypass the thread
  57. // mechanism while still using the WebPWorker structs. Sync() must
  58. // still be called afterward (for error reporting).
  59. void (*Execute)(WebPWorker* const worker);
  60. // Kill the thread and terminate the object. To use the object again, one
  61. // must call Reset() again.
  62. void (*End)(WebPWorker* const worker);
  63. } WebPWorkerInterface;
  64. // Install a new set of threading functions, overriding the defaults. This
  65. // should be done before any workers are started, i.e., before any encoding or
  66. // decoding takes place. The contents of the interface struct are copied, it
  67. // is safe to free the corresponding memory after this call. This function is
  68. // not thread-safe. Return false in case of invalid pointer or methods.
  69. WEBP_EXTERN int WebPSetWorkerInterface(
  70. const WebPWorkerInterface* const winterface);
  71. // Retrieve the currently set thread worker interface.
  72. WEBP_EXTERN const WebPWorkerInterface* WebPGetWorkerInterface(void);
  73. //------------------------------------------------------------------------------
  74. #ifdef __cplusplus
  75. } // extern "C"
  76. #endif
  77. #endif // WEBP_UTILS_THREAD_UTILS_H_