mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
- Add examples for each command - Add the --dump-commands-help option to output the entire help
82 lines
2.2 KiB
C++
82 lines
2.2 KiB
C++
#include "register-status.h"
|
|
|
|
using namespace std;
|
|
|
|
class RegisterStatusResponse : public Response {
|
|
public:
|
|
RegisterStatusResponse();
|
|
RegisterStatusResponse(int id, const LinphoneProxyConfig *cfg);
|
|
void append(int id, const LinphoneProxyConfig *cfg);
|
|
};
|
|
|
|
RegisterStatusResponse::RegisterStatusResponse() {
|
|
}
|
|
|
|
RegisterStatusResponse::RegisterStatusResponse(int id, const LinphoneProxyConfig *cfg) {
|
|
append(id, cfg);
|
|
}
|
|
|
|
void RegisterStatusResponse::append(int id, const LinphoneProxyConfig* cfg) {
|
|
ostringstream ost;
|
|
ost << getBody();
|
|
if (ost.tellp() > 0) {
|
|
ost << "\n";
|
|
}
|
|
ost << "Id: " << id << "\n";
|
|
ost << "State: " << linphone_registration_state_to_string(linphone_proxy_config_get_state(cfg)) << "\n";
|
|
setBody(ost.str().c_str());
|
|
}
|
|
|
|
RegisterStatusCommand::RegisterStatusCommand() :
|
|
DaemonCommand("register-status", "register-status <register_id|ALL>", "Return status of a registration or of all registrations.") {
|
|
addExample(new DaemonCommandExample("register-status 1",
|
|
"Status: Ok\n\n"
|
|
"Id: 1\n"
|
|
"State: LinphoneRegistrationOk"));
|
|
addExample(new DaemonCommandExample("register-status ALL",
|
|
"Status: Ok\n\n"
|
|
"Id: 1\n"
|
|
"State: LinphoneRegistrationOk\n\n"
|
|
"Id: 2\n"
|
|
"State: LinphoneRegistrationFailed"));
|
|
addExample(new DaemonCommandExample("register-status 3",
|
|
"Status: Error\n"
|
|
"Reason: No register with such id."));
|
|
}
|
|
|
|
void RegisterStatusCommand::exec(Daemon *app, const char *args) {
|
|
LinphoneProxyConfig *cfg = NULL;
|
|
string param;
|
|
int pid;
|
|
|
|
istringstream ist(args);
|
|
ist >> param;
|
|
if (ist.fail()) {
|
|
app->sendResponse(Response("Missing parameter.", Response::Error));
|
|
return;
|
|
}
|
|
if (param.compare("ALL") == 0) {
|
|
RegisterStatusResponse response;
|
|
for (int i = 1; i <= app->maxProxyId(); i++) {
|
|
cfg = app->findProxy(i);
|
|
if (cfg != NULL) {
|
|
response.append(i, cfg);
|
|
}
|
|
}
|
|
app->sendResponse(response);
|
|
} else {
|
|
ist.str(param);
|
|
ist.seekg(0);
|
|
ist >> pid;
|
|
if (ist.fail()) {
|
|
app->sendResponse(Response("Incorrect parameter.", Response::Error));
|
|
return;
|
|
}
|
|
cfg = app->findProxy(pid);
|
|
if (cfg == NULL) {
|
|
app->sendResponse(Response("No register with such id.", Response::Error));
|
|
return;
|
|
}
|
|
app->sendResponse(RegisterStatusResponse(pid, cfg));
|
|
}
|
|
}
|