Source

PersianAlgoCal.js

  1. /*
  2. * PersianAlgoCal.js - Represent a Persian algorithmic calendar object.
  3. *
  4. * Copyright © 2014-2015,2018, JEDLSoft
  5. *
  6. * Licensed under the Apache License, Version 2.0 (the "License");
  7. * you may not use this file except in compliance with the License.
  8. * You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. *
  16. * See the License for the specific language governing permissions and
  17. * limitations under the License.
  18. */
  19. var MathUtils = require("./MathUtils.js");
  20. var Calendar = require("./Calendar.js");
  21. /**
  22. * @class
  23. * Construct a new Persian algorithmic calendar object. This class encodes information about
  24. * a Persian algorithmic calendar.<p>
  25. *
  26. * @param {Object=} options Options governing the construction of this instance
  27. * @constructor
  28. * @extends Calendar
  29. */
  30. var PersianAlgoCal = function(options) {
  31. this.type = "persian-algo";
  32. if (options && typeof(options.onLoad) === "function") {
  33. options.onLoad(this);
  34. }
  35. };
  36. /**
  37. * the lengths of each month
  38. * @private
  39. * @const
  40. * @type Array.<number>
  41. */
  42. PersianAlgoCal.monthLengths = [
  43. 31, // Farvardin
  44. 31, // Ordibehesht
  45. 31, // Khordad
  46. 31, // Tir
  47. 31, // Mordad
  48. 31, // Shahrivar
  49. 30, // Mehr
  50. 30, // Aban
  51. 30, // Azar
  52. 30, // Dey
  53. 30, // Bahman
  54. 29 // Esfand
  55. ];
  56. /**
  57. * Return the number of months in the given year. The number of months in a year varies
  58. * for some luni-solar calendars because in some years, an extra month is needed to extend the
  59. * days in a year to an entire solar year. The month is represented as a 1-based number
  60. * where 1=first month, 2=second month, etc.
  61. *
  62. * @param {number} year a year for which the number of months is sought
  63. * @return {number} The number of months in the given year
  64. */
  65. PersianAlgoCal.prototype.getNumMonths = function(year) {
  66. return 12;
  67. };
  68. /**
  69. * Return the number of days in a particular month in a particular year. This function
  70. * can return a different number for a month depending on the year because of things
  71. * like leap years.
  72. *
  73. * @param {number} month the month for which the length is sought
  74. * @param {number} year the year within which that month can be found
  75. * @return {number} the number of days within the given month in the given year
  76. */
  77. PersianAlgoCal.prototype.getMonLength = function(month, year) {
  78. if (month !== 12 || !this.isLeapYear(year)) {
  79. return PersianAlgoCal.monthLengths[month-1];
  80. } else {
  81. // Month 12, Esfand, has 30 days instead of 29 in leap years
  82. return 30;
  83. }
  84. };
  85. /**
  86. * Return the equivalent year in the 2820 year cycle that begins on
  87. * Far 1, 474. This particular cycle obeys the cycle-of-years formula
  88. * whereas the others do not specifically. This cycle can be used as
  89. * a proxy for other years outside of the cycle by shifting them into
  90. * the cycle.
  91. * @param {number} year year to find the equivalent cycle year for
  92. * @returns {number} the equivalent cycle year
  93. */
  94. PersianAlgoCal.prototype.equivalentCycleYear = function(year) {
  95. var y = year - (year >= 0 ? 474 : 473);
  96. return MathUtils.mod(y, 2820) + 474;
  97. };
  98. /**
  99. * Return true if the given year is a leap year in the Persian calendar.
  100. * The year parameter may be given as a number, or as a PersAlgoDate object.
  101. * @param {number} year the year for which the leap year information is being sought
  102. * @return {boolean} true if the given year is a leap year
  103. */
  104. PersianAlgoCal.prototype.isLeapYear = function(year) {
  105. return (MathUtils.mod((this.equivalentCycleYear(year) + 38) * 682, 2816) < 682);
  106. };
  107. /**
  108. * Return the type of this calendar.
  109. *
  110. * @return {string} the name of the type of this calendar
  111. */
  112. PersianAlgoCal.prototype.getType = function() {
  113. return this.type;
  114. };
  115. /* register this calendar for the factory method */
  116. Calendar._constructors["persian-algo"] = PersianAlgoCal;
  117. module.exports = PersianAlgoCal;