Reference Source

js/commands/worker_command.js

  1. // NPM IMPORTS
  2. // import assert from 'assert'
  3.  
  4. // COMMON IMPORTS
  5. import T from '../../../node_modules/devapt-core-common/dist/js/utils/types'
  6.  
  7. // BROWSER IMPORTS
  8. import Command from './command'
  9.  
  10.  
  11. const context = 'browser/commands/worker_command'
  12.  
  13.  
  14.  
  15. /**
  16. * Web worker command class.
  17. *
  18. * @author Luc BORIES
  19. * @license Apache-2.0
  20. *
  21. * @example
  22. *
  23. * API:
  24. * ->do():Promise - do display.
  25. * ->undo():Promise - undo display and display history previous content.
  26. * ->start()
  27. * ->stop()
  28. */
  29. export default class WorkerCommand extends Command
  30. {
  31. /**
  32. * Creates a web worker command instance.
  33. *
  34. * Command configuration is a simple object with:
  35. * - url: local script url
  36. *
  37. * @param {object} arg_runtime - client runtime.
  38. * @param {object} arg_settings - command settings.
  39. * @param {string} arg_log_context - context of traces of this instance (optional).
  40. *
  41. * @returns {nothing}
  42. */
  43. constructor(arg_runtime, arg_settings, arg_log_context=context)
  44. {
  45. super(arg_runtime, arg_settings, arg_log_context)
  46. /**
  47. * Class type flag.
  48. * @type {boolean}
  49. */
  50. this.is_worker_command = true
  51.  
  52. this._worker = undefined
  53. this._worker_promise = undefined
  54.  
  55. this._script_url = T.isObject(this._settings) && T.isNotEmptyString(this._settings.script_url) ? this._settings.script_url : undefined
  56. this._script_operands = T.isObject(this._settings) && this._settings.script_operands ? this._settings.script_operands : undefined
  57. // this.enable_trace()
  58. // this.update_trace_enabled()
  59. }
  60.  
  61.  
  62.  
  63. /**
  64. * Check if command settings is valid.
  65. *
  66. * @returns {boolean}
  67. */
  68. is_valid()
  69. {
  70. const has_url = T.isNotEmptyString(this._script_url) || this._script_operands == undefined
  71. return has_url
  72. }
  73.  
  74.  
  75.  
  76. /**
  77. * Do command.
  78. *
  79. * @returns {Promise}
  80. */
  81. _do()
  82. {
  83. // WORKER NOT SUPPORTED
  84. if (typeof(Worker) === "undefined")
  85. {
  86. return Promise.reject(context + ':do:worker is not supported')
  87. }
  88.  
  89. // WORKER ALREADY EXISTS
  90. if (typeof(this._worker) !== "undefined")
  91. {
  92. return this._worker_promise && this._worker_promise.then ? this._worker_promise : Promise.reject(context + ':' + this.get_name() + ':bad worker promise')
  93. }
  94.  
  95. // CREATE WORKER
  96. const resolve_fn = (results)=>{
  97. return results
  98. }
  99.  
  100. const reject_fn = (err)=>{
  101. return err
  102. }
  103.  
  104. if ( ! this.is_valid() )
  105. {
  106. return Promise.reject(context + ':do:bad settings')
  107. }
  108.  
  109. this._worker = new Worker(this._script_url)
  110. this._worker.onmessage = function(event){
  111. resolve_fn(event.data)
  112. }
  113. this._worker.onerror = function(error){
  114. reject_fn(error)
  115. }
  116.  
  117. this._worker_promise = new Promise(resolve_fn, reject_fn)
  118. this._worker_promise.then(
  119. (results)=>{
  120. this.stop()
  121. return results
  122. }
  123. )
  124.  
  125. // START
  126. this._worker.postMessage(this._script_operands)
  127.  
  128. return this._worker_promise
  129. }
  130.  
  131.  
  132.  
  133. /**
  134. * Undo command.
  135. *
  136. * @returns {Promise}
  137. */
  138. _undo()
  139. {
  140. if (typeof(Worker) === "undefined")
  141. {
  142. return Promise.reject(context + ':undo:worker is not supported')
  143. }
  144.  
  145. return Promise.reject(context + ':undo:not yet implemented')
  146. }
  147.  
  148.  
  149.  
  150. /**
  151. * Stop worker.
  152. */
  153. stop()
  154. {
  155. if (typeof(this._worker) !== "undefined")
  156. {
  157. this._worker.terminate()
  158. this._worker = undefined
  159. // this._worker_promise = undefined // DO NOT DELETE RESULTS PROMISE
  160. }
  161. }
  162. }