sapling/eden/fs/inodes/InodeDiffCallback.h
Adam Simpkins aa5e6c7295 update license headers in C++ files
Summary:
Update the copyright & license headers in C++ files to reflect the
relicensing to GPLv2

Reviewed By: wez

Differential Revision: D15487078

fbshipit-source-id: 19f24c933a64ecad0d3a692d0f8d2a38b4194b1d
2019-06-19 17:02:45 -07:00

47 lines
1.1 KiB
C++

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#pragma once
#include "eden/fs/utils/PathFuncs.h"
namespace folly {
class exception_wrapper;
}
namespace facebook {
namespace eden {
class TreeEntry;
/**
* A callback that will be invoked with results from a diff operation.
*
* Note that the callback functions may be invoked from multiple threads
* simultaneously, and the callback is responsible for implementing
* synchronization properly.
*/
class InodeDiffCallback {
public:
InodeDiffCallback() {}
virtual ~InodeDiffCallback() {}
virtual void ignoredFile(RelativePathPiece path) = 0;
virtual void untrackedFile(RelativePathPiece path) = 0;
virtual void removedFile(
RelativePathPiece path,
const TreeEntry& sourceControlEntry) = 0;
virtual void modifiedFile(
RelativePathPiece path,
const TreeEntry& sourceControlEntry) = 0;
virtual void diffError(
RelativePathPiece path,
const folly::exception_wrapper& ew) = 0;
};
} // namespace eden
} // namespace facebook