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.

62 lines
2.3 KiB

  1. /*
  2. * This program source code file is part of KiCad, a free EDA CAD application.
  3. *
  4. * Copyright (C) 2020 KiCad Developers, see AUTHORS.txt for contributors.
  5. *
  6. * This program is free software: you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License as published by the
  8. * Free Software Foundation, either version 3 of the License, or (at your
  9. * option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License along
  17. * with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #ifndef KICAD_PROJECT_ARCHIVER_H
  20. #define KICAD_PROJECT_ARCHIVER_H
  21. #include <wx/string.h>
  22. class PROJECT;
  23. class REPORTER;
  24. class SETTINGS_MANAGER;
  25. class PROJECT_ARCHIVER
  26. {
  27. public:
  28. PROJECT_ARCHIVER();
  29. ~PROJECT_ARCHIVER() = default;
  30. /**
  31. * Creates an archive of the project
  32. * @param aSrcFile is the full path to the project to be archived
  33. * @param aDestFile is the full path to the zip file to be created
  34. * @param aReporter is used to report status
  35. * @param aVerbose controls the verbosity of reported status messages
  36. * @param aIncludeExtraFiles if true will archive legacy and output files
  37. * @return true if the archive was created successfully
  38. */
  39. bool Archive( const wxString& aSrcDir, const wxString& aDestFile, REPORTER& aReporter,
  40. bool aVerbose = true, bool aIncludeExtraFiles = false );
  41. /**
  42. * Extracts an archive of the current project over existing files
  43. * Warning: this will overwrite files in the project directory. Use with care. The caller is
  44. * responsible for doing any reloading of state after taking this action.
  45. * @param aSrcFile is the full path to the archive to extract
  46. * @param aDestDir is the target directory to unarchive to
  47. * @param aReporter is used to report status
  48. * @return true if the archive was created successfully
  49. */
  50. bool Unarchive( const wxString& aSrcFile, const wxString& aDestDir, REPORTER& aReporter );
  51. };
  52. #endif // KICAD_PROJECT_ARCHIVER_H