sapling/eden/fs/utils/XAttr.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

38 lines
972 B
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 <errno.h>
#include <folly/String.h>
#include <sys/xattr.h>
namespace facebook {
namespace eden {
constexpr int kENOATTR =
#ifndef ENOATTR
ENODATA // Linux
#else
ENOATTR
#endif
;
constexpr folly::StringPiece kXattrSha1{"user.sha1"};
std::string fgetxattr(int fd, folly::StringPiece name);
void fsetxattr(int fd, folly::StringPiece name, folly::StringPiece value);
/// like getxattr(2), but portable. This is primarily to facilitate our
/// integration tests.
std::string getxattr(folly::StringPiece path, folly::StringPiece name);
/// like listxattr(2), but more easily consumable from C++.
// This is primarily to facilitate our integration tests.
std::vector<std::string> listxattr(folly::StringPiece path);
} // namespace eden
} // namespace facebook