Home Reference Source

src/core.js

  1. /*
  2. * OS.js - JavaScript Cloud/Web Desktop Platform
  3. *
  4. * Copyright (c) Anders Evenrud <andersevenrud@gmail.com>
  5. * All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions are met:
  9. *
  10. * 1. Redistributions of source code must retain the above copyright notice, this
  11. * list of conditions and the following disclaimer
  12. * 2. Redistributions in binary form must reproduce the above copyright notice,
  13. * this list of conditions and the following disclaimer in the documentation
  14. * and/or other materials provided with the distribution
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  17. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
  20. * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  21. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  22. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  23. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. *
  27. * @author Anders Evenrud <andersevenrud@gmail.com>
  28. * @licence Simplified BSD License
  29. */
  30.  
  31. import {resolveTreeByKey, providerHandler} from './utils.js';
  32. import {EventEmitter} from '@osjs/event-emitter';
  33. import merge from 'deepmerge';
  34. import omitDeep from 'omit-deep';
  35.  
  36. /**
  37. * Core
  38. *
  39. * @desc Main class for OS.js service providers and bootstrapping.
  40. */
  41. export class CoreBase extends EventEmitter {
  42.  
  43. /**
  44. * Create core instance
  45. * @param {Object} defaultConfiguration Default configuration
  46. * @param {Object} configuration Configuration given
  47. * @param {Object} options Options
  48. */
  49. constructor(defaultConfiguration, configuration, options) {
  50. super('Core');
  51.  
  52. // https://github.com/KyleAMathews/deepmerge#webpack-bug
  53. const merger = merge.default ? merge.default : merge;
  54. const omitted = omitDeep(defaultConfiguration, options.omit || []);
  55.  
  56. this.logger = console;
  57. this.configuration = merger(omitted, configuration);
  58. this.options = options;
  59. this.booted = false;
  60. this.started = false;
  61. this.destroyed = false;
  62. this.providers = providerHandler(this);
  63. }
  64.  
  65. /**
  66. * Destroy core instance
  67. */
  68. destroy() {
  69. if (this.destroyed) {
  70. return false;
  71. }
  72.  
  73. this.booted = false;
  74. this.destroyed = true;
  75. this.started = false;
  76.  
  77. const promises = this.providers.destroy();
  78.  
  79. super.destroy();
  80.  
  81. return promises;
  82. }
  83.  
  84. /**
  85. * Boots up OS.js
  86. */
  87. boot() {
  88. if (this.booted) {
  89. return Promise.resolve(true);
  90. }
  91.  
  92. this.started = false;
  93. this.destroyed = false;
  94. this.booted = true;
  95.  
  96. return this.providers.init(true)
  97. .then(() => true);
  98. }
  99.  
  100. /**
  101. * Starts all core services
  102. */
  103. start() {
  104. if (this.started) {
  105. return Promise.resolve(true);
  106. }
  107.  
  108. this.started = true;
  109.  
  110. return this.providers.init(false)
  111. .then(() => true);
  112. }
  113.  
  114. /**
  115. * Gets a configuration entry by key
  116. *
  117. * @param {String} key The key to get the value from
  118. * @param {*} [defaultValue] If result is undefined, return this instead
  119. * @see {resolveTreeByKey}
  120. * @return {*}
  121. */
  122. config(key, defaultValue) {
  123. return key
  124. ? resolveTreeByKey(this.configuration, key, defaultValue)
  125. : Object.assign({}, this.configuration);
  126. }
  127.  
  128. /**
  129. * Register a service provider
  130. *
  131. * @param {Class} ref A class reference
  132. * @param {Object} [options] Options for handling of provider
  133. * @param {Boolean} [options.before] Load this provider early
  134. * @param {Object} [options.args] Arguments to send to the constructor
  135. */
  136. register(ref, options = {}) {
  137. this.providers.register(ref, options);
  138. }
  139.  
  140. /**
  141. * Register a instanciator provider
  142. *
  143. * @param {String} name Provider name
  144. * @param {Function} callback Callback that returns an instance
  145. */
  146. instance(name, callback) {
  147. this.providers.bind(name, false, callback);
  148. }
  149.  
  150. /**
  151. * Register a singleton provider
  152. *
  153. * @param {String} name Provider name
  154. * @param {Function} callback Callback that returns an instance
  155. */
  156. singleton(name, callback) {
  157. this.providers.bind(name, true, callback);
  158. }
  159.  
  160. /**
  161. * Create an instance of a provided service
  162. *
  163. * @param {String} name Service name
  164. * @param {*} args Constructor arguments
  165. * @return {*} An instance of a service
  166. */
  167. make(name, ...args) {
  168. return this.providers.make(name, ...args);
  169. }
  170.  
  171. /**
  172. * Check if a service exists
  173. * @param {String} name Provider name
  174. * @return {Boolean}
  175. */
  176. has(name) {
  177. return this.providers.has(name);
  178. }
  179. }