mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-28 08:59:37 -05:00
8fc3917c4b
- added profile import/creation - fixed leaking file descriptors - added upload handler for small files - fixed terminal thread - removed some unused parameter warnings git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8485 b45a01b8-16f6-495d-af2f-9b41ad6348cc
325 lines
10 KiB
C++
325 lines
10 KiB
C++
#include "TerminalApiClient.h"
|
|
|
|
#include <unistd.h>
|
|
#include <sstream>
|
|
|
|
#include <api/JsonStream.h>
|
|
|
|
// windows has _kbhit() and _getch() fr non-blocking keaboard read.
|
|
// linux does not have these functions.
|
|
// the TerminalInput class provides both for win and linux
|
|
// only use a single instance of this class in the whole program!
|
|
// or destroy the classes in the inverse order how the where created
|
|
// else terminal echo will not be restored
|
|
// the point of this class is:
|
|
// - it configures the terminal in the constructor
|
|
// - it restores the terminal in the destructor
|
|
#ifdef _WIN32
|
|
#include <conio.h>
|
|
#else // LINUX
|
|
#include <termios.h>
|
|
#include <stdio.h>
|
|
#include <sys/ioctl.h>
|
|
#endif
|
|
#define TERMINALINPUT_DEBUG
|
|
class TerminalInput
|
|
{
|
|
public:
|
|
TerminalInput()
|
|
{
|
|
#ifndef _WIN32
|
|
/*
|
|
Q: Is there a getch() (from conio) equivalent on Linux/UNIX?
|
|
|
|
A: No. But it's easy to emulate:
|
|
|
|
This code sets the terminal into non-canonical mode, thus disabling line buffering, reads a character from stdin and then restores the old terminal status. For more info on what else you can do with termios, see ``man termios''.
|
|
There's also a ``getch()'' function in the curses library, but it is /not/ equivalent to the DOS ``getch()'' and may only be used within real curses applications (ie: it only works in curses ``WINDOW''s).
|
|
|
|
http://cboard.cprogramming.com/faq-board/27714-faq-there-getch-conio-equivalent-linux-unix.html
|
|
*/
|
|
tcgetattr(STDIN_FILENO, &mOldTermSettings);
|
|
termios term = mOldTermSettings;
|
|
term.c_lflag &= ~ICANON;
|
|
term.c_lflag &= ~ECHO; // disable echo
|
|
tcsetattr(STDIN_FILENO, TCSANOW, &term);
|
|
setbuf(stdin, NULL);
|
|
#endif
|
|
}
|
|
~TerminalInput()
|
|
{
|
|
#ifndef _WIN32
|
|
// restore terminal settings
|
|
tcsetattr(STDIN_FILENO, TCSANOW, &mOldTermSettings);
|
|
#ifdef TERMINALINPUT_DEBUG
|
|
std::cerr << "Terminal restored" << std::endl;
|
|
#endif
|
|
#endif
|
|
}
|
|
|
|
// returns a non zero value if a key was pressed
|
|
int kbhit()
|
|
{
|
|
#ifdef _WIN32
|
|
return _kbhit();
|
|
#else // LINUX
|
|
int bytesWaiting;
|
|
ioctl(STDIN_FILENO, FIONREAD, &bytesWaiting);
|
|
return bytesWaiting;
|
|
#endif
|
|
}
|
|
// return the pressed key
|
|
int getch()
|
|
{
|
|
#ifdef _WIN32
|
|
return _getch();
|
|
#else // LINUX
|
|
return getchar();
|
|
#endif
|
|
}
|
|
private:
|
|
#ifndef _WIN32
|
|
struct termios mOldTermSettings;
|
|
#endif
|
|
};
|
|
|
|
namespace resource_api {
|
|
|
|
TerminalApiClient::TerminalApiClient(ApiServer *api):
|
|
mApiServer(api)
|
|
{
|
|
start();
|
|
}
|
|
|
|
TerminalApiClient::~TerminalApiClient()
|
|
{
|
|
fullstop();
|
|
}
|
|
|
|
void TerminalApiClient::data_tick()
|
|
{
|
|
// values in milliseconds
|
|
const int MIN_WAIT_TIME = 20; // sleep time must be smaller or equal than the smallest period
|
|
const int IO_POLL_PERIOD = 20;
|
|
const int API_EVENT_POLL_PERIOD = 1000;
|
|
|
|
int last_io_poll = 0;
|
|
int last_event_api_poll = 0;
|
|
|
|
int last_char = 0;
|
|
std::string inbuf;
|
|
bool enter_was_pressed = false;
|
|
|
|
StateToken runstate_state_token;
|
|
std::string runstate;
|
|
|
|
std::vector<std::string> accounts;
|
|
|
|
StateToken password_state_token;
|
|
bool ask_for_password = false;
|
|
std::string key_name;
|
|
|
|
TerminalInput term;
|
|
|
|
while(!shouldStop())
|
|
{
|
|
// assuming sleep_time >> work_time
|
|
// so we don't have to check the absolute time, just sleep every cycle
|
|
usleep(MIN_WAIT_TIME * 1000);
|
|
last_io_poll += MIN_WAIT_TIME;
|
|
last_event_api_poll += MIN_WAIT_TIME;
|
|
|
|
if(last_io_poll >= IO_POLL_PERIOD)
|
|
{
|
|
last_io_poll = 0;
|
|
last_char = 0;
|
|
if(term.kbhit())
|
|
{
|
|
enter_was_pressed = false;
|
|
last_char = term.getch();
|
|
if(last_char > 127)
|
|
std::cout << "Warning: non ASCII characters probably won't work." << std::endl;
|
|
if(last_char >= ' ')// space is the first printable ascii character
|
|
inbuf += (char) last_char;
|
|
if(last_char == '\r' || last_char == '\n')
|
|
enter_was_pressed = true;
|
|
else
|
|
enter_was_pressed = false;
|
|
// send echo
|
|
if(ask_for_password)
|
|
std::cout << "*";
|
|
else
|
|
std::cout << (char) last_char;
|
|
|
|
//std::cout << "you pressed key " << (char) last_char << " as integer: " << last_char << std::endl;
|
|
}
|
|
}
|
|
|
|
if(last_event_api_poll >= API_EVENT_POLL_PERIOD)
|
|
{
|
|
last_event_api_poll = 0;
|
|
if(!runstate_state_token.isNull() && !isTokenValid(runstate_state_token))
|
|
runstate_state_token = StateToken(); // must get new state with new token
|
|
|
|
if(!password_state_token.isNull() && !isTokenValid(password_state_token))
|
|
password_state_token = StateToken();
|
|
}
|
|
|
|
bool edge = false;
|
|
if(runstate_state_token.isNull())
|
|
{
|
|
edge = true;
|
|
JsonStream reqs;
|
|
JsonStream resps;
|
|
Request req(reqs);
|
|
std::stringstream ss;
|
|
Response resp(resps, ss);
|
|
|
|
req.mPath.push("runstate");
|
|
req.mPath.push("control");
|
|
reqs.switchToDeserialisation();
|
|
|
|
ApiServer::RequestId id = mApiServer->handleRequest(req, resp);
|
|
waitForResponse(id);
|
|
|
|
resps.switchToDeserialisation();
|
|
resps << makeKeyValueReference("runstate", runstate);
|
|
runstate_state_token = resp.mStateToken;
|
|
}
|
|
if(password_state_token.isNull())
|
|
{
|
|
edge = true;
|
|
JsonStream reqs;
|
|
JsonStream resps;
|
|
Request req(reqs);
|
|
std::stringstream ss;
|
|
Response resp(resps, ss);
|
|
|
|
req.mPath.push("password");
|
|
req.mPath.push("control");
|
|
reqs.switchToDeserialisation();
|
|
|
|
ApiServer::RequestId id = mApiServer->handleRequest(req, resp);
|
|
waitForResponse(id);
|
|
|
|
resps.switchToDeserialisation();
|
|
resps << makeKeyValueReference("want_password", ask_for_password);
|
|
resps << makeKeyValueReference("key_name", key_name);
|
|
password_state_token = resp.mStateToken;
|
|
}
|
|
|
|
if(!ask_for_password && edge && runstate == "waiting_account_select")
|
|
{
|
|
JsonStream reqs;
|
|
JsonStream resps;
|
|
Request req(reqs);
|
|
std::stringstream ss;
|
|
Response resp(resps, ss);
|
|
|
|
req.mPath.push("locations");
|
|
req.mPath.push("control");
|
|
reqs.switchToDeserialisation();
|
|
|
|
ApiServer::RequestId id = mApiServer->handleRequest(req, resp);
|
|
waitForResponse(id);
|
|
|
|
resps.switchToDeserialisation();
|
|
std::cout << "Type a number to select an account" << std::endl;
|
|
if(!resps.hasMore())
|
|
std::cout << "Error: No Accounts. Use the Qt-GUI or the webinterface to create an account." << std::endl;
|
|
int i = 0;
|
|
accounts.clear();
|
|
while(resps.hasMore())
|
|
{
|
|
std::string id;
|
|
std::string name;
|
|
std::string location;
|
|
resps.getStreamToMember()
|
|
<< makeKeyValueReference("id", id)
|
|
<< makeKeyValueReference("name", name)
|
|
<< makeKeyValueReference("location", location);
|
|
std::cout << "[" << i << "] " << name << "(" << location << ")" << std::endl;
|
|
accounts.push_back(id);
|
|
i++;
|
|
}
|
|
}
|
|
|
|
if(!ask_for_password && runstate == "waiting_account_select"
|
|
&& last_char >= '0' && last_char <= '9'
|
|
&& (last_char-'0') < accounts.size())
|
|
{
|
|
std::string acc = accounts[last_char-'0'];
|
|
JsonStream reqs;
|
|
JsonStream resps;
|
|
Request req(reqs);
|
|
std::stringstream ss;
|
|
Response resp(resps, ss);
|
|
|
|
req.mPath.push("login");
|
|
req.mPath.push("control");
|
|
reqs << makeKeyValueReference("id", acc);
|
|
reqs.switchToDeserialisation();
|
|
|
|
ApiServer::RequestId id = mApiServer->handleRequest(req, resp);
|
|
waitForResponse(id);
|
|
|
|
inbuf.clear();
|
|
}
|
|
|
|
if(edge && ask_for_password)
|
|
{
|
|
std::cout << "Enter the password for key " << key_name << std::endl;
|
|
}
|
|
|
|
if(ask_for_password && enter_was_pressed && !inbuf.empty())
|
|
{
|
|
std::cout << "TerminalApiClient: got a password" << std::endl;
|
|
JsonStream reqs;
|
|
JsonStream resps;
|
|
Request req(reqs);
|
|
std::stringstream ss;
|
|
Response resp(resps, ss);
|
|
|
|
req.mPath.push("password");
|
|
req.mPath.push("control");
|
|
reqs << makeKeyValueReference("password", inbuf);
|
|
reqs.switchToDeserialisation();
|
|
|
|
ApiServer::RequestId id = mApiServer->handleRequest(req, resp);
|
|
waitForResponse(id);
|
|
|
|
inbuf.clear();
|
|
}
|
|
}
|
|
}
|
|
|
|
void TerminalApiClient::waitForResponse(ApiServer::RequestId id)
|
|
{
|
|
while(!mApiServer->isRequestDone(id))
|
|
usleep(20*1000);
|
|
}
|
|
|
|
bool TerminalApiClient::isTokenValid(StateToken runstate_state_token)
|
|
{
|
|
JsonStream reqs;
|
|
JsonStream resps;
|
|
Request req(reqs);
|
|
std::stringstream ss;
|
|
Response resp(resps, ss);
|
|
|
|
req.mPath.push("statetokenservice");
|
|
req.mStream << runstate_state_token;
|
|
reqs.switchToDeserialisation();
|
|
|
|
ApiServer::RequestId id = mApiServer->handleRequest(req, resp);
|
|
waitForResponse(id);
|
|
|
|
resps.switchToDeserialisation();
|
|
if(resps.hasMore())
|
|
return false;
|
|
else
|
|
return true;
|
|
}
|
|
|
|
} // namespace resource_api
|