mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-19 03:58:08 +00:00
98 lines
3 KiB
C++
98 lines
3 KiB
C++
/*
|
|
ptime.cc
|
|
Copyright (C) 2016 Belledonne Communications, Grenoble, France
|
|
|
|
This library is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation; either version 2.1 of the License, or (at
|
|
your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with this library; if not, write to the Free Software Foundation,
|
|
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include "ptime.h"
|
|
|
|
using namespace std;
|
|
|
|
class PtimeResponse : public Response {
|
|
public:
|
|
enum Direction {
|
|
Upload,
|
|
Download,
|
|
BothDirections
|
|
};
|
|
PtimeResponse(LinphoneCore *core, Direction dir);
|
|
};
|
|
|
|
PtimeResponse::PtimeResponse(LinphoneCore *core, Direction dir) : Response() {
|
|
ostringstream ost;
|
|
switch (dir) {
|
|
case Upload:
|
|
ost << "Upload: " << linphone_core_get_upload_ptime(core) << "\n";
|
|
break;
|
|
case Download:
|
|
ost << "Download: " << linphone_core_get_download_ptime(core) << "\n";
|
|
break;
|
|
case BothDirections:
|
|
ost << "Upload: " << linphone_core_get_upload_ptime(core) << "\n";
|
|
ost << "Download: " << linphone_core_get_download_ptime(core) << "\n";
|
|
break;
|
|
}
|
|
setBody(ost.str());
|
|
}
|
|
|
|
PtimeCommand::PtimeCommand() :
|
|
DaemonCommand("ptime", "ptime [up|down] [<ms>]", "Set the upload or download ptime if ms is defined, otherwise return the current value of the ptime.") {
|
|
addExample(new DaemonCommandExample("ptime up 20",
|
|
"Status: Ok\n\n"
|
|
"Upload: 20"));
|
|
addExample(new DaemonCommandExample("ptime down 30",
|
|
"Status: Ok\n\n"
|
|
"Download: 30"));
|
|
addExample(new DaemonCommandExample("ptime up",
|
|
"Status: Ok\n\n"
|
|
"Upload: 20"));
|
|
addExample(new DaemonCommandExample("ptime",
|
|
"Status: Ok\n\n"
|
|
"Upload: 20\n"
|
|
"Download: 30"));
|
|
}
|
|
|
|
void PtimeCommand::exec(Daemon *app, const string& args) {
|
|
string direction;
|
|
int ms;
|
|
istringstream ist(args);
|
|
ist >> direction;
|
|
if (ist.fail()) {
|
|
app->sendResponse(PtimeResponse(app->getCore(), PtimeResponse::BothDirections));
|
|
return;
|
|
}
|
|
if (direction.compare("up") == 0) {
|
|
if (!ist.eof()) {
|
|
ist >> ms;
|
|
if (ist.fail()) {
|
|
app->sendResponse(Response("Incorrect ms parameter.", Response::Error));
|
|
}
|
|
linphone_core_set_upload_ptime(app->getCore(), ms);
|
|
}
|
|
app->sendResponse(PtimeResponse(app->getCore(), PtimeResponse::Upload));
|
|
} else if (direction.compare("down") == 0) {
|
|
if (!ist.eof()) {
|
|
ist >> ms;
|
|
if (ist.fail()) {
|
|
app->sendResponse(Response("Incorrect ms parameter.", Response::Error));
|
|
}
|
|
linphone_core_set_download_ptime(app->getCore(), ms);
|
|
}
|
|
app->sendResponse(PtimeResponse(app->getCore(), PtimeResponse::Download));
|
|
} else {
|
|
app->sendResponse(Response("Missing/Incorrect parameter(s).", Response::Error));
|
|
}
|
|
}
|