schedwrk.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /*
  2. * Copyright (c) 2009 Red Hat, Inc.
  3. *
  4. * All rights reserved.
  5. *
  6. * Author: Steven Dake (sdake@redhat.com)
  7. *
  8. * This software licensed under BSD license, the text of which follows:
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions are met:
  12. *
  13. * - Redistributions of source code must retain the above copyright notice,
  14. * this list of conditions and the following disclaimer.
  15. * - Redistributions in binary form must reproduce the above copyright notice,
  16. * this list of conditions and the following disclaimer in the documentation
  17. * and/or other materials provided with the distribution.
  18. * - Neither the name of the MontaVista Software, Inc. nor the names of its
  19. * contributors may be used to endorse or promote products derived from this
  20. * software without specific prior written permission.
  21. *
  22. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTIBUTORS "AS IS"
  23. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  24. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  25. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  26. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  27. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  28. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  29. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  30. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  31. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  32. * THE POSSIBILITY OF SUCH DAMAGE.
  33. */
  34. #include <corosync/totem/totempg.h>
  35. #include <corosync/hdb.h>
  36. #include "schedwrk.h"
  37. static void (*serialize_lock) (void);
  38. static void (*serialize_unlock) (void);
  39. DECLARE_HDB_DATABASE (schedwrk_instance_database);
  40. struct schedwrk_instance {
  41. int (*schedwrk_fn) (const void *);
  42. const void *context;
  43. void *callback_handle;
  44. };
  45. static int schedwrk_do (enum totem_callback_token_type type, const void *context)
  46. {
  47. hdb_handle_t handle = (hdb_handle_t)(unsigned int)context;
  48. struct schedwrk_instance *instance;
  49. int res;
  50. res = hdb_handle_get (&schedwrk_instance_database,
  51. hdb_nocheck_convert (handle),
  52. (void *)&instance);
  53. if (res != 0) {
  54. goto error_exit;
  55. }
  56. serialize_lock ();
  57. res = instance->schedwrk_fn (instance->context);
  58. serialize_unlock ();
  59. if (res == 0) {
  60. hdb_handle_destroy (&schedwrk_instance_database, hdb_nocheck_convert (handle));
  61. }
  62. hdb_handle_put (&schedwrk_instance_database,
  63. hdb_nocheck_convert (handle));
  64. return (res);
  65. error_exit:
  66. return (-1);
  67. }
  68. void schedwrk_init (
  69. void (*serialize_lock_fn) (void),
  70. void (*serialize_unlock_fn) (void))
  71. {
  72. serialize_lock = serialize_lock_fn;
  73. serialize_unlock = serialize_unlock_fn;
  74. }
  75. int schedwrk_create (
  76. hdb_handle_t *handle,
  77. int (schedwrk_fn) (const void *),
  78. const void *context)
  79. {
  80. struct schedwrk_instance *instance;
  81. int res;
  82. res = hdb_handle_create (&schedwrk_instance_database,
  83. sizeof (struct schedwrk_instance), handle);
  84. if (res != 0) {
  85. goto error_exit;
  86. }
  87. res = hdb_handle_get (&schedwrk_instance_database, *handle,
  88. (void *)&instance);
  89. if (res != 0) {
  90. goto error_destroy;
  91. }
  92. totempg_callback_token_create (
  93. &instance->callback_handle,
  94. TOTEM_CALLBACK_TOKEN_SENT,
  95. 1,
  96. schedwrk_do,
  97. (void *)(unsigned int)*handle);
  98. instance->schedwrk_fn = schedwrk_fn;
  99. instance->context = context;
  100. hdb_handle_put (&schedwrk_instance_database, *handle);
  101. return (0);
  102. error_destroy:
  103. hdb_handle_destroy (&schedwrk_instance_database, *handle);
  104. error_exit:
  105. return (-1);
  106. }
  107. void schedwrk_destroy (hdb_handle_t handle)
  108. {
  109. hdb_handle_destroy (&schedwrk_instance_database, handle);
  110. }