2016-08-01 05:25:37 +00:00
|
|
|
/*
|
2017-02-02 10:06:28 +00:00
|
|
|
This file is part of solidity.
|
2016-08-01 05:25:37 +00:00
|
|
|
|
2017-02-02 10:06:28 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2016-08-01 05:25:37 +00:00
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
2017-02-02 10:06:28 +00:00
|
|
|
solidity is distributed in the hope that it will be useful,
|
2016-08-01 05:25:37 +00:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2017-02-02 10:06:28 +00:00
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
2016-08-01 05:25:37 +00:00
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2016-08-01 05:25:37 +00:00
|
|
|
/** @file CommonIO.cpp
|
|
|
|
* @author Gav Wood <i@gavwood.com>
|
|
|
|
* @date 2014
|
|
|
|
*/
|
|
|
|
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/CommonIO.h>
|
|
|
|
#include <libsolutil/Assertions.h>
|
2019-03-28 12:07:52 +00:00
|
|
|
|
2016-08-01 05:25:37 +00:00
|
|
|
#include <fstream>
|
|
|
|
#if defined(_WIN32)
|
|
|
|
#include <windows.h>
|
|
|
|
#else
|
2018-03-14 18:15:48 +00:00
|
|
|
#include <unistd.h>
|
2016-08-01 05:25:37 +00:00
|
|
|
#include <termios.h>
|
|
|
|
#endif
|
2016-11-16 10:16:01 +00:00
|
|
|
|
2016-08-01 05:25:37 +00:00
|
|
|
using namespace std;
|
2019-12-11 16:31:36 +00:00
|
|
|
using namespace solidity::util;
|
2016-08-01 05:25:37 +00:00
|
|
|
|
2017-08-29 00:01:47 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
2020-02-17 17:44:39 +00:00
|
|
|
template <typename T>
|
2021-07-13 07:12:04 +00:00
|
|
|
inline T readFile(boost::filesystem::path const& _file)
|
2016-08-01 05:25:37 +00:00
|
|
|
{
|
2021-07-13 07:12:04 +00:00
|
|
|
assertThrow(boost::filesystem::exists(_file), FileNotFound, _file.string());
|
2021-06-25 12:21:44 +00:00
|
|
|
|
|
|
|
// ifstream does not always fail when the path leads to a directory. Instead it might succeed
|
|
|
|
// with tellg() returning a nonsensical value so that std::length_error gets raised in resize().
|
2021-07-13 07:12:04 +00:00
|
|
|
assertThrow(boost::filesystem::is_regular_file(_file), NotAFile, _file.string());
|
2021-06-25 12:21:44 +00:00
|
|
|
|
2020-02-17 17:44:39 +00:00
|
|
|
T ret;
|
|
|
|
size_t const c_elementSize = sizeof(typename T::value_type);
|
2021-07-13 07:12:04 +00:00
|
|
|
std::ifstream is(_file.string(), std::ifstream::binary);
|
2021-06-25 12:21:44 +00:00
|
|
|
|
|
|
|
// Technically, this can still fail even though we checked above because FS content can change at any time.
|
2021-07-13 07:12:04 +00:00
|
|
|
assertThrow(is, FileNotFound, _file.string());
|
2016-08-01 05:25:37 +00:00
|
|
|
|
|
|
|
// get length of file:
|
|
|
|
is.seekg(0, is.end);
|
|
|
|
streamoff length = is.tellg();
|
|
|
|
if (length == 0)
|
|
|
|
return ret; // do not read empty file (MSVC does not like it)
|
|
|
|
is.seekg(0, is.beg);
|
|
|
|
|
2020-06-02 13:40:27 +00:00
|
|
|
ret.resize((static_cast<size_t>(length) + c_elementSize - 1) / c_elementSize);
|
2019-12-12 23:39:29 +00:00
|
|
|
is.read(const_cast<char*>(reinterpret_cast<char const*>(ret.data())), static_cast<streamsize>(length));
|
2016-08-01 05:25:37 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-08-29 00:01:47 +00:00
|
|
|
}
|
|
|
|
|
2021-07-13 07:12:04 +00:00
|
|
|
string solidity::util::readFileAsString(boost::filesystem::path const& _file)
|
2016-08-01 05:25:37 +00:00
|
|
|
{
|
2017-10-18 11:34:29 +00:00
|
|
|
return readFile<string>(_file);
|
2016-08-01 05:25:37 +00:00
|
|
|
}
|
|
|
|
|
2021-06-16 19:03:07 +00:00
|
|
|
string solidity::util::readUntilEnd(istream& _stdin)
|
2017-10-18 11:54:47 +00:00
|
|
|
{
|
2021-07-03 17:30:44 +00:00
|
|
|
ostringstream ss;
|
|
|
|
ss << _stdin.rdbuf();
|
|
|
|
return ss.str();
|
2017-10-18 11:54:47 +00:00
|
|
|
}
|
|
|
|
|
2018-03-14 18:15:48 +00:00
|
|
|
#if defined(_WIN32)
|
|
|
|
class DisableConsoleBuffering
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DisableConsoleBuffering()
|
|
|
|
{
|
|
|
|
m_stdin = GetStdHandle(STD_INPUT_HANDLE);
|
|
|
|
GetConsoleMode(m_stdin, &m_oldMode);
|
|
|
|
SetConsoleMode(m_stdin, m_oldMode & (~(ENABLE_ECHO_INPUT | ENABLE_LINE_INPUT)));
|
|
|
|
}
|
|
|
|
~DisableConsoleBuffering()
|
|
|
|
{
|
|
|
|
SetConsoleMode(m_stdin, m_oldMode);
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
HANDLE m_stdin;
|
|
|
|
DWORD m_oldMode;
|
|
|
|
};
|
|
|
|
#else
|
|
|
|
class DisableConsoleBuffering
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DisableConsoleBuffering()
|
|
|
|
{
|
|
|
|
tcgetattr(0, &m_termios);
|
2020-06-02 13:40:27 +00:00
|
|
|
m_termios.c_lflag &= ~tcflag_t(ICANON);
|
|
|
|
m_termios.c_lflag &= ~tcflag_t(ECHO);
|
2018-03-14 18:15:48 +00:00
|
|
|
m_termios.c_cc[VMIN] = 1;
|
|
|
|
m_termios.c_cc[VTIME] = 0;
|
|
|
|
tcsetattr(0, TCSANOW, &m_termios);
|
|
|
|
}
|
|
|
|
~DisableConsoleBuffering()
|
|
|
|
{
|
|
|
|
m_termios.c_lflag |= ICANON;
|
|
|
|
m_termios.c_lflag |= ECHO;
|
|
|
|
tcsetattr(0, TCSADRAIN, &m_termios);
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
struct termios m_termios;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
int solidity::util::readStandardInputChar()
|
2018-03-14 18:15:48 +00:00
|
|
|
{
|
|
|
|
DisableConsoleBuffering disableConsoleBuffering;
|
|
|
|
return cin.get();
|
|
|
|
}
|
2018-04-05 12:25:14 +00:00
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
string solidity::util::absolutePath(string const& _path, string const& _reference)
|
2018-06-27 16:08:49 +00:00
|
|
|
{
|
|
|
|
boost::filesystem::path p(_path);
|
|
|
|
// Anything that does not start with `.` is an absolute path.
|
|
|
|
if (p.begin() == p.end() || (*p.begin() != "." && *p.begin() != ".."))
|
|
|
|
return _path;
|
|
|
|
boost::filesystem::path result(_reference);
|
2021-02-03 14:54:45 +00:00
|
|
|
|
|
|
|
// If filename is "/", then remove_filename() throws.
|
|
|
|
// See: https://github.com/boostorg/filesystem/issues/176
|
|
|
|
if (result.filename() != boost::filesystem::path("/"))
|
|
|
|
result.remove_filename();
|
2018-06-27 16:08:49 +00:00
|
|
|
for (boost::filesystem::path::iterator it = p.begin(); it != p.end(); ++it)
|
|
|
|
if (*it == "..")
|
|
|
|
result = result.parent_path();
|
|
|
|
else if (*it != ".")
|
|
|
|
result /= *it;
|
|
|
|
return result.generic_string();
|
|
|
|
}
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
string solidity::util::sanitizePath(string const& _path) {
|
2018-06-27 16:08:49 +00:00
|
|
|
return boost::filesystem::path(_path).generic_string();
|
|
|
|
}
|