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
|
|
|
*/
|
|
|
|
/** @file CommonIO.h
|
|
|
|
* @author Gav Wood <i@gavwood.com>
|
|
|
|
* @date 2014
|
|
|
|
*
|
|
|
|
* File & stream I/O routines.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-03-28 12:07:52 +00:00
|
|
|
#include <libdevcore/Common.h>
|
|
|
|
#include <boost/filesystem.hpp>
|
2016-08-01 05:25:37 +00:00
|
|
|
#include <sstream>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
|
|
|
|
/// Retrieve and returns the contents of the given file as a std::string.
|
|
|
|
/// If the file doesn't exist or isn't readable, returns an empty container / bytes.
|
2017-10-18 11:34:29 +00:00
|
|
|
std::string readFileAsString(std::string const& _file);
|
2016-08-01 05:25:37 +00:00
|
|
|
|
2017-10-18 11:54:47 +00:00
|
|
|
/// Retrieve and returns the contents of standard input (until EOF).
|
|
|
|
std::string readStandardInput();
|
|
|
|
|
2018-03-14 18:15:48 +00:00
|
|
|
/// Retrieve and returns a character from standard input (without waiting for EOL).
|
|
|
|
int readStandardInputChar();
|
|
|
|
|
2016-08-01 05:25:37 +00:00
|
|
|
/// Converts arbitrary value to string representation using std::stringstream.
|
|
|
|
template <class _T>
|
|
|
|
std::string toString(_T const& _t)
|
|
|
|
{
|
|
|
|
std::ostringstream o;
|
|
|
|
o << _t;
|
|
|
|
return o.str();
|
|
|
|
}
|
|
|
|
|
2018-06-27 16:08:49 +00:00
|
|
|
/// @returns the absolute path corresponding to @a _path relative to @a _reference.
|
|
|
|
std::string absolutePath(std::string const& _path, std::string const& _reference);
|
|
|
|
|
|
|
|
/// Helper function to return path converted strings.
|
|
|
|
std::string sanitizePath(std::string const& _path);
|
|
|
|
|
2016-08-01 05:25:37 +00:00
|
|
|
}
|