inversify 5.1.1 → 6.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (450) hide show
  1. package/.nyc_output/16b95af9-19b9-451c-8475-9a8585677128.json +1 -0
  2. package/.nyc_output/processinfo/16b95af9-19b9-451c-8475-9a8585677128.json +1 -0
  3. package/.nyc_output/processinfo/index.json +1 -1
  4. package/CHANGELOG.md +81 -32
  5. package/LICENSE +22 -22
  6. package/README.md +309 -306
  7. package/amd/annotation/decorator_utils.js +114 -60
  8. package/amd/annotation/inject.js +27 -31
  9. package/amd/annotation/inject_base.js +17 -0
  10. package/amd/annotation/injectable.js +37 -17
  11. package/amd/annotation/lazy_service_identifier.js +15 -0
  12. package/amd/annotation/multi_inject.js +27 -18
  13. package/amd/annotation/named.js +29 -18
  14. package/amd/annotation/optional.js +29 -18
  15. package/amd/annotation/post_construct.js +28 -16
  16. package/amd/annotation/pre_destroy.js +28 -0
  17. package/amd/annotation/property_event_decorator.js +17 -0
  18. package/amd/annotation/tagged.js +9 -18
  19. package/amd/annotation/target_name.js +32 -13
  20. package/amd/annotation/unmanaged.js +32 -13
  21. package/amd/bindings/binding.js +39 -38
  22. package/amd/bindings/binding_count.js +10 -12
  23. package/amd/constants/error_msgs.js +64 -68
  24. package/amd/constants/literal_types.js +28 -29
  25. package/amd/constants/metadata_keys.js +28 -28
  26. package/amd/container/container.js +719 -332
  27. package/amd/container/container_module.js +21 -22
  28. package/amd/container/container_snapshot.js +20 -18
  29. package/amd/container/lookup.js +127 -82
  30. package/amd/container/module_activation_store.js +53 -0
  31. package/amd/interfaces/interfaces.js +10 -5
  32. package/amd/inversify.js +55 -32
  33. package/amd/planning/context.js +19 -20
  34. package/amd/planning/metadata.js +41 -22
  35. package/amd/planning/metadata_reader.js +43 -24
  36. package/amd/planning/plan.js +13 -14
  37. package/amd/planning/planner.js +163 -147
  38. package/amd/planning/queryable_string.js +30 -31
  39. package/amd/planning/reflection_utils.js +157 -128
  40. package/amd/planning/request.js +26 -27
  41. package/amd/planning/target.js +101 -80
  42. package/amd/resolution/instantiation.js +211 -56
  43. package/amd/resolution/resolver.js +222 -99
  44. package/amd/scope/scope.js +93 -0
  45. package/amd/syntax/binding_in_syntax.js +24 -25
  46. package/amd/syntax/binding_in_when_on_syntax.js +75 -73
  47. package/amd/syntax/binding_on_syntax.js +20 -17
  48. package/amd/syntax/binding_to_syntax.js +105 -79
  49. package/amd/syntax/binding_when_on_syntax.js +65 -63
  50. package/amd/syntax/binding_when_syntax.js +102 -100
  51. package/amd/syntax/constraint_helpers.js +61 -42
  52. package/amd/utils/async.js +17 -0
  53. package/amd/utils/binding_utils.js +77 -18
  54. package/amd/utils/clonable.js +12 -0
  55. package/amd/utils/exceptions.js +42 -11
  56. package/amd/utils/factory_type.js +11 -0
  57. package/amd/utils/id.js +10 -11
  58. package/amd/utils/js.js +19 -0
  59. package/amd/utils/serialization.js +129 -106
  60. package/es/annotation/decorator_utils.js +88 -55
  61. package/es/annotation/inject.js +4 -30
  62. package/es/annotation/inject_base.js +14 -0
  63. package/es/annotation/injectable.js +13 -14
  64. package/es/annotation/lazy_service_identifier.js +10 -0
  65. package/es/annotation/multi_inject.js +4 -16
  66. package/es/annotation/named.js +7 -16
  67. package/es/annotation/optional.js +7 -16
  68. package/es/annotation/post_construct.js +5 -14
  69. package/es/annotation/pre_destroy.js +5 -0
  70. package/es/annotation/property_event_decorator.js +13 -0
  71. package/es/annotation/tagged.js +6 -15
  72. package/es/annotation/target_name.js +10 -11
  73. package/es/annotation/unmanaged.js +10 -11
  74. package/es/bindings/binding.js +36 -35
  75. package/es/bindings/binding_count.js +5 -7
  76. package/es/constants/error_msgs.js +52 -59
  77. package/es/constants/literal_types.js +21 -22
  78. package/es/constants/metadata_keys.js +23 -23
  79. package/es/container/container.js +707 -339
  80. package/es/container/container_module.js +17 -18
  81. package/es/container/container_snapshot.js +15 -13
  82. package/es/container/lookup.js +104 -78
  83. package/es/container/module_activation_store.js +49 -0
  84. package/es/interfaces/interfaces.js +5 -2
  85. package/es/inversify.js +25 -21
  86. package/es/planning/context.js +15 -16
  87. package/es/planning/metadata.js +17 -18
  88. package/es/planning/metadata_reader.js +19 -20
  89. package/es/planning/plan.js +8 -9
  90. package/es/planning/planner.js +147 -152
  91. package/es/planning/queryable_string.js +25 -26
  92. package/es/planning/reflection_utils.js +135 -127
  93. package/es/planning/request.js +22 -23
  94. package/es/planning/target.js +81 -79
  95. package/es/resolution/instantiation.js +190 -54
  96. package/es/resolution/resolver.js +205 -99
  97. package/es/scope/scope.js +88 -0
  98. package/es/syntax/binding_in_syntax.js +21 -22
  99. package/es/syntax/binding_in_when_on_syntax.js +73 -71
  100. package/es/syntax/binding_on_syntax.js +16 -13
  101. package/es/syntax/binding_to_syntax.js +84 -78
  102. package/es/syntax/binding_when_on_syntax.js +62 -60
  103. package/es/syntax/binding_when_syntax.js +99 -97
  104. package/es/syntax/constraint_helpers.js +35 -36
  105. package/es/utils/async.js +11 -0
  106. package/es/utils/binding_utils.js +53 -12
  107. package/es/utils/clonable.js +7 -0
  108. package/es/utils/exceptions.js +16 -6
  109. package/es/utils/factory_type.js +6 -0
  110. package/es/utils/id.js +5 -6
  111. package/es/utils/js.js +13 -0
  112. package/es/utils/serialization.js +100 -98
  113. package/es6/annotation/decorator_utils.js +109 -59
  114. package/es6/annotation/inject.js +26 -32
  115. package/es6/annotation/inject_base.js +18 -0
  116. package/es6/annotation/injectable.js +35 -17
  117. package/es6/annotation/lazy_service_identifier.js +12 -0
  118. package/es6/annotation/multi_inject.js +26 -19
  119. package/es6/annotation/named.js +29 -19
  120. package/es6/annotation/optional.js +29 -19
  121. package/es6/annotation/post_construct.js +27 -17
  122. package/es6/annotation/pre_destroy.js +27 -0
  123. package/es6/annotation/property_event_decorator.js +16 -0
  124. package/es6/annotation/tagged.js +9 -18
  125. package/es6/annotation/target_name.js +32 -14
  126. package/es6/annotation/unmanaged.js +32 -14
  127. package/es6/bindings/binding.js +38 -37
  128. package/es6/bindings/binding_count.js +8 -10
  129. package/es6/constants/error_msgs.js +53 -46
  130. package/es6/constants/literal_types.js +26 -27
  131. package/es6/constants/metadata_keys.js +26 -26
  132. package/es6/container/container.js +520 -260
  133. package/es6/container/container_module.js +18 -19
  134. package/es6/container/container_snapshot.js +15 -13
  135. package/es6/container/lookup.js +120 -79
  136. package/es6/container/module_activation_store.js +51 -0
  137. package/es6/interfaces/interfaces.js +8 -3
  138. package/es6/inversify.js +76 -49
  139. package/es6/planning/context.js +17 -18
  140. package/es6/planning/metadata.js +38 -20
  141. package/es6/planning/metadata_reader.js +38 -20
  142. package/es6/planning/plan.js +10 -11
  143. package/es6/planning/planner.js +170 -156
  144. package/es6/planning/queryable_string.js +27 -28
  145. package/es6/planning/reflection_utils.js +155 -128
  146. package/es6/planning/request.js +24 -25
  147. package/es6/planning/target.js +99 -78
  148. package/es6/resolution/instantiation.js +151 -48
  149. package/es6/resolution/resolver.js +187 -100
  150. package/es6/scope/scope.js +57 -0
  151. package/es6/syntax/binding_in_syntax.js +23 -24
  152. package/es6/syntax/binding_in_when_on_syntax.js +75 -73
  153. package/es6/syntax/binding_on_syntax.js +18 -15
  154. package/es6/syntax/binding_to_syntax.js +105 -80
  155. package/es6/syntax/binding_when_on_syntax.js +64 -62
  156. package/es6/syntax/binding_when_syntax.js +79 -77
  157. package/es6/syntax/constraint_helpers.js +58 -40
  158. package/es6/utils/async.js +15 -0
  159. package/es6/utils/binding_utils.js +68 -6
  160. package/es6/utils/clonable.js +10 -0
  161. package/es6/utils/exceptions.js +40 -10
  162. package/es6/utils/factory_type.js +9 -0
  163. package/es6/utils/id.js +8 -9
  164. package/es6/utils/js.js +16 -0
  165. package/es6/utils/serialization.js +126 -104
  166. package/lib/annotation/decorator_utils.d.ts +16 -5
  167. package/lib/annotation/decorator_utils.js +113 -60
  168. package/lib/annotation/inject.d.ts +2 -9
  169. package/lib/annotation/inject.js +26 -33
  170. package/lib/annotation/inject_base.d.ts +3 -0
  171. package/lib/annotation/inject_base.js +18 -0
  172. package/lib/annotation/injectable.d.ts +2 -2
  173. package/lib/annotation/injectable.js +35 -17
  174. package/lib/annotation/lazy_service_identifier.d.ts +7 -0
  175. package/lib/annotation/lazy_service_identifier.js +13 -0
  176. package/lib/annotation/multi_inject.d.ts +2 -3
  177. package/lib/annotation/multi_inject.js +26 -19
  178. package/lib/annotation/named.d.ts +2 -2
  179. package/lib/annotation/named.js +29 -19
  180. package/lib/annotation/optional.d.ts +2 -2
  181. package/lib/annotation/optional.js +29 -19
  182. package/lib/annotation/post_construct.d.ts +4 -2
  183. package/lib/annotation/post_construct.js +27 -17
  184. package/lib/annotation/pre_destroy.d.ts +4 -0
  185. package/lib/annotation/pre_destroy.js +27 -0
  186. package/lib/annotation/property_event_decorator.d.ts +4 -0
  187. package/lib/annotation/property_event_decorator.js +16 -0
  188. package/lib/annotation/tagged.d.ts +2 -2
  189. package/lib/annotation/tagged.js +9 -18
  190. package/lib/annotation/target_name.d.ts +3 -2
  191. package/lib/annotation/target_name.js +32 -14
  192. package/lib/annotation/unmanaged.d.ts +3 -2
  193. package/lib/annotation/unmanaged.js +32 -14
  194. package/lib/bindings/binding.d.ts +20 -19
  195. package/lib/bindings/binding.js +39 -38
  196. package/lib/bindings/binding_count.d.ts +5 -6
  197. package/lib/bindings/binding_count.js +8 -10
  198. package/lib/constants/error_msgs.d.ts +32 -27
  199. package/lib/constants/error_msgs.js +62 -66
  200. package/lib/constants/literal_types.d.ts +5 -5
  201. package/lib/constants/literal_types.js +26 -27
  202. package/lib/constants/metadata_keys.d.ts +13 -12
  203. package/lib/constants/metadata_keys.js +26 -26
  204. package/lib/container/container.d.ts +73 -39
  205. package/lib/container/container.js +729 -342
  206. package/lib/container/container_module.d.ts +11 -11
  207. package/lib/container/container_module.js +20 -21
  208. package/lib/container/container_snapshot.d.ts +10 -7
  209. package/lib/container/container_snapshot.js +18 -16
  210. package/lib/container/lookup.d.ts +16 -14
  211. package/lib/container/lookup.js +126 -81
  212. package/lib/container/module_activation_store.d.ts +10 -0
  213. package/lib/container/module_activation_store.js +52 -0
  214. package/lib/interfaces/interfaces.d.ts +284 -237
  215. package/lib/interfaces/interfaces.js +8 -3
  216. package/lib/inversify.d.ts +25 -21
  217. package/lib/inversify.js +76 -49
  218. package/lib/planning/context.d.ts +11 -11
  219. package/lib/planning/context.js +18 -19
  220. package/lib/planning/metadata.d.ts +8 -8
  221. package/lib/planning/metadata.js +39 -21
  222. package/lib/planning/metadata_reader.d.ts +6 -6
  223. package/lib/planning/metadata_reader.js +41 -23
  224. package/lib/planning/plan.d.ts +7 -7
  225. package/lib/planning/plan.js +11 -12
  226. package/lib/planning/planner.d.ts +5 -5
  227. package/lib/planning/planner.js +171 -157
  228. package/lib/planning/queryable_string.d.ts +11 -11
  229. package/lib/planning/queryable_string.js +28 -29
  230. package/lib/planning/reflection_utils.d.ts +5 -5
  231. package/lib/planning/reflection_utils.js +159 -132
  232. package/lib/planning/request.d.ts +14 -14
  233. package/lib/planning/request.js +25 -26
  234. package/lib/planning/target.d.ts +23 -21
  235. package/lib/planning/target.js +103 -82
  236. package/lib/resolution/instantiation.d.ts +3 -3
  237. package/lib/resolution/instantiation.js +212 -57
  238. package/lib/resolution/resolver.d.ts +3 -3
  239. package/lib/resolution/resolver.js +227 -102
  240. package/lib/scope/scope.d.ts +3 -0
  241. package/lib/scope/scope.js +93 -0
  242. package/lib/syntax/binding_in_syntax.d.ts +9 -9
  243. package/lib/syntax/binding_in_syntax.js +24 -25
  244. package/lib/syntax/binding_in_when_on_syntax.d.ts +29 -28
  245. package/lib/syntax/binding_in_when_on_syntax.js +76 -74
  246. package/lib/syntax/binding_on_syntax.d.ts +8 -7
  247. package/lib/syntax/binding_on_syntax.js +19 -16
  248. package/lib/syntax/binding_to_syntax.d.ts +18 -16
  249. package/lib/syntax/binding_to_syntax.js +106 -81
  250. package/lib/syntax/binding_when_on_syntax.d.ts +25 -24
  251. package/lib/syntax/binding_when_on_syntax.js +65 -63
  252. package/lib/syntax/binding_when_syntax.d.ts +21 -21
  253. package/lib/syntax/binding_when_syntax.js +102 -100
  254. package/lib/syntax/constraint_helpers.d.ts +6 -6
  255. package/lib/syntax/constraint_helpers.js +60 -42
  256. package/lib/tsconfig.tsbuildinfo +1 -719
  257. package/lib/utils/async.d.ts +3 -0
  258. package/lib/utils/async.js +15 -0
  259. package/lib/utils/binding_utils.d.ts +4 -2
  260. package/lib/utils/binding_utils.js +78 -16
  261. package/lib/utils/clonable.d.ts +3 -0
  262. package/lib/utils/clonable.js +10 -0
  263. package/lib/utils/exceptions.d.ts +2 -1
  264. package/lib/utils/exceptions.js +40 -10
  265. package/lib/utils/factory_type.d.ts +5 -0
  266. package/lib/utils/factory_type.js +9 -0
  267. package/lib/utils/id.d.ts +2 -2
  268. package/lib/utils/id.js +8 -9
  269. package/lib/utils/js.d.ts +1 -0
  270. package/lib/utils/js.js +17 -0
  271. package/lib/utils/serialization.d.ts +10 -7
  272. package/lib/utils/serialization.js +127 -105
  273. package/package.json +61 -77
  274. package/.auditignore +0 -2
  275. package/.nyc_output/4df1ad3a-a319-42b9-bb65-746cefa3318e.json +0 -1
  276. package/.nyc_output/processinfo/4df1ad3a-a319-42b9-bb65-746cefa3318e.json +0 -1
  277. package/CODE_OF_CONDUCT.md +0 -46
  278. package/amd/annotation/decorator_utils.js.map +0 -1
  279. package/amd/annotation/inject.js.map +0 -1
  280. package/amd/annotation/injectable.js.map +0 -1
  281. package/amd/annotation/multi_inject.js.map +0 -1
  282. package/amd/annotation/named.js.map +0 -1
  283. package/amd/annotation/optional.js.map +0 -1
  284. package/amd/annotation/post_construct.js.map +0 -1
  285. package/amd/annotation/tagged.js.map +0 -1
  286. package/amd/annotation/target_name.js.map +0 -1
  287. package/amd/annotation/unmanaged.js.map +0 -1
  288. package/amd/bindings/binding.js.map +0 -1
  289. package/amd/bindings/binding_count.js.map +0 -1
  290. package/amd/constants/error_msgs.js.map +0 -1
  291. package/amd/constants/literal_types.js.map +0 -1
  292. package/amd/constants/metadata_keys.js.map +0 -1
  293. package/amd/container/container.js.map +0 -1
  294. package/amd/container/container_module.js.map +0 -1
  295. package/amd/container/container_snapshot.js.map +0 -1
  296. package/amd/container/lookup.js.map +0 -1
  297. package/amd/interfaces/interfaces.js.map +0 -1
  298. package/amd/inversify.js.map +0 -1
  299. package/amd/planning/context.js.map +0 -1
  300. package/amd/planning/metadata.js.map +0 -1
  301. package/amd/planning/metadata_reader.js.map +0 -1
  302. package/amd/planning/plan.js.map +0 -1
  303. package/amd/planning/planner.js.map +0 -1
  304. package/amd/planning/queryable_string.js.map +0 -1
  305. package/amd/planning/reflection_utils.js.map +0 -1
  306. package/amd/planning/request.js.map +0 -1
  307. package/amd/planning/target.js.map +0 -1
  308. package/amd/resolution/instantiation.js.map +0 -1
  309. package/amd/resolution/resolver.js.map +0 -1
  310. package/amd/syntax/binding_in_syntax.js.map +0 -1
  311. package/amd/syntax/binding_in_when_on_syntax.js.map +0 -1
  312. package/amd/syntax/binding_on_syntax.js.map +0 -1
  313. package/amd/syntax/binding_to_syntax.js.map +0 -1
  314. package/amd/syntax/binding_when_on_syntax.js.map +0 -1
  315. package/amd/syntax/binding_when_syntax.js.map +0 -1
  316. package/amd/syntax/constraint_helpers.js.map +0 -1
  317. package/amd/utils/binding_utils.js.map +0 -1
  318. package/amd/utils/exceptions.js.map +0 -1
  319. package/amd/utils/id.js.map +0 -1
  320. package/amd/utils/serialization.js.map +0 -1
  321. package/es/annotation/decorator_utils.js.map +0 -1
  322. package/es/annotation/inject.js.map +0 -1
  323. package/es/annotation/injectable.js.map +0 -1
  324. package/es/annotation/multi_inject.js.map +0 -1
  325. package/es/annotation/named.js.map +0 -1
  326. package/es/annotation/optional.js.map +0 -1
  327. package/es/annotation/post_construct.js.map +0 -1
  328. package/es/annotation/tagged.js.map +0 -1
  329. package/es/annotation/target_name.js.map +0 -1
  330. package/es/annotation/unmanaged.js.map +0 -1
  331. package/es/bindings/binding.js.map +0 -1
  332. package/es/bindings/binding_count.js.map +0 -1
  333. package/es/constants/error_msgs.js.map +0 -1
  334. package/es/constants/literal_types.js.map +0 -1
  335. package/es/constants/metadata_keys.js.map +0 -1
  336. package/es/container/container.js.map +0 -1
  337. package/es/container/container_module.js.map +0 -1
  338. package/es/container/container_snapshot.js.map +0 -1
  339. package/es/container/lookup.js.map +0 -1
  340. package/es/interfaces/interfaces.js.map +0 -1
  341. package/es/inversify.js.map +0 -1
  342. package/es/planning/context.js.map +0 -1
  343. package/es/planning/metadata.js.map +0 -1
  344. package/es/planning/metadata_reader.js.map +0 -1
  345. package/es/planning/plan.js.map +0 -1
  346. package/es/planning/planner.js.map +0 -1
  347. package/es/planning/queryable_string.js.map +0 -1
  348. package/es/planning/reflection_utils.js.map +0 -1
  349. package/es/planning/request.js.map +0 -1
  350. package/es/planning/target.js.map +0 -1
  351. package/es/resolution/instantiation.js.map +0 -1
  352. package/es/resolution/resolver.js.map +0 -1
  353. package/es/syntax/binding_in_syntax.js.map +0 -1
  354. package/es/syntax/binding_in_when_on_syntax.js.map +0 -1
  355. package/es/syntax/binding_on_syntax.js.map +0 -1
  356. package/es/syntax/binding_to_syntax.js.map +0 -1
  357. package/es/syntax/binding_when_on_syntax.js.map +0 -1
  358. package/es/syntax/binding_when_syntax.js.map +0 -1
  359. package/es/syntax/constraint_helpers.js.map +0 -1
  360. package/es/utils/binding_utils.js.map +0 -1
  361. package/es/utils/exceptions.js.map +0 -1
  362. package/es/utils/id.js.map +0 -1
  363. package/es/utils/serialization.js.map +0 -1
  364. package/es6/annotation/decorator_utils.js.map +0 -1
  365. package/es6/annotation/inject.js.map +0 -1
  366. package/es6/annotation/injectable.js.map +0 -1
  367. package/es6/annotation/multi_inject.js.map +0 -1
  368. package/es6/annotation/named.js.map +0 -1
  369. package/es6/annotation/optional.js.map +0 -1
  370. package/es6/annotation/post_construct.js.map +0 -1
  371. package/es6/annotation/tagged.js.map +0 -1
  372. package/es6/annotation/target_name.js.map +0 -1
  373. package/es6/annotation/unmanaged.js.map +0 -1
  374. package/es6/bindings/binding.js.map +0 -1
  375. package/es6/bindings/binding_count.js.map +0 -1
  376. package/es6/constants/error_msgs.js.map +0 -1
  377. package/es6/constants/literal_types.js.map +0 -1
  378. package/es6/constants/metadata_keys.js.map +0 -1
  379. package/es6/container/container.js.map +0 -1
  380. package/es6/container/container_module.js.map +0 -1
  381. package/es6/container/container_snapshot.js.map +0 -1
  382. package/es6/container/lookup.js.map +0 -1
  383. package/es6/interfaces/interfaces.js.map +0 -1
  384. package/es6/inversify.js.map +0 -1
  385. package/es6/planning/context.js.map +0 -1
  386. package/es6/planning/metadata.js.map +0 -1
  387. package/es6/planning/metadata_reader.js.map +0 -1
  388. package/es6/planning/plan.js.map +0 -1
  389. package/es6/planning/planner.js.map +0 -1
  390. package/es6/planning/queryable_string.js.map +0 -1
  391. package/es6/planning/reflection_utils.js.map +0 -1
  392. package/es6/planning/request.js.map +0 -1
  393. package/es6/planning/target.js.map +0 -1
  394. package/es6/resolution/instantiation.js.map +0 -1
  395. package/es6/resolution/resolver.js.map +0 -1
  396. package/es6/syntax/binding_in_syntax.js.map +0 -1
  397. package/es6/syntax/binding_in_when_on_syntax.js.map +0 -1
  398. package/es6/syntax/binding_on_syntax.js.map +0 -1
  399. package/es6/syntax/binding_to_syntax.js.map +0 -1
  400. package/es6/syntax/binding_when_on_syntax.js.map +0 -1
  401. package/es6/syntax/binding_when_syntax.js.map +0 -1
  402. package/es6/syntax/constraint_helpers.js.map +0 -1
  403. package/es6/utils/binding_utils.js.map +0 -1
  404. package/es6/utils/exceptions.js.map +0 -1
  405. package/es6/utils/id.js.map +0 -1
  406. package/es6/utils/serialization.js.map +0 -1
  407. package/lib/annotation/decorator_utils.js.map +0 -1
  408. package/lib/annotation/inject.js.map +0 -1
  409. package/lib/annotation/injectable.js.map +0 -1
  410. package/lib/annotation/multi_inject.js.map +0 -1
  411. package/lib/annotation/named.js.map +0 -1
  412. package/lib/annotation/optional.js.map +0 -1
  413. package/lib/annotation/post_construct.js.map +0 -1
  414. package/lib/annotation/tagged.js.map +0 -1
  415. package/lib/annotation/target_name.js.map +0 -1
  416. package/lib/annotation/unmanaged.js.map +0 -1
  417. package/lib/bindings/binding.js.map +0 -1
  418. package/lib/bindings/binding_count.js.map +0 -1
  419. package/lib/constants/error_msgs.js.map +0 -1
  420. package/lib/constants/literal_types.js.map +0 -1
  421. package/lib/constants/metadata_keys.js.map +0 -1
  422. package/lib/container/container.js.map +0 -1
  423. package/lib/container/container_module.js.map +0 -1
  424. package/lib/container/container_snapshot.js.map +0 -1
  425. package/lib/container/lookup.js.map +0 -1
  426. package/lib/interfaces/interfaces.js.map +0 -1
  427. package/lib/inversify.js.map +0 -1
  428. package/lib/planning/context.js.map +0 -1
  429. package/lib/planning/metadata.js.map +0 -1
  430. package/lib/planning/metadata_reader.js.map +0 -1
  431. package/lib/planning/plan.js.map +0 -1
  432. package/lib/planning/planner.js.map +0 -1
  433. package/lib/planning/queryable_string.js.map +0 -1
  434. package/lib/planning/reflection_utils.js.map +0 -1
  435. package/lib/planning/request.js.map +0 -1
  436. package/lib/planning/target.js.map +0 -1
  437. package/lib/resolution/instantiation.js.map +0 -1
  438. package/lib/resolution/resolver.js.map +0 -1
  439. package/lib/syntax/binding_in_syntax.js.map +0 -1
  440. package/lib/syntax/binding_in_when_on_syntax.js.map +0 -1
  441. package/lib/syntax/binding_on_syntax.js.map +0 -1
  442. package/lib/syntax/binding_to_syntax.js.map +0 -1
  443. package/lib/syntax/binding_when_on_syntax.js.map +0 -1
  444. package/lib/syntax/binding_when_syntax.js.map +0 -1
  445. package/lib/syntax/constraint_helpers.js.map +0 -1
  446. package/lib/utils/binding_utils.js.map +0 -1
  447. package/lib/utils/exceptions.js.map +0 -1
  448. package/lib/utils/id.js.map +0 -1
  449. package/lib/utils/serialization.js.map +0 -1
  450. package/mocha.opts +0 -3
