ImfRational.cpp 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. ///////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 2006, Industrial Light & Magic, a division of Lucas
  4. // Digital Ltd. LLC
  5. //
  6. // All rights reserved.
  7. //
  8. // Redistribution and use in source and binary forms, with or without
  9. // modification, are permitted provided that the following conditions are
  10. // met:
  11. // * Redistributions of source code must retain the above copyright
  12. // notice, this list of conditions and the following disclaimer.
  13. // * Redistributions in binary form must reproduce the above
  14. // copyright notice, this list of conditions and the following disclaimer
  15. // in the documentation and/or other materials provided with the
  16. // distribution.
  17. // * Neither the name of Industrial Light & Magic nor the names of
  18. // its contributors may be used to endorse or promote products derived
  19. // from this software without specific prior written permission.
  20. //
  21. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  22. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  23. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  24. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  25. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  26. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  27. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  28. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  29. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  30. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  31. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  32. //
  33. ///////////////////////////////////////////////////////////////////////////
  34. //-----------------------------------------------------------------------------
  35. //
  36. // Rational numbers
  37. //
  38. // The double-to-Rational conversion code below
  39. // was contributed to OpenEXR by Greg Ward.
  40. //
  41. //-----------------------------------------------------------------------------
  42. #include <ImfRational.h>
  43. #include <cmath>
  44. using namespace std;
  45. #include "ImfNamespace.h"
  46. OPENEXR_IMF_INTERNAL_NAMESPACE_SOURCE_ENTER
  47. namespace {
  48. double
  49. frac (double x, double e)
  50. {
  51. return x - floor (x + e);
  52. }
  53. double
  54. square (double x)
  55. {
  56. return x * x;
  57. }
  58. double
  59. denom (double x, double e)
  60. {
  61. if (e > frac (x, e))
  62. {
  63. return 1;
  64. }
  65. else
  66. {
  67. double r = frac (1 / x, e);
  68. if (e > r)
  69. {
  70. return floor (1 / x + e);
  71. }
  72. else
  73. {
  74. return denom (frac (1 / r, e), e / square (x * r)) +
  75. floor (1 / x + e) * denom (frac (1 / x, e), e / square (x));
  76. }
  77. }
  78. }
  79. } // namespace
  80. Rational::Rational (double x)
  81. {
  82. int sign;
  83. if (x >= 0)
  84. {
  85. sign = 1; // positive
  86. }
  87. else if (x < 0)
  88. {
  89. sign = -1; // negative
  90. x = -x;
  91. }
  92. else
  93. {
  94. n = 0; // NaN
  95. d = 0;
  96. return;
  97. }
  98. if (x >= (1U << 31) - 0.5)
  99. {
  100. n = sign; // infinity
  101. d = 0;
  102. return;
  103. }
  104. double e = (x < 1? 1: x) / (1U << 30);
  105. d = (unsigned int) denom (x, e);
  106. n = sign * (int) floor (x * d + 0.5);
  107. }
  108. OPENEXR_IMF_INTERNAL_NAMESPACE_SOURCE_EXIT