mirror of
https://github.com/NixOS/nix
synced 2025-06-25 10:41:16 +02:00
For example, instead of doing #include "nix/store-config.hh" #include "nix/derived-path.hh" Now do #include "nix/store/config.hh" #include "nix/store/derived-path.hh" This was originally planned in the issue, and also recent requested by Eelco. Most of the change is purely mechanical. There is just one small additional issue. See how, in the example above, we took this opportunity to also turn `<comp>-config.hh` into `<comp>/config.hh`. Well, there was already a `nix/util/config.{cc,hh}`. Even though there is not a public configuration header for libutil (which also would be called `nix/util/config.{cc,hh}`) that's still confusing, To avoid any such confusion, we renamed that to `nix/util/configuration.{cc,hh}`. Finally, note that the libflake headers already did this, so we didn't need to do anything to them. We wouldn't want to mistakenly get `nix/flake/flake/flake.hh`! Progress on #7876
41 lines
1.1 KiB
C++
41 lines
1.1 KiB
C++
#pragma once
|
|
#include "nix/util/fs-sink.hh"
|
|
|
|
namespace nix::test {
|
|
|
|
/**
|
|
* A `FileSystemObjectSink` that traces calls, writing to stderr.
|
|
*/
|
|
class TracingFileSystemObjectSink : public virtual FileSystemObjectSink
|
|
{
|
|
FileSystemObjectSink & sink;
|
|
public:
|
|
TracingFileSystemObjectSink(FileSystemObjectSink & sink)
|
|
: sink(sink)
|
|
{
|
|
}
|
|
|
|
void createDirectory(const CanonPath & path) override;
|
|
|
|
void createRegularFile(const CanonPath & path, std::function<void(CreateRegularFileSink &)> fn) override;
|
|
|
|
void createSymlink(const CanonPath & path, const std::string & target) override;
|
|
};
|
|
|
|
/**
|
|
* A `ExtendedFileSystemObjectSink` that traces calls, writing to stderr.
|
|
*/
|
|
class TracingExtendedFileSystemObjectSink : public TracingFileSystemObjectSink, public ExtendedFileSystemObjectSink
|
|
{
|
|
ExtendedFileSystemObjectSink & sink;
|
|
public:
|
|
TracingExtendedFileSystemObjectSink(ExtendedFileSystemObjectSink & sink)
|
|
: TracingFileSystemObjectSink(sink)
|
|
, sink(sink)
|
|
{
|
|
}
|
|
|
|
void createHardlink(const CanonPath & path, const CanonPath & target) override;
|
|
};
|
|
|
|
}
|