You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UpdateComponent.java 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /*
  2. * Copyright (c) 2006-2017 DMDirc Developers
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
  5. * documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
  6. * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
  7. * permit persons to whom the Software is furnished to do so, subject to the following conditions:
  8. *
  9. * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
  10. * Software.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  13. * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
  14. * OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
  15. * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  16. */
  17. package com.dmdirc.updater;
  18. import java.nio.file.Path;
  19. /**
  20. * The update component interface defines the methods needed to be implemented by updatable
  21. * components. The components handle determining the current version and installing updated files.
  22. */
  23. public interface UpdateComponent {
  24. /**
  25. * Retrieves the name of this component.
  26. *
  27. * @return This component's name
  28. */
  29. String getName();
  30. /**
  31. * A user-friendly name displayed for the component.
  32. *
  33. * @return This component's user-friendly name
  34. */
  35. String getFriendlyName();
  36. /**
  37. * A user-friendly version displayed for the component.
  38. *
  39. * @return This component's user-friendly version
  40. *
  41. * @since 0.6
  42. */
  43. String getFriendlyVersion();
  44. /**
  45. * Retrieves the currently installed version of this component.
  46. *
  47. * @return This component's current version
  48. *
  49. * @since 0.6.3m1
  50. */
  51. Version getVersion();
  52. /**
  53. * Provisionally indicates if this component will require a client restart. The result of
  54. * {@link #doInstall(Path)} ultimately decides if the client requires a restart.
  55. *
  56. * @return True if the client requires a restart
  57. *
  58. * @since 0.6.4
  59. */
  60. boolean requiresRestart();
  61. /**
  62. * Indicates if this component will require a manual install.
  63. *
  64. * @return True if the component requires a manual install
  65. *
  66. * @since 0.6.4
  67. */
  68. boolean requiresManualInstall();
  69. /**
  70. * Generates manual installation instructions given that the update has been downloaded to the
  71. * specified temporary path.
  72. *
  73. * @param path The full path to the downloaded data
  74. *
  75. * @return Return manual instructions for this plugin
  76. *
  77. * @since 0.6.4
  78. */
  79. String getManualInstructions(final Path path);
  80. /**
  81. * Installs the updated version of this component. After the update has been installed, the
  82. * component is responsible for deleting the specified file.
  83. *
  84. * @param path The full path to the downloaded data
  85. *
  86. * @return True if a client restart is needed, false otherwise
  87. *
  88. * @throws java.lang.Exception If any error occurred
  89. */
  90. boolean doInstall(Path path) throws Exception; //NOPMD
  91. }