MEM_CacheLimiterC-Api.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. /*
  2. * This program is free software; you can redistribute it and/or
  3. * modify it under the terms of the GNU General Public License
  4. * as published by the Free Software Foundation; either version 2
  5. * of the License, or (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program; if not, write to the Free Software Foundation,
  14. * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  15. */
  16. /** \file
  17. * \ingroup memutil
  18. */
  19. #ifndef __MEM_CACHELIMITERC_API_H__
  20. #define __MEM_CACHELIMITERC_API_H__
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. struct MEM_CacheLimiter_s;
  25. struct MEM_CacheLimiterHandle_s;
  26. typedef struct MEM_CacheLimiter_s MEM_CacheLimiterC;
  27. typedef struct MEM_CacheLimiterHandle_s MEM_CacheLimiterHandleC;
  28. /* function used to remove data from memory */
  29. typedef void (*MEM_CacheLimiter_Destruct_Func)(void *);
  30. /* function used to measure stored data element size */
  31. typedef size_t (*MEM_CacheLimiter_DataSize_Func)(void *);
  32. /* function used to measure priority of item when freeing memory */
  33. typedef int (*MEM_CacheLimiter_ItemPriority_Func)(void *, int);
  34. /* function to check whether item could be destroyed */
  35. typedef bool (*MEM_CacheLimiter_ItemDestroyable_Func)(void *);
  36. #ifndef __MEM_CACHELIMITER_H__
  37. void MEM_CacheLimiter_set_maximum(size_t m);
  38. size_t MEM_CacheLimiter_get_maximum(void);
  39. void MEM_CacheLimiter_set_disabled(bool disabled);
  40. bool MEM_CacheLimiter_is_disabled(void);
  41. #endif /* __MEM_CACHELIMITER_H__ */
  42. /**
  43. * Create new MEM_CacheLimiter object
  44. * managed objects are destructed with the data_destructor
  45. *
  46. * \param data_destructor
  47. * \return A new MEM_CacheLimter object
  48. */
  49. MEM_CacheLimiterC *new_MEM_CacheLimiter(MEM_CacheLimiter_Destruct_Func data_destructor,
  50. MEM_CacheLimiter_DataSize_Func data_size);
  51. /**
  52. * Delete MEM_CacheLimiter
  53. *
  54. * Frees the memory of the CacheLimiter but does not touch managed objects!
  55. *
  56. * \param This "This" pointer
  57. */
  58. void delete_MEM_CacheLimiter(MEM_CacheLimiterC *This);
  59. /**
  60. * Manage object
  61. *
  62. * \param This "This" pointer, data data object to manage
  63. * \return CacheLimiterHandle to ref, unref, touch the managed object
  64. */
  65. MEM_CacheLimiterHandleC *MEM_CacheLimiter_insert(MEM_CacheLimiterC *This, void *data);
  66. /**
  67. * Free objects until memory constraints are satisfied
  68. *
  69. * \param This "This" pointer
  70. */
  71. void MEM_CacheLimiter_enforce_limits(MEM_CacheLimiterC *This);
  72. /**
  73. * Unmanage object previously inserted object.
  74. * Does _not_ delete managed object!
  75. *
  76. * \param handle of object
  77. */
  78. void MEM_CacheLimiter_unmanage(MEM_CacheLimiterHandleC *handle);
  79. /**
  80. * Raise priority of object (put it at the tail of the deletion chain)
  81. *
  82. * \param handle of object
  83. */
  84. void MEM_CacheLimiter_touch(MEM_CacheLimiterHandleC *handle);
  85. /**
  86. * Increment reference counter. Objects with reference counter != 0 are _not_
  87. * deleted.
  88. *
  89. * \param handle of object
  90. */
  91. void MEM_CacheLimiter_ref(MEM_CacheLimiterHandleC *handle);
  92. /**
  93. * Decrement reference counter. Objects with reference counter != 0 are _not_
  94. * deleted.
  95. *
  96. * \param handle of object
  97. */
  98. void MEM_CacheLimiter_unref(MEM_CacheLimiterHandleC *handle);
  99. /**
  100. * Get reference counter.
  101. *
  102. * \param handle of object
  103. */
  104. int MEM_CacheLimiter_get_refcount(MEM_CacheLimiterHandleC *handle);
  105. /**
  106. * Get pointer to managed object
  107. *
  108. * \param handle of object
  109. */
  110. void *MEM_CacheLimiter_get(MEM_CacheLimiterHandleC *handle);
  111. void MEM_CacheLimiter_ItemPriority_Func_set(MEM_CacheLimiterC *This,
  112. MEM_CacheLimiter_ItemPriority_Func item_priority_func);
  113. void MEM_CacheLimiter_ItemDestroyable_Func_set(
  114. MEM_CacheLimiterC *This, MEM_CacheLimiter_ItemDestroyable_Func item_destroyable_func);
  115. size_t MEM_CacheLimiter_get_memory_in_use(MEM_CacheLimiterC *This);
  116. #ifdef __cplusplus
  117. }
  118. #endif
  119. #endif // __MEM_CACHELIMITERC_API_H__