aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-purge.hxx
blob: cd0fdb35540a267e71cc438e6ee9aa8bb60d2939 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// file      : bpkg/pkg-purge.hxx -*- C++ -*-
// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#ifndef BPKG_PKG_PURGE_HXX
#define BPKG_PKG_PURGE_HXX

#include <bpkg/types.hxx>
#include <bpkg/forward.hxx> // transaction, selected_package
#include <bpkg/utility.hxx>

#include <bpkg/pkg-purge-options.hxx>

namespace bpkg
{
  int
  pkg_purge (const pkg_purge_options&, cli::scanner& args);

  // Purge the package, remove it from the database, and commit the
  // transaction. If this fails, set the package state to broken.
  //
  void
  pkg_purge (const dir_path& configuration,
             transaction&,
             const shared_ptr<selected_package>&,
             bool simulate);

  // Remove package's filesystem objects (the source directory and, if
  // the archive argument is true, the package archive). If this fails,
  // set the package state to broken, commit the transaction, and fail.
  //
  void
  pkg_purge_fs (const dir_path& configuration,
                transaction&,
                const shared_ptr<selected_package>&,
                bool simulate,
                bool archive = true);
}

#endif // BPKG_PKG_PURGE_HXX