Reference Source

js/topology/define/topology_define_datasource.js

  1. // COMMON IMPORTS
  2. import TopologyDefineItem from './topology_define_item'
  3.  
  4.  
  5. let context = 'common/topology/define/topology_define_datasource'
  6.  
  7.  
  8.  
  9. /**
  10. * @file Database class: describe a datasource topology item.
  11. *
  12. * @author Luc BORIES
  13. *
  14. * @license Apache-2.0
  15. */
  16. export default class TopologyDefineDatasource extends TopologyDefineItem
  17. {
  18. /**
  19. * Create a TopologyDefineDatasource instance.
  20. * @class TopologyDefineDatasource
  21. * @extends TopologyDefineItem
  22. *
  23. * SETTINGS FORMAT:
  24. * "datasources":
  25. * "datasourceA":...
  26. * "datasourceB":...
  27. * }
  28. *
  29. * @param {string} arg_name - instance name.
  30. * @param {object} arg_settings - instance settings map.
  31. * @param {string} arg_log_context - trace context string.
  32. *
  33. * @returns {nothing}
  34. */
  35. constructor(arg_name, arg_settings, arg_log_context)
  36. {
  37. const log_context = arg_log_context ? arg_log_context : context
  38. super(arg_name, arg_settings, 'TopologyDefineDatasource', log_context)
  39. this.is_topology_define_datasource = true
  40.  
  41. this.topology_type = 'datasources'
  42.  
  43. this.db_engine = this.get_setting('engine', undefined)
  44. this.db_host = this.get_setting('host', 'localhost')
  45. this.db_port = this.get_setting('port', undefined)
  46. this.db_name = this.get_setting('database', undefined)
  47. this.db_charset = this.get_setting('charset', 'utf8')
  48. this.db_options = this.get_setting('options', undefined)
  49. this.db_user = this.get_setting('user', undefined)
  50. this.db_password = this.get_setting('password', undefined)
  51.  
  52. this.info('Datasource is created')
  53. }
  54. }