LLVM 22.0.0git
Caching.h
Go to the documentation of this file.
1//===- Caching.h - LLVM Local File Cache ------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file defines the CachedFileStream and the localCache function, which
10// simplifies caching files on the local filesystem in a directory whose
11// contents are managed by a CachePruningPolicy.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_SUPPORT_CACHING_H
16#define LLVM_SUPPORT_CACHING_H
17
19#include "llvm/Support/Error.h"
21
22namespace llvm {
23
24/// This class wraps an output stream for a file. Most clients should just be
25/// able to return an instance of this base class from the stream callback, but
26/// if a client needs to perform some action after the stream is written to,
27/// that can be done by deriving from this class and overriding the destructor
28/// or the commit() method.
30public:
31 CachedFileStream(std::unique_ptr<raw_pwrite_stream> OS,
32 std::string OSPath = "")
33 : OS(std::move(OS)), ObjectPathName(OSPath) {}
34
35 /// Must be called exactly once after the writes to OS have been completed
36 /// but before the CachedFileStream object is destroyed.
37 virtual Error commit() {
38 if (Committed)
39 return createStringError(make_error_code(std::errc::invalid_argument),
40 Twine("CacheStream already committed."));
41 Committed = true;
42
43 return Error::success();
44 }
45
46 bool Committed = false;
47 std::unique_ptr<raw_pwrite_stream> OS;
48 std::string ObjectPathName;
50 if (!Committed)
51 report_fatal_error("CachedFileStream was not committed.\n");
52 }
53};
54
55/// This type defines the callback to add a file that is generated on the fly.
56///
57/// Stream callbacks must be thread safe.
58using AddStreamFn = std::function<Expected<std::unique_ptr<CachedFileStream>>(
59 unsigned Task, const Twine &ModuleName)>;
60
61/// This is a callable that manages file caching operations. It accepts a task
62/// ID \p Task, a unique key \p Key, and a module name \p ModuleName, and
63/// returns AddStreamFn(). This function determines whether a cache hit or miss
64/// occurs and handles the appropriate actions.
65using FileCacheFunction = std::function<Expected<AddStreamFn>(
66 unsigned Task, StringRef Key, const Twine &ModuleName)>;
67
68/// This type represents a file cache system that manages caching of files.
69/// It encapsulates a caching function and the directory path where the cache is
70/// stored. To request an item from the cache, pass a unique string as the Key.
71/// For hits, the cached file will be added to the link and this function will
72/// return AddStreamFn(). For misses, the cache will return a stream callback
73/// which must be called at most once to produce content for the stream. The
74/// file stream produced by the stream callback will add the file to the link
75/// after the stream is written to. ModuleName is the unique module identifier
76/// for the bitcode module the cache is being checked for.
77///
78/// Clients generally look like this:
79///
80/// if (AddStreamFn AddStream = Cache(Task, Key, ModuleName))
81/// ProduceContent(AddStream);
82///
83/// CacheDirectoryPath stores the directory path where cached files are kept.
84struct FileCache {
85 FileCache(FileCacheFunction CacheFn, const std::string &DirectoryPath)
86 : CacheFunction(std::move(CacheFn)), CacheDirectoryPath(DirectoryPath) {}
87 FileCache() = default;
88
90 const Twine &ModuleName) {
91 assert(isValid() && "Invalid cache function");
92 return CacheFunction(Task, Key, ModuleName);
93 }
94 const std::string &getCacheDirectoryPath() const {
95 return CacheDirectoryPath;
96 }
97 bool isValid() const { return static_cast<bool>(CacheFunction); }
98
99private:
100 FileCacheFunction CacheFunction = nullptr;
101 std::string CacheDirectoryPath;
102};
103
104/// This type defines the callback to add a pre-existing file (e.g. in a cache).
105///
106/// Buffer callbacks must be thread safe.
107using AddBufferFn = std::function<void(unsigned Task, const Twine &ModuleName,
108 std::unique_ptr<MemoryBuffer> MB)>;
109
110/// Create a local file system cache which uses the given cache name, temporary
111/// file prefix, cache directory and file callback. This function does not
112/// immediately create the cache directory if it does not yet exist; this is
113/// done lazily the first time a file is added. The cache name appears in error
114/// messages for errors during caching. The temporary file prefix is used in the
115/// temporary file naming scheme used when writing files atomically.
117 const Twine &CacheNameRef, const Twine &TempFilePrefixRef,
118 const Twine &CacheDirectoryPathRef,
119 AddBufferFn AddBuffer = [](size_t Task, const Twine &ModuleName,
120 std::unique_ptr<MemoryBuffer> MB) {});
121} // namespace llvm
122
123#endif
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
#define LLVM_ABI
Definition Compiler.h:213
CachedFileStream(std::unique_ptr< raw_pwrite_stream > OS, std::string OSPath="")
Definition Caching.h:31
std::string ObjectPathName
Definition Caching.h:48
virtual ~CachedFileStream()
Definition Caching.h:49
std::unique_ptr< raw_pwrite_stream > OS
Definition Caching.h:47
virtual Error commit()
Must be called exactly once after the writes to OS have been completed but before the CachedFileStrea...
Definition Caching.h:37
Lightweight error class with error context and mandatory checking.
Definition Error.h:159
static ErrorSuccess success()
Create a success value.
Definition Error.h:336
Tagged union holding either a T or a Error.
Definition Error.h:485
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
This is an optimization pass for GlobalISel generic memory operations.
std::error_code make_error_code(BitcodeError E)
Error createStringError(std::error_code EC, char const *Fmt, const Ts &... Vals)
Create formatted StringError object.
Definition Error.h:1305
std::function< Expected< AddStreamFn >( unsigned Task, StringRef Key, const Twine &ModuleName)> FileCacheFunction
This is a callable that manages file caching operations.
Definition Caching.h:65
std::function< void(unsigned Task, const Twine &ModuleName, std::unique_ptr< MemoryBuffer > MB)> AddBufferFn
This type defines the callback to add a pre-existing file (e.g.
Definition Caching.h:107
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
Definition Error.cpp:167
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1867
std::function< Expected< std::unique_ptr< CachedFileStream > >( unsigned Task, const Twine &ModuleName)> AddStreamFn
This type defines the callback to add a file that is generated on the fly.
Definition Caching.h:58
LLVM_ABI Expected< FileCache > localCache(const Twine &CacheNameRef, const Twine &TempFilePrefixRef, const Twine &CacheDirectoryPathRef, AddBufferFn AddBuffer=[](size_t Task, const Twine &ModuleName, std::unique_ptr< MemoryBuffer > MB) {})
Create a local file system cache which uses the given cache name, temporary file prefix,...
Definition Caching.cpp:29
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:867
Expected< AddStreamFn > operator()(unsigned Task, StringRef Key, const Twine &ModuleName)
Definition Caching.h:89
FileCache()=default
const std::string & getCacheDirectoryPath() const
Definition Caching.h:94
bool isValid() const
Definition Caching.h:97
FileCache(FileCacheFunction CacheFn, const std::string &DirectoryPath)
Definition Caching.h:85