summaryrefslogtreecommitdiff
path: root/Source/cmFilePathUuid.h
blob: 42e89b10651b9af2ab336cef530b8fdd43ad28a8 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*============================================================================
  CMake - Cross Platform Makefile Generator
  Copyright 2016 Sebastian Holtermann (sebholt@xwmw.org)

  Distributed under the OSI-approved BSD License (the "License");
  see accompanying file Copyright.txt for details.

  This software is distributed WITHOUT ANY WARRANTY; without even the
  implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  See the License for more information.
============================================================================*/

#ifndef cmFilePathUuid_h
#define cmFilePathUuid_h

#include "cmStandardIncludes.h"

#include <string>
#include <utility>

class cmMakefile;

/** \class cmFilePathUuid
 * @brief Generates a unique pathless file name with a checksum component
 *        calculated from the file path.
 *
 * The checksum is calculated from the relative file path to the
 * closest known project directory. This guarantees reproducibility
 * when source and build directory differ e.g. for different project
 * build directories.
 */
class cmFilePathUuid
{
public:
  /// Maximum number of characters to use from the file name
  static const size_t partLengthName = 14;
  /// Maximum number of characters to use from the path checksum
  static const size_t partLengthCheckSum = 14;

  /// @brief Initilizes the parent directories from a makefile
  cmFilePathUuid(cmMakefile* makefile);

  /// @brief Initilizes the parent directories manually
  cmFilePathUuid(const std::string& currentSrcDir,
                 const std::string& currentBinDir,
                 const std::string& projectSrcDir,
                 const std::string& projectBinDir);

  /* @brief Calculates and returns the uuid for a file path
   *
   * @arg outputPrefix optional string to prepend to the result
   * @arg outputSuffix optional string to append to the result
   */
  std::string get(const std::string& filePath, const char* outputPrefix = NULL,
                  const char* outputSuffix = NULL);

private:
  void initParentDirs(const std::string& currentSrcDir,
                      const std::string& currentBinDir,
                      const std::string& projectSrcDir,
                      const std::string& projectBinDir);

  /// Returns the relative path and the parent directory key string (seed)
  void GetRelPathSeed(const std::string& filePath, std::string& sourceRelPath,
                      std::string& sourceRelSeed);

  std::string GetChecksumString(const std::string& sourceFilename,
                                const std::string& sourceRelPath,
                                const std::string& sourceRelSeed);

  /// Size of the parent directory list
  static const size_t numParentDirs = 4;
  /// List of (directory name, seed name) pairs
  std::pair<std::string, std::string> parentDirs[numParentDirs];
};

#endif