#pragma once #include #include namespace resource_api { // allows basic control from stdin/stdout // - account selection // - login // - shutdown class TerminalApiClient: public RsTickingThread{ public: // zero setup: create an instance of this class and destroy it when not needed anymore // no need to call start or stop or something // parameter api must not be null TerminalApiClient(ApiServer* api); ~TerminalApiClient(); protected: // from RsThread virtual void data_tick(); /* called once the thread is started. Should be overloaded by subclasses. */ private: struct AccountInfo { std::string name ; std::string location ; RsPeerId ssl_id ; }; void waitForResponse(ApiServer::RequestId id) const; bool isTokenValid(StateToken st) const; ApiServer* mApiServer; // Methods to talk to the ApiServer void sendPassword(const std::string& passwd) const; void sendSelectedAccount(const std::string& ssl_id) const; void readAvailableAccounts(std::vector& accounts) const; void getRunningState() const ; void readPasswordState(StateToken& password_state_token,bool& ask_for_password,std::string& key_name,bool& prev_is_bad) const; void readRunState(StateToken& runstate_state_token, std::string& runstate) const; }; } // namespace resource_api