AdbWrapperFactory.js

  1. const _fs_ = require("fs");
  2. const AdbWrapper = require("./AdbWrapper");
  3. var gInstance = null;
  4. /**
  5. * To create AdbWrapper instances : generic or pre-associated to a device
  6. *
  7. * @class
  8. * @author Georges-B. MICHEL
  9. */
  10. class AdbWrapperFactory
  11. {
  12. /**
  13. *
  14. * @param {require('path').Path} pAdbPath Path to ADB binary
  15. * @constructor
  16. */
  17. constructor( pAdbPath){
  18. this.path = pAdbPath;
  19. }
  20. /**
  21. * To check if ADB server is ready
  22. *
  23. * @returns {Boolean} TRUE if ADB is reeady, else FALSE
  24. * @method
  25. */
  26. isReady(){
  27. return (this.path != null) && (_fs_.existsSync(this.path));
  28. }
  29. /**
  30. *
  31. * @param {require('path').Path} pAdbPath Path to ADB binary
  32. * @returns {AdbWrapperFactory} AdbWrapper factory
  33. * @method
  34. * @static
  35. */
  36. static getInstance( pAdbPath, pOverride = false){
  37. if(gInstance == null || pOverride==true){
  38. if(_fs_.existsSync(pAdbPath)){
  39. gInstance = new AdbWrapperFactory( pAdbPath);
  40. }else{
  41. throw new Error("[ADB WRAPPER] ADB binary '"+pAdbPath+"' is not found.");
  42. }
  43. }
  44. return gInstance;
  45. }
  46. /**
  47. * To create a generic AdbWrapper
  48. *
  49. * Commands executed by this wrapper not contain device ID (-u / -s / -e)
  50. *
  51. * @method
  52. * @returns {AdbWrapper} AdbWrapper instance
  53. * @public
  54. * @method
  55. */
  56. newGenericWrapper(){
  57. return new AdbWrapper( gInstance.path);
  58. }
  59. /**
  60. * To create a device-specific AdbWrapper
  61. *
  62. * For each commands issued by this wrapper, the device ID is specified
  63. *
  64. * @method
  65. * @returns {AdbWrapper} AdbWrapper instance
  66. * @public
  67. * @method
  68. */
  69. newSpecificWrapper( pDevice){
  70. return pDevice.bridge.clone();
  71. }
  72. }
  73. module.exports = AdbWrapperFactory;