sapling/eden/fs/win/utils/Subprocess.h
Puneet Kaushik 3878986e2c Run hg debugedenimporthelper with CWD as repository
Summary: hg debugedenimporthelper should either have the repo path as argument or the current working directory should be inside a repo. Setting the current working directory for the process.

Reviewed By: strager

Differential Revision: D16565042

fbshipit-source-id: d6e826bebf58fd58f5250e6c477849ca147628c8
2019-08-01 12:10:03 -07:00

38 lines
792 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 <memory>
#include <string>
#include <vector>
namespace facebook {
namespace eden {
class Pipe;
class Subprocess {
public:
Subprocess();
Subprocess(const std::vector<std::string>& cmd);
~Subprocess();
void createSubprocess(
const std::vector<std::string>& cmd,
const char* currentDir = nullptr,
std::unique_ptr<Pipe> childInPipe = nullptr,
std::unique_ptr<Pipe> childOutPipe = nullptr);
std::unique_ptr<Pipe> childInPipe_;
std::unique_ptr<Pipe> childOutPipe_;
private:
const int bufferSize_ = 4096;
};
} // namespace eden
} // namespace facebook