blob: 6f4f067d9688b2c4b76f48b10a0b1eeee0d50b9d [file] [log] [blame]
// Copyright 2015 Google Inc. All rights reserved
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef FILEUTIL_H_
#define FILEUTIL_H_
#include <errno.h>
#include <memory>
#include <string>
#include <string_view>
#include <unordered_map>
#include <vector>
bool Exists(std::string_view f);
double GetTimestampFromStat(const struct stat& st);
double GetTimestamp(std::string_view f);
enum struct RedirectStderr {
NONE,
STDOUT,
DEV_NULL,
};
int RunCommand(const std::string& shell,
const std::string& shellflag,
const std::string& cmd,
RedirectStderr redirect_stderr,
std::string* out);
std::string GetExecutablePath();
using GlobMap = std::unordered_map<std::string, std::vector<std::string>>;
const GlobMap::mapped_type& Glob(const char* pat);
const GlobMap& GetAllGlobCache();
void ClearGlobCache();
#define HANDLE_EINTR(x) \
({ \
int r; \
do { \
r = (x); \
} while (r == -1 && errno == EINTR); \
r; \
})
#endif // FILEUTIL_H_