summaryrefslogtreecommitdiff
path: root/elpa/irony-20220110.849/server/src/support/TemporaryFile.h
blob: 5bf77f464e1748542540b26d9ec60e8a7724adbd (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
/**-*-C++-*-
 * \file
 * \author Guillaume Papin <guillaume.papin@epitech.eu>
 *
 * \brief Not the best piece of code out there.
 *
 * This file is distributed under the GNU General Public License. See
 * COPYING for details.
 */

#ifndef IRONY_MODE_SERVER_SUPPORT_TEMPORARY_FILE_H_
#define IRONY_MODE_SERVER_SUPPORT_TEMPORARY_FILE_H_

#include <iosfwd>
#include <memory>
#include <string>

class TemporaryFile {
  enum {
    // if we can't create the temp file, exits.
    MAX_ATTEMPS = 25
  };

public:
  TemporaryFile(const std::string &prefix, const std::string &suffix = "");
  ~TemporaryFile();

  /// Returns the path of this temporary filename
  const std::string &getPath();

private:
  std::string pathOrPattern_;
  std::unique_ptr<std::fstream> openedFile_;
};

#endif // IRONY_MODE_SERVER_SUPPORT_TEMPORARY_FILE_H_