watchman/QueryableView.h (45 lines of code) (raw):
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#pragma once
#include <folly/futures/Future.h>
#include <vector>
#include "watchman/Clock.h"
#include "watchman/CookieSync.h"
#include "watchman/PerfSample.h"
#include "watchman/watchman_string.h"
namespace watchman {
struct Query;
struct QueryContext;
class Root;
class SCM;
class QueryableView : public std::enable_shared_from_this<QueryableView> {
public:
/**
* Set if this view requires crawling the filesystem.
*/
const bool requiresCrawl;
explicit QueryableView(bool requiresCrawl) : requiresCrawl{requiresCrawl} {}
virtual ~QueryableView();
/**
* Perform a time-based (since) query and emit results to the supplied
* query context.
*/
virtual void timeGenerator(const Query* query, QueryContext* ctx) const;
/**
* Walks files that match the supplied set of paths.
*/
virtual void pathGenerator(const Query* query, QueryContext* ctx) const;
virtual void globGenerator(const Query* query, QueryContext* ctx) const;
virtual void allFilesGenerator(const Query* query, QueryContext* ctx) const;
virtual ClockPosition getMostRecentRootNumberAndTickValue() const = 0;
virtual w_string getCurrentClockString() const = 0;
virtual uint32_t getLastAgeOutTickValue() const;
virtual std::chrono::system_clock::time_point getLastAgeOutTimeStamp() const;
virtual void ageOut(PerfSample& sample, std::chrono::seconds minAge);
virtual folly::SemiFuture<folly::Unit> waitForSettle(
std::chrono::milliseconds settle_period) = 0;
virtual CookieSync::SyncResult syncToNow(
const std::shared_ptr<Root>& root,
std::chrono::milliseconds timeout) = 0;
// Specialized query function that is used to test whether
// version control files exist as part of some settling handling.
// It should query the view and return true if any of the named
// files current exist in the view.
virtual bool doAnyOfTheseFilesExist(
const std::vector<w_string>& fileNames) const = 0;
bool isVCSOperationInProgress() const;
/**
* Start up any helper threads.
*/
virtual void startThreads(const std::shared_ptr<Root>& /*root*/) {}
/**
* Request that helper threads shutdown (but does not join them).
*/
virtual void stopThreads() {}
/**
* Request that helper threads wake up and re-evaluate their state.
*/
virtual void wakeThreads() {}
virtual const w_string& getName() const = 0;
virtual json_ref getWatcherDebugInfo() const = 0;
virtual void clearWatcherDebugInfo() = 0;
FOLLY_NODISCARD virtual folly::SemiFuture<folly::Unit>
waitUntilReadyToQuery() = 0;
// Return the SCM detected for this watched root
virtual SCM* getSCM() const = 0;
};
} // namespace watchman