schedwrk.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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,NULL);
  40. struct schedwrk_instance {
  41. int (*schedwrk_fn) (const void *);
  42. const void *context;
  43. void *callback_handle;
  44. };
  45. union u {
  46. hdb_handle_t h;
  47. const void *v;
  48. };
  49. static hdb_handle_t
  50. void2handle (const void *v) { union u u; u.v = v; return u.h; }
  51. static const void *
  52. handle2void (hdb_handle_t h) { union u u; u.h = h; return u.v; }
  53. static int schedwrk_do (enum totem_callback_token_type type, const void *context)
  54. {
  55. hdb_handle_t handle = void2handle (context);
  56. struct schedwrk_instance *instance;
  57. int res;
  58. res = hdb_handle_get (&schedwrk_instance_database,
  59. hdb_nocheck_convert (handle),
  60. (void *)&instance);
  61. if (res != 0) {
  62. goto error_exit;
  63. }
  64. serialize_lock ();
  65. res = instance->schedwrk_fn (instance->context);
  66. serialize_unlock ();
  67. if (res == 0) {
  68. hdb_handle_destroy (&schedwrk_instance_database, hdb_nocheck_convert (handle));
  69. }
  70. hdb_handle_put (&schedwrk_instance_database,
  71. hdb_nocheck_convert (handle));
  72. return (res);
  73. error_exit:
  74. return (-1);
  75. }
  76. void schedwrk_init (
  77. void (*serialize_lock_fn) (void),
  78. void (*serialize_unlock_fn) (void))
  79. {
  80. serialize_lock = serialize_lock_fn;
  81. serialize_unlock = serialize_unlock_fn;
  82. }
  83. int schedwrk_create (
  84. hdb_handle_t *handle,
  85. int (schedwrk_fn) (const void *),
  86. const void *context)
  87. {
  88. struct schedwrk_instance *instance;
  89. int res;
  90. res = hdb_handle_create (&schedwrk_instance_database,
  91. sizeof (struct schedwrk_instance), handle);
  92. if (res != 0) {
  93. goto error_exit;
  94. }
  95. res = hdb_handle_get (&schedwrk_instance_database, *handle,
  96. (void *)&instance);
  97. if (res != 0) {
  98. goto error_destroy;
  99. }
  100. totempg_callback_token_create (
  101. &instance->callback_handle,
  102. TOTEM_CALLBACK_TOKEN_SENT,
  103. 1,
  104. schedwrk_do,
  105. handle2void (*handle));
  106. instance->schedwrk_fn = schedwrk_fn;
  107. instance->context = context;
  108. hdb_handle_put (&schedwrk_instance_database, *handle);
  109. return (0);
  110. error_destroy:
  111. hdb_handle_destroy (&schedwrk_instance_database, *handle);
  112. error_exit:
  113. return (-1);
  114. }
  115. void schedwrk_destroy (hdb_handle_t handle)
  116. {
  117. hdb_handle_destroy (&schedwrk_instance_database, handle);
  118. }