Check-6c0211bc.js 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. /**
  2. * Cesium - https://github.com/CesiumGS/cesium
  3. *
  4. * Copyright 2011-2020 Cesium Contributors
  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. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. *
  18. * Columbus View (Pat. Pend.)
  19. *
  20. * Portions licensed separately.
  21. * See https://github.com/CesiumGS/cesium/blob/master/LICENSE.md for full licensing details.
  22. */
  23. define(['exports', './when-54c2dc71'], function (exports, when) { 'use strict';
  24. /**
  25. * Constructs an exception object that is thrown due to a developer error, e.g., invalid argument,
  26. * argument out of range, etc. This exception should only be thrown during development;
  27. * it usually indicates a bug in the calling code. This exception should never be
  28. * caught; instead the calling code should strive not to generate it.
  29. * <br /><br />
  30. * On the other hand, a {@link RuntimeError} indicates an exception that may
  31. * be thrown at runtime, e.g., out of memory, that the calling code should be prepared
  32. * to catch.
  33. *
  34. * @alias DeveloperError
  35. * @constructor
  36. * @extends Error
  37. *
  38. * @param {String} [message] The error message for this exception.
  39. *
  40. * @see RuntimeError
  41. */
  42. function DeveloperError(message) {
  43. /**
  44. * 'DeveloperError' indicating that this exception was thrown due to a developer error.
  45. * @type {String}
  46. * @readonly
  47. */
  48. this.name = "DeveloperError";
  49. /**
  50. * The explanation for why this exception was thrown.
  51. * @type {String}
  52. * @readonly
  53. */
  54. this.message = message;
  55. //Browsers such as IE don't have a stack property until you actually throw the error.
  56. var stack;
  57. try {
  58. throw new Error();
  59. } catch (e) {
  60. stack = e.stack;
  61. }
  62. /**
  63. * The stack trace of this exception, if available.
  64. * @type {String}
  65. * @readonly
  66. */
  67. this.stack = stack;
  68. }
  69. if (when.defined(Object.create)) {
  70. DeveloperError.prototype = Object.create(Error.prototype);
  71. DeveloperError.prototype.constructor = DeveloperError;
  72. }
  73. DeveloperError.prototype.toString = function () {
  74. var str = this.name + ": " + this.message;
  75. if (when.defined(this.stack)) {
  76. str += "\n" + this.stack.toString();
  77. }
  78. return str;
  79. };
  80. /**
  81. * @private
  82. */
  83. DeveloperError.throwInstantiationError = function () {
  84. throw new DeveloperError(
  85. "This function defines an interface and should not be called directly."
  86. );
  87. };
  88. /**
  89. * Contains functions for checking that supplied arguments are of a specified type
  90. * or meet specified conditions
  91. * @private
  92. */
  93. var Check = {};
  94. /**
  95. * Contains type checking functions, all using the typeof operator
  96. */
  97. Check.typeOf = {};
  98. function getUndefinedErrorMessage(name) {
  99. return name + " is required, actual value was undefined";
  100. }
  101. function getFailedTypeErrorMessage(actual, expected, name) {
  102. return (
  103. "Expected " +
  104. name +
  105. " to be typeof " +
  106. expected +
  107. ", actual typeof was " +
  108. actual
  109. );
  110. }
  111. /**
  112. * Throws if test is not defined
  113. *
  114. * @param {String} name The name of the variable being tested
  115. * @param {*} test The value that is to be checked
  116. * @exception {DeveloperError} test must be defined
  117. */
  118. Check.defined = function (name, test) {
  119. if (!when.defined(test)) {
  120. throw new DeveloperError(getUndefinedErrorMessage(name));
  121. }
  122. };
  123. /**
  124. * Throws if test is not typeof 'function'
  125. *
  126. * @param {String} name The name of the variable being tested
  127. * @param {*} test The value to test
  128. * @exception {DeveloperError} test must be typeof 'function'
  129. */
  130. Check.typeOf.func = function (name, test) {
  131. if (typeof test !== "function") {
  132. throw new DeveloperError(
  133. getFailedTypeErrorMessage(typeof test, "function", name)
  134. );
  135. }
  136. };
  137. /**
  138. * Throws if test is not typeof 'string'
  139. *
  140. * @param {String} name The name of the variable being tested
  141. * @param {*} test The value to test
  142. * @exception {DeveloperError} test must be typeof 'string'
  143. */
  144. Check.typeOf.string = function (name, test) {
  145. if (typeof test !== "string") {
  146. throw new DeveloperError(
  147. getFailedTypeErrorMessage(typeof test, "string", name)
  148. );
  149. }
  150. };
  151. /**
  152. * Throws if test is not typeof 'number'
  153. *
  154. * @param {String} name The name of the variable being tested
  155. * @param {*} test The value to test
  156. * @exception {DeveloperError} test must be typeof 'number'
  157. */
  158. Check.typeOf.number = function (name, test) {
  159. if (typeof test !== "number") {
  160. throw new DeveloperError(
  161. getFailedTypeErrorMessage(typeof test, "number", name)
  162. );
  163. }
  164. };
  165. /**
  166. * Throws if test is not typeof 'number' and less than limit
  167. *
  168. * @param {String} name The name of the variable being tested
  169. * @param {*} test The value to test
  170. * @param {Number} limit The limit value to compare against
  171. * @exception {DeveloperError} test must be typeof 'number' and less than limit
  172. */
  173. Check.typeOf.number.lessThan = function (name, test, limit) {
  174. Check.typeOf.number(name, test);
  175. if (test >= limit) {
  176. throw new DeveloperError(
  177. "Expected " +
  178. name +
  179. " to be less than " +
  180. limit +
  181. ", actual value was " +
  182. test
  183. );
  184. }
  185. };
  186. /**
  187. * Throws if test is not typeof 'number' and less than or equal to limit
  188. *
  189. * @param {String} name The name of the variable being tested
  190. * @param {*} test The value to test
  191. * @param {Number} limit The limit value to compare against
  192. * @exception {DeveloperError} test must be typeof 'number' and less than or equal to limit
  193. */
  194. Check.typeOf.number.lessThanOrEquals = function (name, test, limit) {
  195. Check.typeOf.number(name, test);
  196. if (test > limit) {
  197. throw new DeveloperError(
  198. "Expected " +
  199. name +
  200. " to be less than or equal to " +
  201. limit +
  202. ", actual value was " +
  203. test
  204. );
  205. }
  206. };
  207. /**
  208. * Throws if test is not typeof 'number' and greater than limit
  209. *
  210. * @param {String} name The name of the variable being tested
  211. * @param {*} test The value to test
  212. * @param {Number} limit The limit value to compare against
  213. * @exception {DeveloperError} test must be typeof 'number' and greater than limit
  214. */
  215. Check.typeOf.number.greaterThan = function (name, test, limit) {
  216. Check.typeOf.number(name, test);
  217. if (test <= limit) {
  218. throw new DeveloperError(
  219. "Expected " +
  220. name +
  221. " to be greater than " +
  222. limit +
  223. ", actual value was " +
  224. test
  225. );
  226. }
  227. };
  228. /**
  229. * Throws if test is not typeof 'number' and greater than or equal to limit
  230. *
  231. * @param {String} name The name of the variable being tested
  232. * @param {*} test The value to test
  233. * @param {Number} limit The limit value to compare against
  234. * @exception {DeveloperError} test must be typeof 'number' and greater than or equal to limit
  235. */
  236. Check.typeOf.number.greaterThanOrEquals = function (name, test, limit) {
  237. Check.typeOf.number(name, test);
  238. if (test < limit) {
  239. throw new DeveloperError(
  240. "Expected " +
  241. name +
  242. " to be greater than or equal to" +
  243. limit +
  244. ", actual value was " +
  245. test
  246. );
  247. }
  248. };
  249. /**
  250. * Throws if test is not typeof 'object'
  251. *
  252. * @param {String} name The name of the variable being tested
  253. * @param {*} test The value to test
  254. * @exception {DeveloperError} test must be typeof 'object'
  255. */
  256. Check.typeOf.object = function (name, test) {
  257. if (typeof test !== "object") {
  258. throw new DeveloperError(
  259. getFailedTypeErrorMessage(typeof test, "object", name)
  260. );
  261. }
  262. };
  263. /**
  264. * Throws if test is not typeof 'boolean'
  265. *
  266. * @param {String} name The name of the variable being tested
  267. * @param {*} test The value to test
  268. * @exception {DeveloperError} test must be typeof 'boolean'
  269. */
  270. Check.typeOf.bool = function (name, test) {
  271. if (typeof test !== "boolean") {
  272. throw new DeveloperError(
  273. getFailedTypeErrorMessage(typeof test, "boolean", name)
  274. );
  275. }
  276. };
  277. /**
  278. * Throws if test1 and test2 is not typeof 'number' and not equal in value
  279. *
  280. * @param {String} name1 The name of the first variable being tested
  281. * @param {String} name2 The name of the second variable being tested against
  282. * @param {*} test1 The value to test
  283. * @param {*} test2 The value to test against
  284. * @exception {DeveloperError} test1 and test2 should be type of 'number' and be equal in value
  285. */
  286. Check.typeOf.number.equals = function (name1, name2, test1, test2) {
  287. Check.typeOf.number(name1, test1);
  288. Check.typeOf.number(name2, test2);
  289. if (test1 !== test2) {
  290. throw new DeveloperError(
  291. name1 +
  292. " must be equal to " +
  293. name2 +
  294. ", the actual values are " +
  295. test1 +
  296. " and " +
  297. test2
  298. );
  299. }
  300. };
  301. exports.Check = Check;
  302. exports.DeveloperError = DeveloperError;
  303. });
  304. //# sourceMappingURL=Check-6c0211bc.js.map