oo_EQUAL.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. /* oo_EQUAL.h
  2. *
  3. * Copyright (C) 1994-2007,2009,2011-2018 Paul Boersma
  4. *
  5. * This code is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or (at
  8. * your option) any later version.
  9. *
  10. * This code is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. * See the GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this work. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include "oo_undef.h"
  19. #define oo_SIMPLE(type, storage, x) \
  20. if (our x != thy x) return false;
  21. #define oo_SET(type, storage, x, setType) \
  22. for (int _i = 0; _i <= (int) setType::MAX; _i ++) { \
  23. if (our x [_i] != thy x [_i]) return false; \
  24. }
  25. #define oo_VECTOR(type, storage, x, min, max) \
  26. { \
  27. integer _min = (min), _max = (max); \
  28. if (! our x != ! thy x || \
  29. (our x && ! NUMvector_equal <type> (our x, thy x, _min, _max))) return false; \
  30. }
  31. #define oo_ANYVEC(type, storage, x, sizeExpression) \
  32. { \
  33. integer _size = (sizeExpression); \
  34. Melder_assert (our x.size == _size); \
  35. if (! NUMequal (our x.get(), thy x.get())) return false; \
  36. }
  37. #define oo_MATRIX(type, storage, x, row1, row2, col1, col2) \
  38. { \
  39. integer _row1 = (row1), _row2 = (row2), _col1 = (col1), _col2 = (col2); \
  40. if (! our x != ! thy x || \
  41. (our x && ! NUMmatrix_equal <type> (our x, thy x, _row1, _row2, _col1, _col2))) return false; \
  42. }
  43. #define oo_ANYMAT(type, storage, x, nrowExpression, ncolExpression) \
  44. { \
  45. integer _nrow = (nrowExpression); \
  46. integer _ncol = (ncolExpression); \
  47. if (_nrow != 0 && _ncol != 0) { \
  48. /*Melder_assert (our x.nrow == _nrow && our x.ncol == _ncol); BUG routinely violated in SSCP for lowerCholesky */ \
  49. if (! NUMequal (our x.get(), thy x.get())) return false; \
  50. } \
  51. }
  52. #define oo_ENUMx(kType, storage, x) \
  53. if (our x != thy x) return false;
  54. //#define oo_ENUMx_SET(kType, storage, x, setType) \
  55. // for (int _i = 0; _i <= (int) setType::MAX; _i ++) if (our x [_i] != thy x [_i]) return false;
  56. //#define oo_ENUMx_VECTOR(kType, storage, x, min, max) \
  57. // { \
  58. // integer _min = (min), _max = (max); \
  59. // if (! our x != ! thy x || \
  60. // (our x && ! NUMvector_equal <type> (our x, thy x, _min, _max))) return false; \
  61. // }
  62. #define oo_STRINGx(storage, x) \
  63. if (! Melder_equ (our x.get(), thy x.get())) return false;
  64. #define oo_STRINGx_SET(storage, x, setType) \
  65. for (int _i = 0; _i <= setType::MAX; _i ++) \
  66. if (! Melder_equ (our x [_i].get(), thy x [_i].get())) return false;
  67. #define oo_STRINGx_VECTOR(storage, x, n) \
  68. { \
  69. integer _size = (n); \
  70. Melder_assert (_size == our x.size); \
  71. if (! our x != ! thy x) return false; \
  72. if (our x) { \
  73. for (integer _i = 1; _i <= _size; _i ++) { \
  74. if (! Melder_equ (our x [_i].get(), thy x [_i].get())) return false; \
  75. } \
  76. } \
  77. }
  78. #define oo_STRUCT(Type, x) \
  79. if (! our x. equal (& thy x)) return false;
  80. #define oo_STRUCT_SET(Type, x, setType) \
  81. for (int _i = 0; _i <= (int) setType::MAX; _i ++) { \
  82. if (! our x [_i]. equal (& thy x [_i])) return false; \
  83. }
  84. #define oo_STRUCT_VECTOR_FROM(Type, x, min, max) \
  85. { \
  86. integer _min = (min), _max = (max); \
  87. if (! our x != ! thy x) return false; \
  88. if (our x) { \
  89. for (integer _i = _min; _i <= _max; _i ++) { \
  90. if (! our x [_i]. equal (& thy x [_i])) return false; \
  91. } \
  92. } \
  93. }
  94. #define oo_STRUCT_MATRIX_FROM(Type, x, row1, row2, col1, col2) \
  95. { \
  96. integer _row1 = (row1), _row2 = (row2), _col1 = (col1), _col2 = (col2); \
  97. if (! our x != ! thy x) return false; \
  98. if (our x) { \
  99. for (integer _irow = _row1; _irow <= _row2; _irow ++) { \
  100. for (integer _icol = _col1; _icol <= _col2; _icol ++) { \
  101. if (! our x [_irow] [_icol]. equal (& thy x [_irow] [_icol])) return false; \
  102. } \
  103. } \
  104. } \
  105. }
  106. #define oo_OBJECT(Class, version, x) \
  107. if (! our x != ! thy x || (our x && ! Data_equal (our x.get(), thy x.get()))) return false;
  108. #define oo_COLLECTION_OF(Class, x, ItemClass, version) \
  109. for (integer _i = 1; _i <= our x.size; _i ++) { \
  110. if (! our x.at [_i] != ! thy x.at [_i] || (our x.at [_i] && ! Data_equal (our x.at [_i], thy x.at [_i]))) return false; \
  111. }
  112. #define oo_COLLECTION(Class, x, ItemClass, version) \
  113. if (! our x != ! thy x || (our x && ! Data_equal (our x.get(), thy x.get()))) return false;
  114. #define oo_FILE(x) \
  115. if (! MelderFile_equal (& our x, & thy x)) return false;
  116. #define oo_DIR(x) \
  117. if (! MelderDir_equal (& our x, & thy x)) return false;
  118. #define oo_DEFINE_STRUCT(Type) \
  119. bool struct##Type :: equal (Type thee) {
  120. #define oo_END_STRUCT(Type) \
  121. return true; \
  122. }
  123. #define oo_DEFINE_CLASS(Class, Parent) \
  124. bool struct##Class :: v_equal (Daata _thee_Daata) { \
  125. Class thee = static_cast <Class> (_thee_Daata); \
  126. if (! Class##_Parent :: v_equal (thee)) return false;
  127. #define oo_END_CLASS(Class) \
  128. return true; \
  129. }
  130. #define oo_FROM(from)
  131. #define oo_ENDFROM
  132. #define oo_DECLARING 0
  133. #define oo_DESTROYING 0
  134. #define oo_COPYING 0
  135. #define oo_COMPARING 1
  136. #define oo_VALIDATING_ENCODING 0
  137. #define oo_READING 0
  138. #define oo_READING_TEXT 0
  139. #define oo_READING_BINARY 0
  140. #define oo_WRITING 0
  141. #define oo_WRITING_TEXT 0
  142. #define oo_WRITING_BINARY 0
  143. #define oo_DESCRIBING 0
  144. /* End of file oo_EQUAL.h */