sapling/eden/fs/inodes/InodeDiffCallback.h
Chad Austin 8b9261f2a1 run clang-format across all C++ files
Summary:
Per discussion with bolinfest, this brings Eden in line with clang-format.

This diff was generated with `find . \( -iname '*.cpp' -o -iname '*.h' \) -exec bash -c "yes | arc lint {}" \;`

Reviewed By: bolinfest

Differential Revision: D6232695

fbshipit-source-id: d54942bf1c69b5b0dcd4df629f1f2d5538c9e28c
2017-11-03 16:02:03 -07:00

50 lines
1.3 KiB
C++

/*
* Copyright (c) 2004-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*/
#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