4
0

schedwrk.c 3.9 KB

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