2015-01-02 17:52:46 +01:00
// Copyright (c) 2014-2015, The Monero Project
2014-07-23 15:03:52 +02:00
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without modification, are
// permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of
// conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
// of conditions and the following disclaimer in the documentation and/or other
// materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its contributors may be
// used to endorse or promote products derived from this software without specific
// prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
2014-03-03 23:07:58 +01:00
# include "command_line.h"
2014-06-09 00:12:38 +02:00
# include "string_tools.h"
2014-03-03 23:07:58 +01:00
namespace command_line
{
2014-06-09 00:12:38 +02:00
std : : string input_line ( const std : : string & prompt )
{
std : : cout < < prompt ;
std : : string buf ;
std : : getline ( std : : cin , buf ) ;
return epee : : string_tools : : trim ( buf ) ;
}
2014-03-03 23:07:58 +01:00
const arg_descriptor < bool > arg_help = { " help " , " Produce help message " } ;
const arg_descriptor < bool > arg_version = { " version " , " Output version information " } ;
const arg_descriptor < std : : string > arg_data_dir = { " data-dir " , " Specify data directory " } ;
2014-09-08 23:30:50 +02:00
const arg_descriptor < std : : string > arg_testnet_data_dir = { " testnet-data-dir " , " Specify testnet data directory " } ;
2015-04-01 19:00:45 +02:00
const arg_descriptor < bool > arg_test_drop_download = { " test-drop-download " , " For net tests: in download, discard ALL blocks instead checking/saving them (very fast) " } ;
const arg_descriptor < uint64_t > arg_test_drop_download_height = { " test-drop-download-height " , " Like test-drop-download but disards only after around certain height " , 0 } ;
const arg_descriptor < int > arg_test_dbg_lock_sleep = { " test-dbg-lock-sleep " , " Sleep time in ms, defaults to 0 (off), used to debug before/after locking mutex. Values 100 to 1000 are good for tests. " } ;
2014-03-03 23:07:58 +01:00
}