@@ -1,332 +1,719 @@
1
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
2
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
3
- return new (P || (P = Promise))(function (resolve, reject) {
4
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
5
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
6
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
7
- step((generator = generator.apply(thisArg, _arguments || [])).next());
8
- });
9
- };
10
- var __generator = (this && this.__generator) || function (thisArg, body) {
11
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
12
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
13
- function verb(n) { return function (v) { return step([n, v]); }; }
14
- function step(op) {
15
- if (f) throw new TypeError("Generator is already executing.");
16
- while (_) try {
17
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
18
- if (y = 0, t) op = [op[0] & 2, t.value];
19
- switch (op[0]) {
20
- case 0: case 1: t = op; break;
21
- case 4: _.label++; return { value: op[1], done: false };
22
- case 5: _.label++; y = op[1]; op = [0]; continue;
23
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
24
- default:
25
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
26
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
27
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
28
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
29
- if (t[2]) _.ops.pop();
30
- _.trys.pop(); continue;
31
- }
32
- op = body.call(thisArg, _);
33
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
34
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
35
- }
36
- };
37
- var __spreadArray = (this && this.__spreadArray) || function (to, from) {
38
- for (var i = 0, il = from.length, j = to.length; i < il; i++, j++)
39
- to[j] = from[i];
40
- return to;
41
- };
42
- define(["require", "exports", "../bindings/binding", "../constants/error_msgs", "../constants/literal_types", "../constants/metadata_keys", "../planning/metadata_reader", "../planning/planner", "../resolution/resolver", "../syntax/binding_to_syntax", "../utils/id", "../utils/serialization", "./container_snapshot", "./lookup"], function (require, exports, binding_1, ERROR_MSGS, literal_types_1, METADATA_KEY, metadata_reader_1, planner_1, resolver_1, binding_to_syntax_1, id_1, serialization_1, container_snapshot_1, lookup_1) {
43
- "use strict";
44
- Object.defineProperty(exports, "__esModule", { value: true });
45
- exports.Container = void 0;
46
- var Container = (function () {
47
- function Container(containerOptions) {
48
- this._appliedMiddleware = [];
49
- var options = containerOptions || {};
50
- if (typeof options !== "object") {
51
- throw new Error("" + ERROR_MSGS.CONTAINER_OPTIONS_MUST_BE_AN_OBJECT);
52
- }
53
- if (options.defaultScope === undefined) {
54
- options.defaultScope = literal_types_1.BindingScopeEnum.Transient;
55
- }
56
- else if (options.defaultScope !== literal_types_1.BindingScopeEnum.Singleton &&
57
- options.defaultScope !== literal_types_1.BindingScopeEnum.Transient &&
58
- options.defaultScope !== literal_types_1.BindingScopeEnum.Request) {
59
- throw new Error("" + ERROR_MSGS.CONTAINER_OPTIONS_INVALID_DEFAULT_SCOPE);
60
- }
61
- if (options.autoBindInjectable === undefined) {
62
- options.autoBindInjectable = false;
63
- }
64
- else if (typeof options.autoBindInjectable !== "boolean") {
65
- throw new Error("" + ERROR_MSGS.CONTAINER_OPTIONS_INVALID_AUTO_BIND_INJECTABLE);
66
- }
67
- if (options.skipBaseClassChecks === undefined) {
68
- options.skipBaseClassChecks = false;
69
- }
70
- else if (typeof options.skipBaseClassChecks !== "boolean") {
71
- throw new Error("" + ERROR_MSGS.CONTAINER_OPTIONS_INVALID_SKIP_BASE_CHECK);
72
- }
73
- this.options = {
74
- autoBindInjectable: options.autoBindInjectable,
75
- defaultScope: options.defaultScope,
76
- skipBaseClassChecks: options.skipBaseClassChecks
77
- };
78
- this.id = id_1.id();
79
- this._bindingDictionary = new lookup_1.Lookup();
80
- this._snapshots = [];
81
- this._middleware = null;
82
- this.parent = null;
83
- this._metadataReader = new metadata_reader_1.MetadataReader();
84
- }
85
- Container.merge = function (container1, container2) {
86
- var container3 = [];
87
- for (var _i = 2; _i < arguments.length; _i++) {
88
- container3[_i - 2] = arguments[_i];
89
- }
90
- var container = new Container();
91
- var targetContainers = __spreadArray([container1, container2], container3).map(function (targetContainer) { return planner_1.getBindingDictionary(targetContainer); });
92
- var bindingDictionary = planner_1.getBindingDictionary(container);
93
- function copyDictionary(origin, destination) {
94
- origin.traverse(function (key, value) {
95
- value.forEach(function (binding) {
96
- destination.add(binding.serviceIdentifier, binding.clone());
97
- });
98
- });
99
- }
100
- targetContainers.forEach(function (targetBindingDictionary) {
101
- copyDictionary(targetBindingDictionary, bindingDictionary);
102
- });
103
- return container;
104
- };
105
- Container.prototype.load = function () {
106
- var modules = [];
107
- for (var _i = 0; _i < arguments.length; _i++) {
108
- modules[_i] = arguments[_i];
109
- }
110
- var getHelpers = this._getContainerModuleHelpersFactory();
111
- for (var _a = 0, modules_1 = modules; _a < modules_1.length; _a++) {
112
- var currentModule = modules_1[_a];
113
- var containerModuleHelpers = getHelpers(currentModule.id);
114
- currentModule.registry(containerModuleHelpers.bindFunction, containerModuleHelpers.unbindFunction, containerModuleHelpers.isboundFunction, containerModuleHelpers.rebindFunction);
115
- }
116
- };
117
- Container.prototype.loadAsync = function () {
118
- var modules = [];
119
- for (var _i = 0; _i < arguments.length; _i++) {
120
- modules[_i] = arguments[_i];
121
- }
122
- return __awaiter(this, void 0, void 0, function () {
123
- var getHelpers, _a, modules_2, currentModule, containerModuleHelpers;
124
- return __generator(this, function (_b) {
125
- switch (_b.label) {
126
- case 0:
127
- getHelpers = this._getContainerModuleHelpersFactory();
128
- _a = 0, modules_2 = modules;
129
- _b.label = 1;
130
- case 1:
131
- if (!(_a < modules_2.length)) return [3, 4];
132
- currentModule = modules_2[_a];
133
- containerModuleHelpers = getHelpers(currentModule.id);
134
- return [4, currentModule.registry(containerModuleHelpers.bindFunction, containerModuleHelpers.unbindFunction, containerModuleHelpers.isboundFunction, containerModuleHelpers.rebindFunction)];
135
- case 2:
136
- _b.sent();
137
- _b.label = 3;
138
- case 3:
139
- _a++;
140
- return [3, 1];
141
- case 4: return [2];
142
- }
143
- });
144
- });
145
- };
146
- Container.prototype.unload = function () {
147
- var _this = this;
148
- var modules = [];
149
- for (var _i = 0; _i < arguments.length; _i++) {
150
- modules[_i] = arguments[_i];
151
- }
152
- var conditionFactory = function (expected) { return function (item) {
153
- return item.moduleId === expected;
154
- }; };
155
- modules.forEach(function (module) {
156
- var condition = conditionFactory(module.id);
157
- _this._bindingDictionary.removeByCondition(condition);
158
- });
159
- };
160
- Container.prototype.bind = function (serviceIdentifier) {
161
- var scope = this.options.defaultScope || literal_types_1.BindingScopeEnum.Transient;
162
- var binding = new binding_1.Binding(serviceIdentifier, scope);
163
- this._bindingDictionary.add(serviceIdentifier, binding);
164
- return new binding_to_syntax_1.BindingToSyntax(binding);
165
- };
166
- Container.prototype.rebind = function (serviceIdentifier) {
167
- this.unbind(serviceIdentifier);
168
- return this.bind(serviceIdentifier);
169
- };
170
- Container.prototype.unbind = function (serviceIdentifier) {
171
- try {
172
- this._bindingDictionary.remove(serviceIdentifier);
173
- }
174
- catch (e) {
175
- throw new Error(ERROR_MSGS.CANNOT_UNBIND + " " + serialization_1.getServiceIdentifierAsString(serviceIdentifier));
176
- }
177
- };
178
- Container.prototype.unbindAll = function () {
179
- this._bindingDictionary = new lookup_1.Lookup();
180
- };
181
- Container.prototype.isBound = function (serviceIdentifier) {
182
- var bound = this._bindingDictionary.hasKey(serviceIdentifier);
183
- if (!bound && this.parent) {
184
- bound = this.parent.isBound(serviceIdentifier);
185
- }
186
- return bound;
187
- };
188
- Container.prototype.isBoundNamed = function (serviceIdentifier, named) {
189
- return this.isBoundTagged(serviceIdentifier, METADATA_KEY.NAMED_TAG, named);
190
- };
191
- Container.prototype.isBoundTagged = function (serviceIdentifier, key, value) {
192
- var bound = false;
193
- if (this._bindingDictionary.hasKey(serviceIdentifier)) {
194
- var bindings = this._bindingDictionary.get(serviceIdentifier);
195
- var request_1 = planner_1.createMockRequest(this, serviceIdentifier, key, value);
196
- bound = bindings.some(function (b) { return b.constraint(request_1); });
197
- }
198
- if (!bound && this.parent) {
199
- bound = this.parent.isBoundTagged(serviceIdentifier, key, value);
200
- }
201
- return bound;
202
- };
203
- Container.prototype.snapshot = function () {
204
- this._snapshots.push(container_snapshot_1.ContainerSnapshot.of(this._bindingDictionary.clone(), this._middleware));
205
- };
206
- Container.prototype.restore = function () {
207
- var snapshot = this._snapshots.pop();
208
- if (snapshot === undefined) {
209
- throw new Error(ERROR_MSGS.NO_MORE_SNAPSHOTS_AVAILABLE);
210
- }
211
- this._bindingDictionary = snapshot.bindings;
212
- this._middleware = snapshot.middleware;
213
- };
214
- Container.prototype.createChild = function (containerOptions) {
215
- var child = new Container(containerOptions || this.options);
216
- child.parent = this;
217
- return child;
218
- };
219
- Container.prototype.applyMiddleware = function () {
220
- var middlewares = [];
221
- for (var _i = 0; _i < arguments.length; _i++) {
222
- middlewares[_i] = arguments[_i];
223
- }
224
- this._appliedMiddleware = this._appliedMiddleware.concat(middlewares);
225
- var initial = (this._middleware) ? this._middleware : this._planAndResolve();
226
- this._middleware = middlewares.reduce(function (prev, curr) { return curr(prev); }, initial);
227
- };
228
- Container.prototype.applyCustomMetadataReader = function (metadataReader) {
229
- this._metadataReader = metadataReader;
230
- };
231
- Container.prototype.get = function (serviceIdentifier) {
232
- return this._get(false, false, literal_types_1.TargetTypeEnum.Variable, serviceIdentifier);
233
- };
234
- Container.prototype.getTagged = function (serviceIdentifier, key, value) {
235
- return this._get(false, false, literal_types_1.TargetTypeEnum.Variable, serviceIdentifier, key, value);
236
- };
237
- Container.prototype.getNamed = function (serviceIdentifier, named) {
238
- return this.getTagged(serviceIdentifier, METADATA_KEY.NAMED_TAG, named);
239
- };
240
- Container.prototype.getAll = function (serviceIdentifier) {
241
- return this._get(true, true, literal_types_1.TargetTypeEnum.Variable, serviceIdentifier);
242
- };
243
- Container.prototype.getAllTagged = function (serviceIdentifier, key, value) {
244
- return this._get(false, true, literal_types_1.TargetTypeEnum.Variable, serviceIdentifier, key, value);
245
- };
246
- Container.prototype.getAllNamed = function (serviceIdentifier, named) {
247
- return this.getAllTagged(serviceIdentifier, METADATA_KEY.NAMED_TAG, named);
248
- };
249
- Container.prototype.resolve = function (constructorFunction) {
250
- var tempContainer = this.createChild();
251
- tempContainer.bind(constructorFunction).toSelf();
252
- this._appliedMiddleware.forEach(function (m) {
253
- tempContainer.applyMiddleware(m);
254
- });
255
- return tempContainer.get(constructorFunction);
256
- };
257
- Container.prototype._getContainerModuleHelpersFactory = function () {
258
- var _this = this;
259
- var setModuleId = function (bindingToSyntax, moduleId) {
260
- bindingToSyntax._binding.moduleId = moduleId;
261
- };
262
- var getBindFunction = function (moduleId) {
263
- return function (serviceIdentifier) {
264
- var _bind = _this.bind.bind(_this);
265
- var bindingToSyntax = _bind(serviceIdentifier);
266
- setModuleId(bindingToSyntax, moduleId);
267
- return bindingToSyntax;
268
- };
269
- };
270
- var getUnbindFunction = function (moduleId) {
271
- return function (serviceIdentifier) {
272
- var _unbind = _this.unbind.bind(_this);
273
- _unbind(serviceIdentifier);
274
- };
275
- };
276
- var getIsboundFunction = function (moduleId) {
277
- return function (serviceIdentifier) {
278
- var _isBound = _this.isBound.bind(_this);
279
- return _isBound(serviceIdentifier);
280
- };
281
- };
282
- var getRebindFunction = function (moduleId) {
283
- return function (serviceIdentifier) {
284
- var _rebind = _this.rebind.bind(_this);
285
- var bindingToSyntax = _rebind(serviceIdentifier);
286
- setModuleId(bindingToSyntax, moduleId);
287
- return bindingToSyntax;
288
- };
289
- };
290
- return function (mId) { return ({
291
- bindFunction: getBindFunction(mId),
292
- isboundFunction: getIsboundFunction(mId),
293
- rebindFunction: getRebindFunction(mId),
294
- unbindFunction: getUnbindFunction(mId)
295
- }); };
296
- };
297
- Container.prototype._get = function (avoidConstraints, isMultiInject, targetType, serviceIdentifier, key, value) {
298
- var result = null;
299
- var defaultArgs = {
300
- avoidConstraints: avoidConstraints,
301
- contextInterceptor: function (context) { return context; },
302
- isMultiInject: isMultiInject,
303
- key: key,
304
- serviceIdentifier: serviceIdentifier,
305
- targetType: targetType,
306
- value: value
307
- };
308
- if (this._middleware) {
309
- result = this._middleware(defaultArgs);
310
- if (result === undefined || result === null) {
311
- throw new Error(ERROR_MSGS.INVALID_MIDDLEWARE_RETURN);
312
- }
313
- }
314
- else {
315
- result = this._planAndResolve()(defaultArgs);
316
- }
317
- return result;
318
- };
319
- Container.prototype._planAndResolve = function () {
320
- var _this = this;
321
- return function (args) {
322
- var context = planner_1.plan(_this._metadataReader, _this, args.isMultiInject, args.targetType, args.serviceIdentifier, args.key, args.value, args.avoidConstraints);
323
- context = args.contextInterceptor(context);
324
- var result = resolver_1.resolve(context);
325
- return result;
326
- };
327
- };
328
- return Container;
329
- }());
330
- exports.Container = Container;
331
- });
332
- //# sourceMappingURL=container.js.map
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
15
+ }) : (function(o, m, k, k2) {
16
+ if (k2 === undefined) k2 = k;
17
+ o[k2] = m[k];
18
+ }));
19
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
20
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
21
+ }) : function(o, v) {
22
+ o["default"] = v;
23
+ });
24
+ var __importStar = (this && this.__importStar) || function (mod) {
25
+ if (mod && mod.__esModule) return mod;
26
+ var result = {};
27
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
28
+ __setModuleDefault(result, mod);
29
+ return result;
30
+ };
31
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
32
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
33
+ return new (P || (P = Promise))(function (resolve, reject) {
34
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
35
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
36
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
37
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
38
+ });
39
+ };
40
+ var __generator = (this && this.__generator) || function (thisArg, body) {
41
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
42
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
43
+ function verb(n) { return function (v) { return step([n, v]); }; }
44
+ function step(op) {
45
+ if (f) throw new TypeError("Generator is already executing.");
46
+ while (_) try {
47
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
48
+ if (y = 0, t) op = [op[0] & 2, t.value];
49
+ switch (op[0]) {
50
+ case 0: case 1: t = op; break;
51
+ case 4: _.label++; return { value: op[1], done: false };
52
+ case 5: _.label++; y = op[1]; op = [0]; continue;
53
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
54
+ default:
55
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
56
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
57
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
58
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
59
+ if (t[2]) _.ops.pop();
60
+ _.trys.pop(); continue;
61
+ }
62
+ op = body.call(thisArg, _);
63
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
64
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
65
+ }
66
+ };
67
+ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
68
+ if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
69
+ if (ar || !(i in from)) {
70
+ if (!ar) ar = Array.prototype.slice.call(from, 0, i);
71
+ ar[i] = from[i];
72
+ }
73
+ }
74
+ return to.concat(ar || Array.prototype.slice.call(from));
75
+ };
76
+ define(["require", "exports", "../bindings/binding", "../constants/error_msgs", "../constants/literal_types", "../constants/metadata_keys", "../planning/metadata_reader", "../planning/planner", "../resolution/resolver", "../syntax/binding_to_syntax", "../utils/async", "../utils/id", "../utils/serialization", "./container_snapshot", "./lookup", "./module_activation_store"], function (require, exports, binding_1, ERROR_MSGS, literal_types_1, METADATA_KEY, metadata_reader_1, planner_1, resolver_1, binding_to_syntax_1, async_1, id_1, serialization_1, container_snapshot_1, lookup_1, module_activation_store_1) {
77
+ "use strict";
78
+ Object.defineProperty(exports, "__esModule", { value: true });
79
+ exports.Container = void 0;
80
+ ERROR_MSGS = __importStar(ERROR_MSGS);
81
+ METADATA_KEY = __importStar(METADATA_KEY);
82
+ var Container = (function () {
83
+ function Container(containerOptions) {
84
+ var options = containerOptions || {};
85
+ if (typeof options !== 'object') {
86
+ throw new Error("" + ERROR_MSGS.CONTAINER_OPTIONS_MUST_BE_AN_OBJECT);
87
+ }
88
+ if (options.defaultScope === undefined) {
89
+ options.defaultScope = literal_types_1.BindingScopeEnum.Transient;
90
+ }
91
+ else if (options.defaultScope !== literal_types_1.BindingScopeEnum.Singleton &&
92
+ options.defaultScope !== literal_types_1.BindingScopeEnum.Transient &&
93
+ options.defaultScope !== literal_types_1.BindingScopeEnum.Request) {
94
+ throw new Error("" + ERROR_MSGS.CONTAINER_OPTIONS_INVALID_DEFAULT_SCOPE);
95
+ }
96
+ if (options.autoBindInjectable === undefined) {
97
+ options.autoBindInjectable = false;
98
+ }
99
+ else if (typeof options.autoBindInjectable !== 'boolean') {
100
+ throw new Error("" + ERROR_MSGS.CONTAINER_OPTIONS_INVALID_AUTO_BIND_INJECTABLE);
101
+ }
102
+ if (options.skipBaseClassChecks === undefined) {
103
+ options.skipBaseClassChecks = false;
104
+ }
105
+ else if (typeof options.skipBaseClassChecks !== 'boolean') {
106
+ throw new Error("" + ERROR_MSGS.CONTAINER_OPTIONS_INVALID_SKIP_BASE_CHECK);
107
+ }
108
+ this.options = {
109
+ autoBindInjectable: options.autoBindInjectable,
110
+ defaultScope: options.defaultScope,
111
+ skipBaseClassChecks: options.skipBaseClassChecks
112
+ };
113
+ this.id = (0, id_1.id)();
114
+ this._bindingDictionary = new lookup_1.Lookup();
115
+ this._snapshots = [];
116
+ this._middleware = null;
117
+ this._activations = new lookup_1.Lookup();
118
+ this._deactivations = new lookup_1.Lookup();
119
+ this.parent = null;
120
+ this._metadataReader = new metadata_reader_1.MetadataReader();
121
+ this._moduleActivationStore = new module_activation_store_1.ModuleActivationStore();
122
+ }
123
+ Container.merge = function (container1, container2) {
124
+ var containers = [];
125
+ for (var _i = 2; _i < arguments.length; _i++) {
126
+ containers[_i - 2] = arguments[_i];
127
+ }
128
+ var container = new Container();
129
+ var targetContainers = __spreadArray([container1, container2], containers, true).map(function (targetContainer) { return (0, planner_1.getBindingDictionary)(targetContainer); });
130
+ var bindingDictionary = (0, planner_1.getBindingDictionary)(container);
131
+ function copyDictionary(origin, destination) {
132
+ origin.traverse(function (_key, value) {
133
+ value.forEach(function (binding) {
134
+ destination.add(binding.serviceIdentifier, binding.clone());
135
+ });
136
+ });
137
+ }
138
+ targetContainers.forEach(function (targetBindingDictionary) {
139
+ copyDictionary(targetBindingDictionary, bindingDictionary);
140
+ });
141
+ return container;
142
+ };
143
+ Container.prototype.load = function () {
144
+ var modules = [];
145
+ for (var _i = 0; _i < arguments.length; _i++) {
146
+ modules[_i] = arguments[_i];
147
+ }
148
+ var getHelpers = this._getContainerModuleHelpersFactory();
149
+ for (var _a = 0, modules_1 = modules; _a < modules_1.length; _a++) {
150
+ var currentModule = modules_1[_a];
151
+ var containerModuleHelpers = getHelpers(currentModule.id);
152
+ currentModule.registry(containerModuleHelpers.bindFunction, containerModuleHelpers.unbindFunction, containerModuleHelpers.isboundFunction, containerModuleHelpers.rebindFunction, containerModuleHelpers.unbindAsyncFunction, containerModuleHelpers.onActivationFunction, containerModuleHelpers.onDeactivationFunction);
153
+ }
154
+ };
155
+ Container.prototype.loadAsync = function () {
156
+ var modules = [];
157
+ for (var _i = 0; _i < arguments.length; _i++) {
158
+ modules[_i] = arguments[_i];
159
+ }
160
+ return __awaiter(this, void 0, void 0, function () {
161
+ var getHelpers, _a, modules_2, currentModule, containerModuleHelpers;
162
+ return __generator(this, function (_b) {
163
+ switch (_b.label) {
164
+ case 0:
165
+ getHelpers = this._getContainerModuleHelpersFactory();
166
+ _a = 0, modules_2 = modules;
167
+ _b.label = 1;
168
+ case 1:
169
+ if (!(_a < modules_2.length)) return [3, 4];
170
+ currentModule = modules_2[_a];
171
+ containerModuleHelpers = getHelpers(currentModule.id);
172
+ return [4, currentModule.registry(containerModuleHelpers.bindFunction, containerModuleHelpers.unbindFunction, containerModuleHelpers.isboundFunction, containerModuleHelpers.rebindFunction, containerModuleHelpers.unbindAsyncFunction, containerModuleHelpers.onActivationFunction, containerModuleHelpers.onDeactivationFunction)];
173
+ case 2:
174
+ _b.sent();
175
+ _b.label = 3;
176
+ case 3:
177
+ _a++;
178
+ return [3, 1];
179
+ case 4: return [2];
180
+ }
181
+ });
182
+ });
183
+ };
184
+ Container.prototype.unload = function () {
185
+ var _this = this;
186
+ var modules = [];
187
+ for (var _i = 0; _i < arguments.length; _i++) {
188
+ modules[_i] = arguments[_i];
189
+ }
190
+ modules.forEach(function (module) {
191
+ var deactivations = _this._removeModuleBindings(module.id);
192
+ _this._deactivateSingletons(deactivations);
193
+ _this._removeModuleHandlers(module.id);
194
+ });
195
+ };
196
+ Container.prototype.unloadAsync = function () {
197
+ var modules = [];
198
+ for (var _i = 0; _i < arguments.length; _i++) {
199
+ modules[_i] = arguments[_i];
200
+ }
201
+ return __awaiter(this, void 0, void 0, function () {
202
+ var _a, modules_3, module_1, deactivations;
203
+ return __generator(this, function (_b) {
204
+ switch (_b.label) {
205
+ case 0:
206
+ _a = 0, modules_3 = modules;
207
+ _b.label = 1;
208
+ case 1:
209
+ if (!(_a < modules_3.length)) return [3, 4];
210
+ module_1 = modules_3[_a];
211
+ deactivations = this._removeModuleBindings(module_1.id);
212
+ return [4, this._deactivateSingletonsAsync(deactivations)];
213
+ case 2:
214
+ _b.sent();
215
+ this._removeModuleHandlers(module_1.id);
216
+ _b.label = 3;
217
+ case 3:
218
+ _a++;
219
+ return [3, 1];
220
+ case 4: return [2];
221
+ }
222
+ });
223
+ });
224
+ };
225
+ Container.prototype.bind = function (serviceIdentifier) {
226
+ var scope = this.options.defaultScope || literal_types_1.BindingScopeEnum.Transient;
227
+ var binding = new binding_1.Binding(serviceIdentifier, scope);
228
+ this._bindingDictionary.add(serviceIdentifier, binding);
229
+ return new binding_to_syntax_1.BindingToSyntax(binding);
230
+ };
231
+ Container.prototype.rebind = function (serviceIdentifier) {
232
+ this.unbind(serviceIdentifier);
233
+ return this.bind(serviceIdentifier);
234
+ };
235
+ Container.prototype.rebindAsync = function (serviceIdentifier) {
236
+ return __awaiter(this, void 0, void 0, function () {
237
+ return __generator(this, function (_a) {
238
+ switch (_a.label) {
239
+ case 0: return [4, this.unbindAsync(serviceIdentifier)];
240
+ case 1:
241
+ _a.sent();
242
+ return [2, this.bind(serviceIdentifier)];
243
+ }
244
+ });
245
+ });
246
+ };
247
+ Container.prototype.unbind = function (serviceIdentifier) {
248
+ if (this._bindingDictionary.hasKey(serviceIdentifier)) {
249
+ var bindings = this._bindingDictionary.get(serviceIdentifier);
250
+ this._deactivateSingletons(bindings);
251
+ }
252
+ this._removeServiceFromDictionary(serviceIdentifier);
253
+ };
254
+ Container.prototype.unbindAsync = function (serviceIdentifier) {
255
+ return __awaiter(this, void 0, void 0, function () {
256
+ var bindings;
257
+ return __generator(this, function (_a) {
258
+ switch (_a.label) {
259
+ case 0:
260
+ if (!this._bindingDictionary.hasKey(serviceIdentifier)) return [3, 2];
261
+ bindings = this._bindingDictionary.get(serviceIdentifier);
262
+ return [4, this._deactivateSingletonsAsync(bindings)];
263
+ case 1:
264
+ _a.sent();
265
+ _a.label = 2;
266
+ case 2:
267
+ this._removeServiceFromDictionary(serviceIdentifier);
268
+ return [2];
269
+ }
270
+ });
271
+ });
272
+ };
273
+ Container.prototype.unbindAll = function () {
274
+ var _this = this;
275
+ this._bindingDictionary.traverse(function (_key, value) {
276
+ _this._deactivateSingletons(value);
277
+ });
278
+ this._bindingDictionary = new lookup_1.Lookup();
279
+ };
280
+ Container.prototype.unbindAllAsync = function () {
281
+ return __awaiter(this, void 0, void 0, function () {
282
+ var promises;
283
+ var _this = this;
284
+ return __generator(this, function (_a) {
285
+ switch (_a.label) {
286
+ case 0:
287
+ promises = [];
288
+ this._bindingDictionary.traverse(function (_key, value) {
289
+ promises.push(_this._deactivateSingletonsAsync(value));
290
+ });
291
+ return [4, Promise.all(promises)];
292
+ case 1:
293
+ _a.sent();
294
+ this._bindingDictionary = new lookup_1.Lookup();
295
+ return [2];
296
+ }
297
+ });
298
+ });
299
+ };
300
+ Container.prototype.onActivation = function (serviceIdentifier, onActivation) {
301
+ this._activations.add(serviceIdentifier, onActivation);
302
+ };
303
+ Container.prototype.onDeactivation = function (serviceIdentifier, onDeactivation) {
304
+ this._deactivations.add(serviceIdentifier, onDeactivation);
305
+ };
306
+ Container.prototype.isBound = function (serviceIdentifier) {
307
+ var bound = this._bindingDictionary.hasKey(serviceIdentifier);
308
+ if (!bound && this.parent) {
309
+ bound = this.parent.isBound(serviceIdentifier);
310
+ }
311
+ return bound;
312
+ };
313
+ Container.prototype.isCurrentBound = function (serviceIdentifier) {
314
+ return this._bindingDictionary.hasKey(serviceIdentifier);
315
+ };
316
+ Container.prototype.isBoundNamed = function (serviceIdentifier, named) {
317
+ return this.isBoundTagged(serviceIdentifier, METADATA_KEY.NAMED_TAG, named);
318
+ };
319
+ Container.prototype.isBoundTagged = function (serviceIdentifier, key, value) {
320
+ var bound = false;
321
+ if (this._bindingDictionary.hasKey(serviceIdentifier)) {
322
+ var bindings = this._bindingDictionary.get(serviceIdentifier);
323
+ var request_1 = (0, planner_1.createMockRequest)(this, serviceIdentifier, key, value);
324
+ bound = bindings.some(function (b) { return b.constraint(request_1); });
325
+ }
326
+ if (!bound && this.parent) {
327
+ bound = this.parent.isBoundTagged(serviceIdentifier, key, value);
328
+ }
329
+ return bound;
330
+ };
331
+ Container.prototype.snapshot = function () {
332
+ this._snapshots.push(container_snapshot_1.ContainerSnapshot.of(this._bindingDictionary.clone(), this._middleware, this._activations.clone(), this._deactivations.clone(), this._moduleActivationStore.clone()));
333
+ };
334
+ Container.prototype.restore = function () {
335
+ var snapshot = this._snapshots.pop();
336
+ if (snapshot === undefined) {
337
+ throw new Error(ERROR_MSGS.NO_MORE_SNAPSHOTS_AVAILABLE);
338
+ }
339
+ this._bindingDictionary = snapshot.bindings;
340
+ this._activations = snapshot.activations;
341
+ this._deactivations = snapshot.deactivations;
342
+ this._middleware = snapshot.middleware;
343
+ this._moduleActivationStore = snapshot.moduleActivationStore;
344
+ };
345
+ Container.prototype.createChild = function (containerOptions) {
346
+ var child = new Container(containerOptions || this.options);
347
+ child.parent = this;
348
+ return child;
349
+ };
350
+ Container.prototype.applyMiddleware = function () {
351
+ var middlewares = [];
352
+ for (var _i = 0; _i < arguments.length; _i++) {
353
+ middlewares[_i] = arguments[_i];
354
+ }
355
+ var initial = (this._middleware) ? this._middleware : this._planAndResolve();
356
+ this._middleware = middlewares.reduce(function (prev, curr) { return curr(prev); }, initial);
357
+ };
358
+ Container.prototype.applyCustomMetadataReader = function (metadataReader) {
359
+ this._metadataReader = metadataReader;
360
+ };
361
+ Container.prototype.get = function (serviceIdentifier) {
362
+ var getArgs = this._getNotAllArgs(serviceIdentifier, false);
363
+ return this._getButThrowIfAsync(getArgs);
364
+ };
365
+ Container.prototype.getAsync = function (serviceIdentifier) {
366
+ return __awaiter(this, void 0, void 0, function () {
367
+ var getArgs;
368
+ return __generator(this, function (_a) {
369
+ getArgs = this._getNotAllArgs(serviceIdentifier, false);
370
+ return [2, this._get(getArgs)];
371
+ });
372
+ });
373
+ };
374
+ Container.prototype.getTagged = function (serviceIdentifier, key, value) {
375
+ var getArgs = this._getNotAllArgs(serviceIdentifier, false, key, value);
376
+ return this._getButThrowIfAsync(getArgs);
377
+ };
378
+ Container.prototype.getTaggedAsync = function (serviceIdentifier, key, value) {
379
+ return __awaiter(this, void 0, void 0, function () {
380
+ var getArgs;
381
+ return __generator(this, function (_a) {
382
+ getArgs = this._getNotAllArgs(serviceIdentifier, false, key, value);
383
+ return [2, this._get(getArgs)];
384
+ });
385
+ });
386
+ };
387
+ Container.prototype.getNamed = function (serviceIdentifier, named) {
388
+ return this.getTagged(serviceIdentifier, METADATA_KEY.NAMED_TAG, named);
389
+ };
390
+ Container.prototype.getNamedAsync = function (serviceIdentifier, named) {
391
+ return this.getTaggedAsync(serviceIdentifier, METADATA_KEY.NAMED_TAG, named);
392
+ };
393
+ Container.prototype.getAll = function (serviceIdentifier) {
394
+ var getArgs = this._getAllArgs(serviceIdentifier);
395
+ return this._getButThrowIfAsync(getArgs);
396
+ };
397
+ Container.prototype.getAllAsync = function (serviceIdentifier) {
398
+ var getArgs = this._getAllArgs(serviceIdentifier);
399
+ return this._getAll(getArgs);
400
+ };
401
+ Container.prototype.getAllTagged = function (serviceIdentifier, key, value) {
402
+ var getArgs = this._getNotAllArgs(serviceIdentifier, true, key, value);
403
+ return this._getButThrowIfAsync(getArgs);
404
+ };
405
+ Container.prototype.getAllTaggedAsync = function (serviceIdentifier, key, value) {
406
+ var getArgs = this._getNotAllArgs(serviceIdentifier, true, key, value);
407
+ return this._getAll(getArgs);
408
+ };
409
+ Container.prototype.getAllNamed = function (serviceIdentifier, named) {
410
+ return this.getAllTagged(serviceIdentifier, METADATA_KEY.NAMED_TAG, named);
411
+ };
412
+ Container.prototype.getAllNamedAsync = function (serviceIdentifier, named) {
413
+ return this.getAllTaggedAsync(serviceIdentifier, METADATA_KEY.NAMED_TAG, named);
414
+ };
415
+ Container.prototype.resolve = function (constructorFunction) {
416
+ var isBound = this.isBound(constructorFunction);
417
+ if (!isBound) {
418
+ this.bind(constructorFunction).toSelf();
419
+ }
420
+ var resolved = this.get(constructorFunction);
421
+ if (!isBound) {
422
+ this.unbind(constructorFunction);
423
+ }
424
+ return resolved;
425
+ };
426
+ Container.prototype._preDestroy = function (constructor, instance) {
427
+ var _a, _b;
428
+ if (Reflect.hasMetadata(METADATA_KEY.PRE_DESTROY, constructor)) {
429
+ var data = Reflect.getMetadata(METADATA_KEY.PRE_DESTROY, constructor);
430
+ return (_b = (_a = instance)[data.value]) === null || _b === void 0 ? void 0 : _b.call(_a);
431
+ }
432
+ };
433
+ Container.prototype._removeModuleHandlers = function (moduleId) {
434
+ var moduleActivationsHandlers = this._moduleActivationStore.remove(moduleId);
435
+ this._activations.removeIntersection(moduleActivationsHandlers.onActivations);
436
+ this._deactivations.removeIntersection(moduleActivationsHandlers.onDeactivations);
437
+ };
438
+ Container.prototype._removeModuleBindings = function (moduleId) {
439
+ return this._bindingDictionary.removeByCondition(function (binding) { return binding.moduleId === moduleId; });
440
+ };
441
+ Container.prototype._deactivate = function (binding, instance) {
442
+ var _this = this;
443
+ var constructor = Object.getPrototypeOf(instance).constructor;
444
+ try {
445
+ if (this._deactivations.hasKey(binding.serviceIdentifier)) {
446
+ var result = this._deactivateContainer(instance, this._deactivations.get(binding.serviceIdentifier).values());
447
+ if ((0, async_1.isPromise)(result)) {
448
+ return this._handleDeactivationError(result.then(function () { return _this._propagateContainerDeactivationThenBindingAndPreDestroyAsync(binding, instance, constructor); }), constructor);
449
+ }
450
+ }
451
+ var propagateDeactivationResult = this._propagateContainerDeactivationThenBindingAndPreDestroy(binding, instance, constructor);
452
+ if ((0, async_1.isPromise)(propagateDeactivationResult)) {
453
+ return this._handleDeactivationError(propagateDeactivationResult, constructor);
454
+ }
455
+ }
456
+ catch (ex) {
457
+ if (ex instanceof Error) {
458
+ throw new Error(ERROR_MSGS.ON_DEACTIVATION_ERROR(constructor.name, ex.message));
459
+ }
460
+ }
461
+ };
462
+ Container.prototype._handleDeactivationError = function (asyncResult, constructor) {
463
+ return __awaiter(this, void 0, void 0, function () {
464
+ var ex_1;
465
+ return __generator(this, function (_a) {
466
+ switch (_a.label) {
467
+ case 0:
468
+ _a.trys.push([0, 2, , 3]);
469
+ return [4, asyncResult];
470
+ case 1:
471
+ _a.sent();
472
+ return [3, 3];
473
+ case 2:
474
+ ex_1 = _a.sent();
475
+ if (ex_1 instanceof Error) {
476
+ throw new Error(ERROR_MSGS.ON_DEACTIVATION_ERROR(constructor.name, ex_1.message));
477
+ }
478
+ return [3, 3];
479
+ case 3: return [2];
480
+ }
481
+ });
482
+ });
483
+ };
484
+ Container.prototype._deactivateContainer = function (instance, deactivationsIterator) {
485
+ var _this = this;
486
+ var deactivation = deactivationsIterator.next();
487
+ while (deactivation.value) {
488
+ var result = deactivation.value(instance);
489
+ if ((0, async_1.isPromise)(result)) {
490
+ return result.then(function () {
491
+ return _this._deactivateContainerAsync(instance, deactivationsIterator);
492
+ });
493
+ }
494
+ deactivation = deactivationsIterator.next();
495
+ }
496
+ };
497
+ Container.prototype._deactivateContainerAsync = function (instance, deactivationsIterator) {
498
+ return __awaiter(this, void 0, void 0, function () {
499
+ var deactivation;
500
+ return __generator(this, function (_a) {
501
+ switch (_a.label) {
502
+ case 0:
503
+ deactivation = deactivationsIterator.next();
504
+ _a.label = 1;
505
+ case 1:
506
+ if (!deactivation.value) return [3, 3];
507
+ return [4, deactivation.value(instance)];
508
+ case 2:
509
+ _a.sent();
510
+ deactivation = deactivationsIterator.next();
511
+ return [3, 1];
512
+ case 3: return [2];
513
+ }
514
+ });
515
+ });
516
+ };
517
+ Container.prototype._getContainerModuleHelpersFactory = function () {
518
+ var _this = this;
519
+ var setModuleId = function (bindingToSyntax, moduleId) {
520
+ bindingToSyntax._binding.moduleId = moduleId;
521
+ };
522
+ var getBindFunction = function (moduleId) {
523
+ return function (serviceIdentifier) {
524
+ var bindingToSyntax = _this.bind(serviceIdentifier);
525
+ setModuleId(bindingToSyntax, moduleId);
526
+ return bindingToSyntax;
527
+ };
528
+ };
529
+ var getUnbindFunction = function () {
530
+ return function (serviceIdentifier) {
531
+ return _this.unbind(serviceIdentifier);
532
+ };
533
+ };
534
+ var getUnbindAsyncFunction = function () {
535
+ return function (serviceIdentifier) {
536
+ return _this.unbindAsync(serviceIdentifier);
537
+ };
538
+ };
539
+ var getIsboundFunction = function () {
540
+ return function (serviceIdentifier) {
541
+ return _this.isBound(serviceIdentifier);
542
+ };
543
+ };
544
+ var getRebindFunction = function (moduleId) {
545
+ return function (serviceIdentifier) {
546
+ var bindingToSyntax = _this.rebind(serviceIdentifier);
547
+ setModuleId(bindingToSyntax, moduleId);
548
+ return bindingToSyntax;
549
+ };
550
+ };
551
+ var getOnActivationFunction = function (moduleId) {
552
+ return function (serviceIdentifier, onActivation) {
553
+ _this._moduleActivationStore.addActivation(moduleId, serviceIdentifier, onActivation);
554
+ _this.onActivation(serviceIdentifier, onActivation);
555
+ };
556
+ };
557
+ var getOnDeactivationFunction = function (moduleId) {
558
+ return function (serviceIdentifier, onDeactivation) {
559
+ _this._moduleActivationStore.addDeactivation(moduleId, serviceIdentifier, onDeactivation);
560
+ _this.onDeactivation(serviceIdentifier, onDeactivation);
561
+ };
562
+ };
563
+ return function (mId) { return ({
564
+ bindFunction: getBindFunction(mId),
565
+ isboundFunction: getIsboundFunction(),
566
+ onActivationFunction: getOnActivationFunction(mId),
567
+ onDeactivationFunction: getOnDeactivationFunction(mId),
568
+ rebindFunction: getRebindFunction(mId),
569
+ unbindFunction: getUnbindFunction(),
570
+ unbindAsyncFunction: getUnbindAsyncFunction()
571
+ }); };
572
+ };
573
+ Container.prototype._getAll = function (getArgs) {
574
+ return Promise.all(this._get(getArgs));
575
+ };
576
+ Container.prototype._get = function (getArgs) {
577
+ var planAndResolveArgs = __assign(__assign({}, getArgs), { contextInterceptor: function (context) { return context; }, targetType: literal_types_1.TargetTypeEnum.Variable });
578
+ if (this._middleware) {
579
+ var middlewareResult = this._middleware(planAndResolveArgs);
580
+ if (middlewareResult === undefined || middlewareResult === null) {
581
+ throw new Error(ERROR_MSGS.INVALID_MIDDLEWARE_RETURN);
582
+ }
583
+ return middlewareResult;
584
+ }
585
+ return this._planAndResolve()(planAndResolveArgs);
586
+ };
587
+ Container.prototype._getButThrowIfAsync = function (getArgs) {
588
+ var result = this._get(getArgs);
589
+ if ((0, async_1.isPromiseOrContainsPromise)(result)) {
590
+ throw new Error(ERROR_MSGS.LAZY_IN_SYNC(getArgs.serviceIdentifier));
591
+ }
592
+ return result;
593
+ };
594
+ Container.prototype._getAllArgs = function (serviceIdentifier) {
595
+ var getAllArgs = {
596
+ avoidConstraints: true,
597
+ isMultiInject: true,
598
+ serviceIdentifier: serviceIdentifier,
599
+ };
600
+ return getAllArgs;
601
+ };
602
+ Container.prototype._getNotAllArgs = function (serviceIdentifier, isMultiInject, key, value) {
603
+ var getNotAllArgs = {
604
+ avoidConstraints: false,
605
+ isMultiInject: isMultiInject,
606
+ serviceIdentifier: serviceIdentifier,
607
+ key: key,
608
+ value: value,
609
+ };
610
+ return getNotAllArgs;
611
+ };
612
+ Container.prototype._planAndResolve = function () {
613
+ var _this = this;
614
+ return function (args) {
615
+ var context = (0, planner_1.plan)(_this._metadataReader, _this, args.isMultiInject, args.targetType, args.serviceIdentifier, args.key, args.value, args.avoidConstraints);
616
+ context = args.contextInterceptor(context);
617
+ var result = (0, resolver_1.resolve)(context);
618
+ return result;
619
+ };
620
+ };
621
+ Container.prototype._deactivateIfSingleton = function (binding) {
622
+ var _this = this;
623
+ if (!binding.activated) {
624
+ return;
625
+ }
626
+ if ((0, async_1.isPromise)(binding.cache)) {
627
+ return binding.cache.then(function (resolved) { return _this._deactivate(binding, resolved); });
628
+ }
629
+ return this._deactivate(binding, binding.cache);
630
+ };
631
+ Container.prototype._deactivateSingletons = function (bindings) {
632
+ for (var _i = 0, bindings_1 = bindings; _i < bindings_1.length; _i++) {
633
+ var binding = bindings_1[_i];
634
+ var result = this._deactivateIfSingleton(binding);
635
+ if ((0, async_1.isPromise)(result)) {
636
+ throw new Error(ERROR_MSGS.ASYNC_UNBIND_REQUIRED);
637
+ }
638
+ }
639
+ };
640
+ Container.prototype._deactivateSingletonsAsync = function (bindings) {
641
+ return __awaiter(this, void 0, void 0, function () {
642
+ var _this = this;
643
+ return __generator(this, function (_a) {
644
+ switch (_a.label) {
645
+ case 0: return [4, Promise.all(bindings.map(function (b) { return _this._deactivateIfSingleton(b); }))];
646
+ case 1:
647
+ _a.sent();
648
+ return [2];
649
+ }
650
+ });
651
+ });
652
+ };
653
+ Container.prototype._propagateContainerDeactivationThenBindingAndPreDestroy = function (binding, instance, constructor) {
654
+ if (this.parent) {
655
+ return this._deactivate.bind(this.parent)(binding, instance);
656
+ }
657
+ else {
658
+ return this._bindingDeactivationAndPreDestroy(binding, instance, constructor);
659
+ }
660
+ };
661
+ Container.prototype._propagateContainerDeactivationThenBindingAndPreDestroyAsync = function (binding, instance, constructor) {
662
+ return __awaiter(this, void 0, void 0, function () {
663
+ return __generator(this, function (_a) {
664
+ switch (_a.label) {
665
+ case 0:
666
+ if (!this.parent) return [3, 2];
667
+ return [4, this._deactivate.bind(this.parent)(binding, instance)];
668
+ case 1:
669
+ _a.sent();
670
+ return [3, 4];
671
+ case 2: return [4, this._bindingDeactivationAndPreDestroyAsync(binding, instance, constructor)];
672
+ case 3:
673
+ _a.sent();
674
+ _a.label = 4;
675
+ case 4: return [2];
676
+ }
677
+ });
678
+ });
679
+ };
680
+ Container.prototype._removeServiceFromDictionary = function (serviceIdentifier) {
681
+ try {
682
+ this._bindingDictionary.remove(serviceIdentifier);
683
+ }
684
+ catch (e) {
685
+ throw new Error(ERROR_MSGS.CANNOT_UNBIND + " " + (0, serialization_1.getServiceIdentifierAsString)(serviceIdentifier));
686
+ }
687
+ };
688
+ Container.prototype._bindingDeactivationAndPreDestroy = function (binding, instance, constructor) {
689
+ var _this = this;
690
+ if (typeof binding.onDeactivation === 'function') {
691
+ var result = binding.onDeactivation(instance);
692
+ if ((0, async_1.isPromise)(result)) {
693
+ return result.then(function () { return _this._preDestroy(constructor, instance); });
694
+ }
695
+ }
696
+ return this._preDestroy(constructor, instance);
697
+ };
698
+ Container.prototype._bindingDeactivationAndPreDestroyAsync = function (binding, instance, constructor) {
699
+ return __awaiter(this, void 0, void 0, function () {
700
+ return __generator(this, function (_a) {
701
+ switch (_a.label) {
702
+ case 0:
703
+ if (!(typeof binding.onDeactivation === 'function')) return [3, 2];
704
+ return [4, binding.onDeactivation(instance)];
705
+ case 1:
706
+ _a.sent();
707
+ _a.label = 2;
708
+ case 2: return [4, this._preDestroy(constructor, instance)];
709
+ case 3:
710
+ _a.sent();
711
+ return [2];
712
+ }
713
+ });
714
+ });
715
+ };
716
+ return Container;
717
+ }());
718
+ exports.Container = Container;
719
+ });