Reference Source

js/runtime/service_operation.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. import Stream from '../../../node_modules/devapt-core-common/dist/js/messaging/stream'
  7.  
  8.  
  9. let context = 'browser/runtime/service_operation'
  10.  
  11.  
  12.  
  13. /**
  14. * @file client ServiceOperation class.
  15. * @author Luc BORIES
  16. * @license Apache-2.0
  17. */
  18. export default class ServiceOperation
  19. {
  20. /**
  21. * Create a client Runtime instance.
  22. *
  23. * @param {string} arg_svc_name - service name.
  24. * @param {object} arg_svc_settings - service settiings.
  25. *
  26. * @returns {nothing}
  27. */
  28. constructor(arg_op_name, arg_op_settings)
  29. {
  30. this._name = arg_op_name
  31. this._settings = arg_op_settings
  32. this.is_service_operation = true
  33. }
  34.  
  35.  
  36.  
  37. /**
  38. * Get service name.
  39. *
  40. * @returns {string}
  41. */
  42. get_name()
  43. {
  44. return this._name
  45. }
  46.  
  47.  
  48.  
  49. /**
  50. * Execute operation on browser.
  51. *
  52. * @param {any} arg_operands - operation operands.
  53. * @param {object} arg_credentials - session credentials.
  54. *
  55. * @returns {Stream} - service results stream.
  56. */
  57. execute_on_browser()
  58. {
  59. // TODO
  60. }
  61. /**
  62. * Execute operation on remote server.
  63. *
  64. * @param {object} arg_svc_socket - remote service socket.
  65. * @param {string} arg_svc_path - remote service socket.
  66. * @param {any} arg_operands - operation operands.
  67. * @param {object} arg_credentials - session credentials.
  68. * @param {string} arg_session_uid - session unique id.
  69. *
  70. * @returns {Stream} - service results stream.
  71. */
  72. execute_on_server(arg_svc_socket, arg_svc_path, arg_operands, arg_credentials, arg_session_uid)
  73. {
  74. const op_name = this.get_name()
  75. // console.log(context + ':execute_remote:op=%s:path=%s:operands=%o', op_name, arg_svc_path, arg_operands)
  76.  
  77. // DEFINE REQUEST PAYLOAD
  78. const request = {
  79. session_uid:arg_session_uid,
  80. service:this._settings.service.get_name(),
  81. operation:op_name,
  82. operands: T.isArray(arg_operands) ? arg_operands : (arg_operands ? [arg_operands] : []),
  83. credentials:arg_credentials
  84. }
  85. // REPEAT EVERY xxx MILLISECONDS FOR LOCAL SETTINGS
  86. if ( T.isObject(arg_operands) && T.isObject(arg_operands.poller) )
  87. {
  88. const poller_settings = arg_operands.poller
  89. this.create_poller(poller_settings, op_name, arg_credentials, arg_svc_socket, [arg_operands])
  90. }
  91. let stream = Stream.from_emitter_event(arg_svc_socket, op_name)
  92.  
  93. // DEBOUNCE STREAM
  94. if ( T.isObject(arg_operands) && T.isNumber(arg_operands.debounce_milliseconds) )
  95. {
  96. stream = stream.debounce_immediate(arg_operands.debounce_milliseconds)
  97. }
  98.  
  99. stream.on_error(
  100. (error) => {
  101. console.error(context + 'svc=' + arg_svc_path + ':op_name=' + op_name + ':error=', error)
  102. }
  103. )
  104.  
  105. // SEND REQUEST
  106. console.log(context + ':execute_remote:request=', request)
  107. arg_svc_socket.emit(op_name, request)
  108.  
  109. // RETURN RESPONSE STREAM
  110. return stream
  111. }
  112. }