test.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /*
  2. * Copyright (C) 2006 Steven Dake (sdake@mvista.com)
  3. *
  4. * This software licensed under BSD license, the text of which follows:
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions are met:
  8. *
  9. * - Redistributions of source code must retain the above copyright notice,
  10. * this list of conditions and the following disclaimer.
  11. * - Redistributions in binary form must reproduce the above copyright notice,
  12. * this list of conditions and the following disclaimer in the documentation
  13. * and/or other materials provided with the distribution.
  14. * - Neither the name of the MontaVista Software, Inc. nor the names of its
  15. * contributors may be used to endorse or promote products derived from this
  16. * software without specific prior written permission.
  17. *
  18. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  19. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  20. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  21. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  22. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  23. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  24. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  25. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  26. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  27. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  28. * THE POSSIBILITY OF SUCH DAMAGE.
  29. */
  30. #include <assert.h>
  31. #include <unistd.h>
  32. #include "lcr_ifact.h"
  33. struct iface {
  34. void (*func1) (void);
  35. void (*func2) (void);
  36. void (*func3) (void);
  37. };
  38. int main (void) {
  39. unsigned int a_ifact_handle_ver0;
  40. unsigned int b_ifact_handle_ver0;
  41. struct iface *a_iface_ver0;
  42. struct iface *a_iface_ver1;
  43. void *a_iface_ver0_p;
  44. void *a_iface_ver1_p;
  45. unsigned int a_ifact_handle_ver1;
  46. unsigned int b_ifact_handle_ver1;
  47. struct iface *b_iface_ver0;
  48. struct iface *b_iface_ver1;
  49. void *b_iface_ver0_p;
  50. void *b_iface_ver1_p;
  51. unsigned int res;
  52. /*
  53. * Reference version 0 and 1 of A and B interfaces
  54. */
  55. res = lcr_ifact_reference (
  56. &a_ifact_handle_ver0,
  57. "A_iface1",
  58. 0, /* version 0 */
  59. &a_iface_ver0_p,
  60. (void *)0xaaaa0000);
  61. assert (res == 0);
  62. a_iface_ver0 = (struct iface *)a_iface_ver0_p;
  63. res = lcr_ifact_reference (
  64. &b_ifact_handle_ver0,
  65. "B_iface1",
  66. 0, /* version 0 */
  67. &b_iface_ver0_p,
  68. (void *)0xbbbb0000);
  69. assert (res == 0);
  70. b_iface_ver0 = (struct iface *)b_iface_ver0_p;
  71. res = lcr_ifact_reference (
  72. &a_ifact_handle_ver1,
  73. "A_iface1",
  74. 1, /* version 1 */
  75. &a_iface_ver1_p,
  76. (void *)0xaaaa1111);
  77. assert (res == 0);
  78. a_iface_ver1 = (struct iface *)a_iface_ver0_p;
  79. res = lcr_ifact_reference (
  80. &b_ifact_handle_ver1,
  81. "B_iface1",
  82. 1, /* version 1 */
  83. &b_iface_ver1_p,
  84. (void *)0xbbbb1111);
  85. assert (res == 0);
  86. b_iface_ver1 = (struct iface *)b_iface_ver0_p;
  87. a_iface_ver0->func1();
  88. a_iface_ver0->func2();
  89. a_iface_ver0->func3();
  90. lcr_ifact_release (a_ifact_handle_ver0);
  91. a_iface_ver1->func1();
  92. a_iface_ver1->func2();
  93. a_iface_ver1->func3();
  94. lcr_ifact_release (a_ifact_handle_ver1);
  95. b_iface_ver0->func1();
  96. b_iface_ver0->func2();
  97. b_iface_ver0->func3();
  98. lcr_ifact_release (b_ifact_handle_ver0);
  99. b_iface_ver1->func1();
  100. b_iface_ver1->func2();
  101. b_iface_ver1->func3();
  102. lcr_ifact_release (b_ifact_handle_ver1);
  103. return (0);
  104. }