1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539
|
/**
* This file is part of TelepathyQt
*
* @copyright Copyright (C) 2009 Collabora Ltd. <http://www.collabora.co.uk/>
* @copyright Copyright (C) 2009 Nokia Corporation
* @license LGPL 2.1
*
* 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 St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <TelepathyQt/StreamedMediaChannel>
#include "TelepathyQt/_gen/streamed-media-channel.moc.hpp"
#include "TelepathyQt/debug-internal.h"
#include <TelepathyQt/Connection>
#include <TelepathyQt/ContactManager>
#include <TelepathyQt/PendingComposite>
#include <TelepathyQt/PendingContacts>
#include <TelepathyQt/PendingReady>
#include <TelepathyQt/PendingVoid>
#include <QHash>
namespace Tp
{
/* ====== PendingStreamedMediaStreams ====== */
struct TP_QT_NO_EXPORT PendingStreamedMediaStreams::Private
{
StreamedMediaStreams streams;
uint numStreams;
uint streamsReady;
};
/**
* \class PendingStreamedMediaStreams
* \ingroup clientchannel
* \headerfile TelepathyQt/streamed-media-channel.h <TelepathyQt/PendingStreamedMediaStreams>
*
* \brief Class containing the result of an asynchronous streamed media stream creation
* request.
*
* Instances of this class cannot be constructed directly; the only way to get
* one is via StreamedMediaChannel.
*
* See \ref async_model
*/
/**
* Construct a new PendingStreamedMediaStreams object.
*
* \param channel StreamedMediaChannel to use.
* \param contact The contact who the media stream is with.
* \param types A list of stream types to request.
*/
PendingStreamedMediaStreams::PendingStreamedMediaStreams(const StreamedMediaChannelPtr &channel,
const ContactPtr &contact,
const QList<MediaStreamType> &types)
: PendingOperation(channel),
mPriv(new Private)
{
mPriv->numStreams = types.size();
mPriv->streamsReady = 0;
UIntList l;
foreach (MediaStreamType type, types) {
l << type;
}
Client::ChannelTypeStreamedMediaInterface *streamedMediaInterface =
channel->interface<Client::ChannelTypeStreamedMediaInterface>();
QDBusPendingCallWatcher *watcher =
new QDBusPendingCallWatcher(
streamedMediaInterface->RequestStreams(
contact->handle()[0], l), this);
connect(watcher,
SIGNAL(finished(QDBusPendingCallWatcher*)),
SLOT(gotStreams(QDBusPendingCallWatcher*)));
}
/**
* Class destructor.
*/
PendingStreamedMediaStreams::~PendingStreamedMediaStreams()
{
delete mPriv;
}
/**
* Return the channel through which the request was made.
*
* \return A pointer to the StreamedMediaChannel object.
*/
StreamedMediaChannelPtr PendingStreamedMediaStreams::channel() const
{
return StreamedMediaChannelPtr(qobject_cast<StreamedMediaChannel*>(
(StreamedMediaChannel*) object().data()));
}
/**
* Return a list of the newly created StreamedMediaStreamPtr objects.
*
* \return A list of pointers to StreamedMediaStream objects, or an empty list if an error occurred.
*/
StreamedMediaStreams PendingStreamedMediaStreams::streams() const
{
if (!isFinished()) {
warning() << "PendingStreamedMediaStreams::streams called before finished, "
"returning empty list";
return StreamedMediaStreams();
} else if (!isValid()) {
warning() << "PendingStreamedMediaStreams::streams called when not valid, "
"returning empty list";
return StreamedMediaStreams();
}
return mPriv->streams;
}
void PendingStreamedMediaStreams::gotStreams(QDBusPendingCallWatcher *watcher)
{
QDBusPendingReply<MediaStreamInfoList> reply = *watcher;
if (reply.isError()) {
warning().nospace() << "StreamedMedia::RequestStreams()"
" failed with " << reply.error().name() << ": " <<
reply.error().message();
setFinishedWithError(reply.error());
watcher->deleteLater();
return;
}
debug() << "Got reply to StreamedMedia::RequestStreams()";
MediaStreamInfoList list = reply.value();
foreach (const MediaStreamInfo &streamInfo, list) {
StreamedMediaStreamPtr stream = channel()->lookupStreamById(
streamInfo.identifier);
if (!stream) {
stream = channel()->addStream(streamInfo);
} else {
channel()->onStreamDirectionChanged(streamInfo.identifier,
streamInfo.direction, streamInfo.pendingSendFlags);
channel()->onStreamStateChanged(streamInfo.identifier,
streamInfo.state);
}
mPriv->streams.append(stream);
connect(channel().data(),
SIGNAL(streamRemoved(Tp::StreamedMediaStreamPtr)),
SLOT(onStreamRemoved(Tp::StreamedMediaStreamPtr)));
connect(stream->becomeReady(),
SIGNAL(finished(Tp::PendingOperation*)),
SLOT(onStreamReady(Tp::PendingOperation*)));
}
watcher->deleteLater();
}
void PendingStreamedMediaStreams::onStreamRemoved(const StreamedMediaStreamPtr &stream)
{
if (isFinished()) {
return;
}
if (mPriv->streams.contains(stream)) {
// the stream was removed before becoming ready
setFinishedWithError(TP_QT_ERROR_CANCELLED,
QLatin1String("Stream removed before ready"));
}
}
void PendingStreamedMediaStreams::onStreamReady(PendingOperation *op)
{
if (isFinished()) {
return;
}
if (op->isError()) {
setFinishedWithError(op->errorName(), op->errorMessage());
return;
}
mPriv->streamsReady++;
debug() << "PendingStreamedMediaStreams:";
debug() << " Streams count:" << mPriv->numStreams;
debug() << " Streams ready:" << mPriv->streamsReady;
if (mPriv->streamsReady == mPriv->numStreams) {
debug() << "All streams are ready";
setFinished();
}
}
/* ====== StreamedMediaStream ====== */
struct TP_QT_NO_EXPORT StreamedMediaStream::Private
{
Private(StreamedMediaStream *parent, const StreamedMediaChannelPtr &channel,
const MediaStreamInfo &info);
static void introspectContact(Private *self);
PendingOperation *updateDirection(bool send, bool receive);
SendingState localSendingStateFromDirection();
SendingState remoteSendingStateFromDirection();
StreamedMediaStream *parent;
WeakPtr<StreamedMediaChannel> channel;
ReadinessHelper *readinessHelper;
uint id;
uint type;
uint contactHandle;
ContactPtr contact;
uint direction;
uint pendingSend;
uint state;
};
StreamedMediaStream::Private::Private(StreamedMediaStream *parent,
const StreamedMediaChannelPtr &channel,
const MediaStreamInfo &streamInfo)
: parent(parent),
channel(channel),
readinessHelper(parent->readinessHelper()),
id(streamInfo.identifier),
type(streamInfo.type),
contactHandle(streamInfo.contact),
direction(MediaStreamDirectionNone),
pendingSend(0),
state(MediaStreamStateDisconnected)
{
ReadinessHelper::Introspectables introspectables;
ReadinessHelper::Introspectable introspectableCore(
QSet<uint>() << 0, // makesSenseForStatuses
Features(), // dependsOnFeatures
QStringList(), // dependsOnInterfaces
(ReadinessHelper::IntrospectFunc) &Private::introspectContact,
this);
introspectables[FeatureCore] = introspectableCore;
readinessHelper->addIntrospectables(introspectables);
}
void StreamedMediaStream::Private::introspectContact(StreamedMediaStream::Private *self)
{
debug() << "Introspecting stream";
if (self->contactHandle == 0) {
debug() << "Stream ready";
self->readinessHelper->setIntrospectCompleted(FeatureCore, true);
return;
}
debug() << "Introspecting stream contact";
ContactManagerPtr contactManager =
self->parent->channel()->connection()->contactManager();
debug() << "contact manager" << contactManager;
// TODO: pass id hints to ContactManager if we ever gain support to retrieve contact ids
// from MediaStreamInfo or something similar.
self->parent->connect(contactManager->contactsForHandles(
UIntList() << self->contactHandle),
SIGNAL(finished(Tp::PendingOperation*)),
SLOT(gotContact(Tp::PendingOperation*)));
}
PendingOperation *StreamedMediaStream::Private::updateDirection(
bool send, bool receive)
{
uint newDirection = 0;
if (send) {
newDirection |= MediaStreamDirectionSend;
}
if (receive) {
newDirection |= MediaStreamDirectionReceive;
}
Client::ChannelTypeStreamedMediaInterface *streamedMediaInterface =
parent->channel()->interface<Client::ChannelTypeStreamedMediaInterface>();
return new PendingVoid(
streamedMediaInterface->RequestStreamDirection(
id, newDirection),
StreamedMediaStreamPtr(parent));
}
StreamedMediaStream::SendingState StreamedMediaStream::Private::localSendingStateFromDirection()
{
if (pendingSend & MediaStreamPendingLocalSend) {
return SendingStatePendingSend;
}
if (direction & MediaStreamDirectionSend) {
return SendingStateSending;
}
return SendingStateNone;
}
StreamedMediaStream::SendingState StreamedMediaStream::Private::remoteSendingStateFromDirection()
{
if (pendingSend & MediaStreamPendingRemoteSend) {
return SendingStatePendingSend;
}
if (direction & MediaStreamDirectionReceive) {
return SendingStateSending;
}
return SendingStateNone;
}
/**
* \class StreamedMediaStream
* \ingroup clientchannel
* \headerfile TelepathyQt/streamed-media-channel.h <TelepathyQt/StreamedMediaStream>
*
* \brief The StreamedMediaStream class represents a Telepathy streamed media
* stream.
*
* Instances of this class cannot be constructed directly; the only way to get
* one is via StreamedMediaChannel.
*/
/**
* Feature representing the core that needs to become ready to make the
* StreamedMediaStream object usable.
*
* Note that this feature must be enabled in order to use most StreamedMediaStream
* methods. See specific methods documentation for more details.
*
* When calling isReady(), becomeReady(), this feature is implicitly added
* to the requested features.
*/
const Feature StreamedMediaStream::FeatureCore = Feature(QLatin1String(StreamedMediaStream::staticMetaObject.className()), 0);
/**
* Construct a new StreamedMediaStream object.
*
* \param channel The channel ownding this media stream.
* \param streamInfo The stream info of this media stream.
*/
StreamedMediaStream::StreamedMediaStream(const StreamedMediaChannelPtr &channel,
const MediaStreamInfo &streamInfo)
: Object(),
ReadyObject(this, FeatureCore),
mPriv(new Private(this, channel, streamInfo))
{
gotDirection(streamInfo.direction, streamInfo.pendingSendFlags);
gotStreamState(streamInfo.state);
}
/**
* Class destructor.
*/
StreamedMediaStream::~StreamedMediaStream()
{
delete mPriv;
}
/**
* Return the channel owning this media stream.
*
* \return A pointer to the StreamedMediaChannel object.
*/
StreamedMediaChannelPtr StreamedMediaStream::channel() const
{
return StreamedMediaChannelPtr(mPriv->channel);
}
/**
* Return the id of this media stream.
*
* \return An integer representing the media stream id.
*/
uint StreamedMediaStream::id() const
{
return mPriv->id;
}
/**
* Return the contact who this media stream is with.
*
* \return A pointer to the Contact object.
*/
ContactPtr StreamedMediaStream::contact() const
{
return mPriv->contact;
}
/**
* Return the state of this media stream.
*
* \return The state as #MediaStreamState.
*/
MediaStreamState StreamedMediaStream::state() const
{
return (MediaStreamState) mPriv->state;
}
/**
* Return the type of this media stream.
*
* \return The type as #MediaStreamType.
*/
MediaStreamType StreamedMediaStream::type() const
{
return (MediaStreamType) mPriv->type;
}
/**
* Return whether media is being sent on this media stream.
*
* \return \c true if media is being sent, \c false otherwise.
* \sa localSendingStateChanged()
*/
bool StreamedMediaStream::sending() const
{
return mPriv->direction & MediaStreamDirectionSend;
}
/**
* Return whether media is being received on this media stream.
*
* \return \c true if media is being received, \c false otherwise.
* \sa remoteSendingStateChanged()
*/
bool StreamedMediaStream::receiving() const
{
return mPriv->direction & MediaStreamDirectionReceive;
}
/**
* Return whether the local user has been asked to send media by the
* remote user on this media stream.
*
* \return \c true if the local user has been asked to send media by the
* remote user, \c false otherwise.
* \sa localSendingStateChanged()
*/
bool StreamedMediaStream::localSendingRequested() const
{
return mPriv->pendingSend & MediaStreamPendingLocalSend;
}
/**
* Return whether the remote user has been asked to send media by the local
* user on this media stream.
*
* \return \c true if the remote user has been asked to send media by the
* local user, \c false otherwise.
* \sa remoteSendingStateChanged()
*/
bool StreamedMediaStream::remoteSendingRequested() const
{
return mPriv->pendingSend & MediaStreamPendingRemoteSend;
}
/**
* Return the direction of this media stream.
*
* \return The direction as #MediaStreamDirection.
* \sa localSendingState(), remoteSendingState(),
* localSendingStateChanged(), remoteSendingStateChanged(),
* sending(), receiving()
*/
MediaStreamDirection StreamedMediaStream::direction() const
{
return (MediaStreamDirection) mPriv->direction;
}
/**
* Return the pending send flags of this media stream.
*
* \return The pending send flags as #MediaStreamPendingSend.
* \sa localSendingStateChanged()
*/
MediaStreamPendingSend StreamedMediaStream::pendingSend() const
{
return (MediaStreamPendingSend) mPriv->pendingSend;
}
/**
* Request a change in the direction of this media stream. In particular, this
* might be useful to stop sending media of a particular type, or inform the
* peer that you are no longer using media that is being sent to you.
*
* \param direction The new direction.
* \return A PendingOperation which will emit PendingOperation::finished
* when the call has finished.
* \sa localSendingStateChanged(), remoteSendingStateChanged()
*/
PendingOperation *StreamedMediaStream::requestDirection(
MediaStreamDirection direction)
{
StreamedMediaChannelPtr chan(channel());
Client::ChannelTypeStreamedMediaInterface *streamedMediaInterface =
chan->interface<Client::ChannelTypeStreamedMediaInterface>();
return new PendingVoid(
streamedMediaInterface->RequestStreamDirection(
mPriv->id, direction),
StreamedMediaStreamPtr(this));
}
/**
* Start sending a DTMF tone on this media stream.
*
* Where possible, the tone will continue until stopDTMFTone() is called.
* On certain protocols, it may only be possible to send events with a predetermined
* length. In this case, the implementation may emit a fixed-length tone,
* and the stopDTMFTone() method call should return #TP_QT_ERROR_NOT_AVAILABLE.
*
* If the channel() does not support the #TP_QT_IFACE_CHANNEL_INTERFACE_DTMF
* interface, the resulting PendingOperation will fail with error code
* #TP_QT_ERROR_NOT_IMPLEMENTED.
* \param event A numeric event code from the #DTMFEvent enum.
* \return A PendingOperation which will emit PendingOperation::finished
* when the request finishes.
* \sa stopDTMFTone()
*/
PendingOperation *StreamedMediaStream::startDTMFTone(DTMFEvent event)
{
StreamedMediaChannelPtr chan(channel());
if (!chan->interfaces().contains(TP_QT_IFACE_CHANNEL_INTERFACE_DTMF)) {
warning() << "StreamedMediaStream::startDTMFTone() used with no dtmf interface";
return new PendingFailure(TP_QT_ERROR_NOT_IMPLEMENTED,
QLatin1String("StreamedMediaChannel does not support dtmf interface"),
StreamedMediaStreamPtr(this));
}
Client::ChannelInterfaceDTMFInterface *dtmfInterface =
chan->interface<Client::ChannelInterfaceDTMFInterface>();
return new PendingVoid(
dtmfInterface->StartTone(mPriv->id, event),
StreamedMediaStreamPtr(this));
}
/**
* Stop sending any DTMF tone which has been started using the startDTMFTone()
* method.
*
* If there is no current tone, the resulting PendingOperation will
* finish successfully.
*
* If continuous tones are not supported by this media stream, the resulting
* PendingOperation will fail with error code #TP_QT_ERROR_NOT_AVAILABLE.
*
* If the channel() does not support the #TP_QT_IFACE_CHANNEL_INTERFACE_DTMF
* interface, the resulting PendingOperation will fail with error code
* #TP_QT_ERROR_NOT_IMPLEMENTED.
*
* \return A PendingOperation which will emit PendingOperation::finished
* when the request finishes.
* \sa startDTMFTone()
*/
PendingOperation *StreamedMediaStream::stopDTMFTone()
{
StreamedMediaChannelPtr chan(channel());
if (!chan->interfaces().contains(TP_QT_IFACE_CHANNEL_INTERFACE_DTMF)) {
warning() << "StreamedMediaStream::stopDTMFTone() used with no dtmf interface";
return new PendingFailure(TP_QT_ERROR_NOT_IMPLEMENTED,
QLatin1String("StreamedMediaChannel does not support dtmf interface"),
StreamedMediaStreamPtr(this));
}
Client::ChannelInterfaceDTMFInterface *dtmfInterface =
chan->interface<Client::ChannelInterfaceDTMFInterface>();
return new PendingVoid(
dtmfInterface->StopTone(mPriv->id),
StreamedMediaStreamPtr(this));
}
/**
* Request a change in the direction of this media stream.
*
* In particular, this might be useful to stop sending media of a particular type,
* or inform the peer that you are no longer using media that is being sent to you.
*
* \return A PendingOperation which will emit PendingOperation::finished
* when the call has finished.
* \sa requestDirection(Tp::MediaStreamDirection direction),
* localSendingStateChanged(), remoteSendingStateChanged()
*/
PendingOperation *StreamedMediaStream::requestDirection(bool send, bool receive)
{
uint dir = MediaStreamDirectionNone;
if (send) {
dir |= MediaStreamDirectionSend;
}
if (receive) {
dir |= MediaStreamDirectionReceive;
}
return requestDirection((MediaStreamDirection) dir);
}
/**
* Return the media stream local sending state.
*
* \return The local sending state as StreamedMediaStream::SendingState.
* \sa localSendingStateChanged()
*/
StreamedMediaStream::SendingState StreamedMediaStream::localSendingState() const
{
return mPriv->localSendingStateFromDirection();
}
/**
* Return the media stream remote sending state.
*
* \return The remote sending state as StreamedMediaStream::SendingState.
* \sa remoteSendingStateChanged()
*/
StreamedMediaStream::SendingState StreamedMediaStream::remoteSendingState() const
{
return mPriv->remoteSendingStateFromDirection();
}
/**
* Request that media starts or stops being sent on this media stream.
*
* \return A PendingOperation which will emit PendingOperation::finished
* when the call has finished.
* \sa localSendingStateChanged(), requestDirection()
*/
PendingOperation *StreamedMediaStream::requestSending(bool send)
{
return mPriv->updateDirection(
send,
mPriv->direction & MediaStreamDirectionReceive);
}
/**
* Request that the remote contact stops or starts sending on this media stream.
*
* \return A PendingOperation which will emit PendingOperation::finished
* when the call has finished.
* \sa remoteSendingStateChanged(), requestDirection()
*/
PendingOperation *StreamedMediaStream::requestReceiving(bool receive)
{
return mPriv->updateDirection(
mPriv->direction & MediaStreamDirectionSend,
receive);
}
/**
* \fn void StreamedMediaStream::localSendingStateChanged(
* Tp::StreamedMediaStream::SendingState localSendingState)
*
* Emitted when the local sending state of this media stream changes.
*
* \param localSendingState The new local sending state of this media stream.
* \sa localSendingState()
*/
/**
* \fn void MediaStream::remoteSendingStateChanged(
* Tp::MediaStream::SendingState &remoteSendingState)
*
* Emitted when the remote sending state of this media stream changes.
*
* \param remoteSendingState The new remote sending state of this media stream.
* \sa remoteSendingState()
*/
void StreamedMediaStream::gotContact(PendingOperation *op)
{
PendingContacts *pc = qobject_cast<PendingContacts *>(op);
Q_ASSERT(pc->isForHandles());
if (op->isError()) {
warning().nospace() << "Gathering media stream contact failed: "
<< op->errorName() << ": " << op->errorMessage();
mPriv->readinessHelper->setIntrospectCompleted(FeatureCore, false,
op->errorName(), op->errorMessage());
return;
}
QList<ContactPtr> contacts = pc->contacts();
UIntList invalidHandles = pc->invalidHandles();
if (contacts.size()) {
Q_ASSERT(contacts.size() == 1);
Q_ASSERT(invalidHandles.size() == 0);
mPriv->contact = contacts.first();
debug() << "Got stream contact";
debug() << "Stream ready";
mPriv->readinessHelper->setIntrospectCompleted(FeatureCore, true);
} else {
Q_ASSERT(invalidHandles.size() == 1);
warning().nospace() << "Error retrieving media stream contact (invalid handle)";
mPriv->readinessHelper->setIntrospectCompleted(FeatureCore, false,
TP_QT_ERROR_INVALID_ARGUMENT,
QLatin1String("Invalid contact handle"));
}
}
void StreamedMediaStream::gotDirection(uint direction, uint pendingSend)
{
if (direction == mPriv->direction &&
pendingSend == mPriv->pendingSend) {
return;
}
SendingState oldLocalState = mPriv->localSendingStateFromDirection();
SendingState oldRemoteState = mPriv->remoteSendingStateFromDirection();
mPriv->direction = direction;
mPriv->pendingSend = pendingSend;
if (!isReady()) {
return;
}
SendingState localSendingState =
mPriv->localSendingStateFromDirection();
if (localSendingState != oldLocalState) {
emit localSendingStateChanged(localSendingState);
}
SendingState remoteSendingState =
mPriv->remoteSendingStateFromDirection();
if (remoteSendingState != oldRemoteState) {
emit remoteSendingStateChanged(remoteSendingState);
}
}
void StreamedMediaStream::gotStreamState(uint state)
{
if (state == mPriv->state) {
return;
}
mPriv->state = state;
}
/* ====== StreamedMediaChannel ====== */
struct TP_QT_NO_EXPORT StreamedMediaChannel::Private
{
Private(StreamedMediaChannel *parent);
~Private();
static void introspectStreams(Private *self);
static void introspectLocalHoldState(Private *self);
// Public object
StreamedMediaChannel *parent;
// Mandatory properties interface proxy
Client::DBus::PropertiesInterface *properties;
ReadinessHelper *readinessHelper;
// Introspection
StreamedMediaStreams incompleteStreams;
StreamedMediaStreams streams;
LocalHoldState localHoldState;
LocalHoldStateReason localHoldStateReason;
};
StreamedMediaChannel::Private::Private(StreamedMediaChannel *parent)
: parent(parent),
properties(parent->interface<Client::DBus::PropertiesInterface>()),
readinessHelper(parent->readinessHelper()),
localHoldState(LocalHoldStateUnheld),
localHoldStateReason(LocalHoldStateReasonNone)
{
ReadinessHelper::Introspectables introspectables;
ReadinessHelper::Introspectable introspectableStreams(
QSet<uint>() << 0, // makesSenseForStatuses
Features() << Channel::FeatureCore, // dependsOnFeatures (core)
QStringList(), // dependsOnInterfaces
(ReadinessHelper::IntrospectFunc) &Private::introspectStreams,
this);
introspectables[FeatureStreams] = introspectableStreams;
ReadinessHelper::Introspectable introspectableLocalHoldState(
QSet<uint>() << 0, // makesSenseForStatuses
Features() << Channel::FeatureCore, // dependsOnFeatures (core)
QStringList() << TP_QT_IFACE_CHANNEL_INTERFACE_HOLD, // dependsOnInterfaces
(ReadinessHelper::IntrospectFunc) &Private::introspectLocalHoldState,
this);
introspectables[FeatureLocalHoldState] = introspectableLocalHoldState;
readinessHelper->addIntrospectables(introspectables);
}
StreamedMediaChannel::Private::~Private()
{
}
void StreamedMediaChannel::Private::introspectStreams(StreamedMediaChannel::Private *self)
{
StreamedMediaChannel *parent = self->parent;
Client::ChannelTypeStreamedMediaInterface *streamedMediaInterface =
parent->interface<Client::ChannelTypeStreamedMediaInterface>();
parent->connect(streamedMediaInterface,
SIGNAL(StreamAdded(uint,uint,uint)),
SLOT(onStreamAdded(uint,uint,uint)));
parent->connect(streamedMediaInterface,
SIGNAL(StreamRemoved(uint)),
SLOT(onStreamRemoved(uint)));
parent->connect(streamedMediaInterface,
SIGNAL(StreamDirectionChanged(uint,uint,uint)),
SLOT(onStreamDirectionChanged(uint,uint,uint)));
parent->connect(streamedMediaInterface,
SIGNAL(StreamStateChanged(uint,uint)),
SLOT(onStreamStateChanged(uint,uint)));
parent->connect(streamedMediaInterface,
SIGNAL(StreamError(uint,uint,QString)),
SLOT(onStreamError(uint,uint,QString)));
QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(
streamedMediaInterface->ListStreams(), parent);
parent->connect(watcher,
SIGNAL(finished(QDBusPendingCallWatcher *)),
SLOT(gotStreams(QDBusPendingCallWatcher *)));
}
void StreamedMediaChannel::Private::introspectLocalHoldState(StreamedMediaChannel::Private *self)
{
StreamedMediaChannel *parent = self->parent;
Client::ChannelInterfaceHoldInterface *holdInterface =
parent->interface<Client::ChannelInterfaceHoldInterface>();
parent->connect(holdInterface,
SIGNAL(HoldStateChanged(uint,uint)),
SLOT(onLocalHoldStateChanged(uint,uint)));
QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(
holdInterface->GetHoldState(), parent);
parent->connect(watcher,
SIGNAL(finished(QDBusPendingCallWatcher*)),
SLOT(gotLocalHoldState(QDBusPendingCallWatcher*)));
}
/**
* \class StreamedMediaChannel
* \ingroup clientchannel
* \headerfile TelepathyQt/streamed-media-channel.h <TelepathyQt/StreamedMediaChannel>
*
* \brief The StreamedMediaChannel class represents a Telepathy channel of type StreamedMedia.
*
* For more details, please refer to \telepathy_spec.
*
* See \ref async_model, \ref shared_ptr
*/
/**
* Feature representing the core that needs to become ready to make the
* StreamedMediaChannel object usable.
*
* This is currently the same as Channel::FeatureCore, but may change to include more.
*
* When calling isReady(), becomeReady(), this feature is implicitly added
* to the requested features.
* \sa awaitingLocalAnswer(), awaitingRemoteAnswer(), acceptCall(), hangupCall(), handlerStreamingRequired()
*/
const Feature StreamedMediaChannel::FeatureCore = Feature(QLatin1String(Channel::staticMetaObject.className()), 0, true);
/**
* Feature used in order to access media stream specific methods.
*
* See media stream specific methods' documentation for more details.
* \sa streams(), streamsForType(),
* requestStream(), requestStreams(), streamAdded()
* removeStream(), removeStreams(), streamRemoved(),
* streamDirectionChanged(), streamStateChanged(), streamError()
*/
const Feature StreamedMediaChannel::FeatureStreams = Feature(QLatin1String(StreamedMediaChannel::staticMetaObject.className()), 0);
/**
* Feature used in order to access local hold state info.
*
* See local hold state specific methods' documentation for more details.
* \sa localHoldState(), localHoldStateReason(), requestHold(), localHoldStateChanged()
*/
const Feature StreamedMediaChannel::FeatureLocalHoldState = Feature(QLatin1String(StreamedMediaChannel::staticMetaObject.className()), 1);
/**
* Create a new StreamedMediaChannel object.
*
* \param connection Connection owning this channel, and specifying the
* service.
* \param objectPath The channel object path.
* \param immutableProperties The channel immutable properties.
* \return A StreamedMediaChannelPtr object pointing to the newly created
* StreamedMediaChannel object.
*/
StreamedMediaChannelPtr StreamedMediaChannel::create(const ConnectionPtr &connection,
const QString &objectPath, const QVariantMap &immutableProperties)
{
return StreamedMediaChannelPtr(new StreamedMediaChannel(connection,
objectPath, immutableProperties, StreamedMediaChannel::FeatureCore));
}
/**
* Construct a new StreamedMediaChannel object.
*
* \param connection Connection owning this channel, and specifying the
* service.
* \param objectPath The channel object path.
* \param immutableProperties The channel immutable properties.
* \param coreFeature The core feature of the channel type, if any. The corresponding introspectable should
* depend on StreamedMediaChannel::FeatureCore.
*/
StreamedMediaChannel::StreamedMediaChannel(const ConnectionPtr &connection,
const QString &objectPath,
const QVariantMap &immutableProperties,
const Feature &coreFeature)
: Channel(connection, objectPath, immutableProperties, coreFeature),
mPriv(new Private(this))
{
}
/**
* Class destructor.
*/
StreamedMediaChannel::~StreamedMediaChannel()
{
delete mPriv;
}
/**
* Return a list of media streams in this channel.
*
* This methods requires StreamedMediaChannel::FeatureStreams to be ready.
*
* \return A list of pointers to StreamedMediaStream objects.
* \sa streamAdded(), streamRemoved(), streamsForType(), requestStreams()
*/
StreamedMediaStreams StreamedMediaChannel::streams() const
{
return mPriv->streams;
}
/**
* Return a list of media streams in this channel for the given type \a type.
*
* This methods requires StreamedMediaChannel::FeatureStreams to be ready.
*
* \param type The interested type.
* \return A list of pointers to StreamedMediaStream objects.
* \sa streamAdded(), streamRemoved(), streams(), requestStreams()
*/
StreamedMediaStreams StreamedMediaChannel::streamsForType(MediaStreamType type) const
{
StreamedMediaStreams ret;
foreach (const StreamedMediaStreamPtr &stream, mPriv->streams) {
if (stream->type() == type) {
ret << stream;
}
}
return ret;
}
/**
* Return whether this channel is awaiting local answer.
*
* This method requires StreamedMediaChannel::FeatureCore to be ready.
*
* \return \c true if awaiting local answer, \c false otherwise.
* \sa awaitingRemoteAnswer(), acceptCall()
*/
bool StreamedMediaChannel::awaitingLocalAnswer() const
{
return groupSelfHandleIsLocalPending();
}
/**
* Return whether this channel is awaiting remote answer.
*
* This method requires StreamedMediaChannel::FeatureCore to be ready.
*
* \return \c true if awaiting remote answer, \c false otherwise.
* \sa awaitingLocalAnswer()
*/
bool StreamedMediaChannel::awaitingRemoteAnswer() const
{
return !groupRemotePendingContacts().isEmpty();
}
/**
* Accept an incoming call.
*
* This method requires StreamedMediaChannel::FeatureCore to be ready.
*
* \return A PendingOperation which will emit PendingOperation::finished
* when the call has finished.
* \sa awaitingLocalAnswer(), hangupCall()
*/
PendingOperation *StreamedMediaChannel::acceptCall()
{
return groupAddSelfHandle();
}
/**
* Remove the specified media stream from this channel.
*
* This methods requires StreamedMediaChannel::FeatureStreams to be ready.
*
* \param stream Media stream to remove.
* \return A PendingOperation which will emit PendingOperation::finished
* when the call has finished.
* \sa streamRemoved(), streams(), streamsForType()
*/
PendingOperation *StreamedMediaChannel::removeStream(const StreamedMediaStreamPtr &stream)
{
if (!stream) {
return new PendingFailure(TP_QT_ERROR_INVALID_ARGUMENT,
QLatin1String("Unable to remove a null stream"),
StreamedMediaChannelPtr(this));
}
// StreamedMedia.RemoveStreams will trigger StreamedMedia.StreamRemoved
// that will proper remove the stream
Client::ChannelTypeStreamedMediaInterface *streamedMediaInterface =
interface<Client::ChannelTypeStreamedMediaInterface>();
return new PendingVoid(
streamedMediaInterface->RemoveStreams(
UIntList() << stream->id()),
StreamedMediaChannelPtr(this));
}
/**
* Remove the specified media streams from this channel.
*
* This methods requires StreamedMediaChannel::FeatureStreams to be ready.
*
* \param streams List of media streams to remove.
* \return A PendingOperation which will emit PendingOperation::finished
* when the call has finished.
* \sa streamRemoved(), streams(), streamsForType()
*/
PendingOperation *StreamedMediaChannel::removeStreams(const StreamedMediaStreams &streams)
{
UIntList ids;
foreach (const StreamedMediaStreamPtr &stream, streams) {
if (!stream) {
continue;
}
ids << stream->id();
}
if (ids.isEmpty()) {
return new PendingFailure(TP_QT_ERROR_INVALID_ARGUMENT,
QLatin1String("Unable to remove invalid streams"),
StreamedMediaChannelPtr(this));
}
Client::ChannelTypeStreamedMediaInterface *streamedMediaInterface =
interface<Client::ChannelTypeStreamedMediaInterface>();
return new PendingVoid(
streamedMediaInterface->RemoveStreams(ids),
StreamedMediaChannelPtr(this));
}
/**
* Request that media streams be established to exchange the given type \a type
* of media with the given contact \a contact.
*
* This methods requires StreamedMediaChannel::FeatureStreams to be ready.
*
* \return A PendingStreamedMediaStreams which will emit PendingStreamedMediaStreams::finished
* when the call has finished.
* \sa streamAdded(), streams(), streamsForType()
*/
PendingStreamedMediaStreams *StreamedMediaChannel::requestStream(
const ContactPtr &contact,
MediaStreamType type)
{
return new PendingStreamedMediaStreams(StreamedMediaChannelPtr(this),
contact,
QList<MediaStreamType>() << type);
}
/**
* Request that media streams be established to exchange the given types \a
* types of media with the given contact \a contact.
*
* This methods requires StreamedMediaChannel::FeatureStreams to be ready.
*
* \return A PendingStreamedMediaStreams which will emit PendingStreamedMediaStreams::finished
* when the call has finished.
* \sa streamAdded(), streams(), streamsForType()
*/
PendingStreamedMediaStreams *StreamedMediaChannel::requestStreams(
const ContactPtr &contact,
QList<MediaStreamType> types)
{
return new PendingStreamedMediaStreams(StreamedMediaChannelPtr(this),
contact, types);
}
/**
* Request that the call is ended.
*
* This method requires StreamedMediaChannel::FeatureCore to be ready.
*
* \return A PendingOperation which will emit PendingOperation::finished
* when the call has finished.
*/
PendingOperation *StreamedMediaChannel::hangupCall()
{
return requestLeave();
}
/**
* Check whether media streaming by the handler is required for this channel.
*
* For channels with the #TP_QT_IFACE_CHANNEL_INTERFACE_MEDIA_SIGNALLING interface,
* the main handler of the channel is responsible for doing the actual streaming, for instance by
* calling createFarsightChannel(channel) from TelepathyQt-Farsight library
* and using the telepathy-farsight API on the resulting TfChannel.
*
* This method requires StreamedMediaChannel::FeatureCore to be ready.
*
* \return \c true if required, \c false otherwise.
*/
bool StreamedMediaChannel::handlerStreamingRequired() const
{
return interfaces().contains(
TP_QT_IFACE_CHANNEL_INTERFACE_MEDIA_SIGNALLING);
}
/**
* Return the local hold state for this channel.
*
* Whether the local user has placed this channel on hold.
*
* This method requires StreamedMediaChannel::FeatureHoldState to be ready.
*
* \return The local hold state as #LocalHoldState.
* \sa requestHold(), localHoldStateChanged()
*/
LocalHoldState StreamedMediaChannel::localHoldState() const
{
if (!isReady(FeatureLocalHoldState)) {
warning() << "StreamedMediaChannel::localHoldState() used with FeatureLocalHoldState not ready";
} else if (!interfaces().contains(TP_QT_IFACE_CHANNEL_INTERFACE_HOLD)) {
warning() << "StreamedMediaChannel::localHoldStateReason() used with no hold interface";
}
return mPriv->localHoldState;
}
/**
* Return the reason why localHoldState() changed to its current value.
*
* This method requires StreamedMediaChannel::FeatureLocalHoldState to be ready.
*
* \return The local hold state reason as #LocalHoldStateReason.
* \sa requestHold(), localHoldStateChanged()
*/
LocalHoldStateReason StreamedMediaChannel::localHoldStateReason() const
{
if (!isReady(FeatureLocalHoldState)) {
warning() << "StreamedMediaChannel::localHoldStateReason() used with FeatureLocalHoldState not ready";
} else if (!interfaces().contains(TP_QT_IFACE_CHANNEL_INTERFACE_HOLD)) {
warning() << "StreamedMediaChannel::localHoldStateReason() used with no hold interface";
}
return mPriv->localHoldStateReason;
}
/**
* Request that the channel be put on hold (be instructed not to send any media
* streams to you) or be taken off hold.
*
* If the CM can immediately tell that the requested state
* change could not possibly succeed, the resulting PendingOperation will fail
* with error code #TP_QT_ERROR_NOT_AVAILABLE.
* If the requested state is the same as the current state, the resulting
* PendingOperation will finish successfully.
*
* Otherwise, the channel's local hold state will change to
* #LocalHoldStatePendingHold or #LocalHoldStatePendingUnhold (as
* appropriate), then the resulting PendingOperation will finish successfully.
*
* The eventual success or failure of the request is indicated by a subsequent
* localHoldStateChanged() signal, changing the local hold state to
* #LocalHoldStateHeld or #LocalHoldStateUnheld.
*
* If the channel has multiple streams, and the connection manager succeeds in
* changing the hold state of one stream but fails to change the hold state of
* another, it will attempt to revert all streams to their previous hold
* states.
*
* If the channel does not support the #TP_QT_IFACE_CHANNEL_INTERFACE_HOLD
* interface, the PendingOperation will fail with error code
* #TP_QT_ERROR_NOT_IMPLEMENTED.
*
* \param hold A boolean indicating whether or not the channel should be on hold
* \return A PendingOperation which will emit PendingOperation::finished
* when the request finishes.
* \sa localHoldState(), localHoldStateReason(), localHoldStateChanged()
*/
PendingOperation *StreamedMediaChannel::requestHold(bool hold)
{
if (!interfaces().contains(TP_QT_IFACE_CHANNEL_INTERFACE_HOLD)) {
warning() << "StreamedMediaChannel::requestHold() used with no hold interface";
return new PendingFailure(TP_QT_ERROR_NOT_IMPLEMENTED,
QLatin1String("StreamedMediaChannel does not support hold interface"),
StreamedMediaChannelPtr(this));
}
Client::ChannelInterfaceHoldInterface *holdInterface =
interface<Client::ChannelInterfaceHoldInterface>();
return new PendingVoid(holdInterface->RequestHold(hold),
StreamedMediaChannelPtr(this));
}
/**
* \fn void StreamedMediaChannel::streamAdded(const Tp::StreamedMediaStreamPtr &stream)
*
* Emitted when a media stream is added to this channel.
*
* \param stream The media stream that was added.
* \sa streams(), streamsForType(), streamRemoved()
*/
/**
* \fn void StreamedMediaChannel::streamRemoved(const Tp::StreamedMediaStreamPtr &stream)
*
* Emitted when a media stream is removed from this channel.
*
* \param stream The media stream that was removed.
* \sa streams(), streamsForType(), streamAdded()
*/
/**
* \fn void StreamedMediaChannel::streamDirectionChanged(
* const Tp::StreamedMediaStreamPtr &stream, Tp::MediaStreamDirection direction,
* Tp::MediaStreamPendingSend pendingSend)
*
* Emitted when a media stream direction changes.
*
* \param stream The media stream which the direction changed.
* \param direction The new direction of the stream that changed.
* \param pendingSend The new pending send flags of the stream that changed.
* \sa StreamedMediaStream::direction()
*/
/**
* \fn void StreamedMediaChannel::streamStateChanged(
* const Tp::StreamedMediaStreamPtr &stream, Tp::MediaStreamState state)
*
* Emitted when a media stream state changes.
*
* \param stream The media stream which the state changed.
* \param state The new state of the stream that changed.
* \sa StreamedMediaStream::state()
*/
/**
* \fn void StreamedMediaChannel::streamError(
* const Tp::StreamedMediaStreamPtr &stream,
* Tp::StreamedMediaStreamError errorCode, const QString &errorMessage)
*
* Emitted when an error occurs on a media stream.
*
* \param stream The media stream which the error occurred.
* \param errorCode The error code.
* \param errorMessage The error message.
*/
/**
* \fn void StreamedMediaChannel::localHoldStateChanged(Tp::LocalHoldState state, Tp::LocalHoldStateReason reason);
*
* Emitted when the local hold state of this channel changes.
*
* \param state The new local hold state of this channel.
* \param reason The reason why the change occurred.
* \sa localHoldState(), localHoldStateReason()
*/
void StreamedMediaChannel::onStreamReady(PendingOperation *op)
{
PendingReady *pr = qobject_cast<PendingReady*>(op);
StreamedMediaStreamPtr stream = StreamedMediaStreamPtr::qObjectCast(pr->proxy());
if (op->isError()) {
mPriv->incompleteStreams.removeOne(stream);
if (!isReady(FeatureStreams) && mPriv->incompleteStreams.size() == 0) {
// let's not fail because a stream could not become ready
mPriv->readinessHelper->setIntrospectCompleted(FeatureStreams, true);
}
return;
}
// the stream was removed before become ready
if (!mPriv->incompleteStreams.contains(stream)) {
if (!isReady(FeatureStreams) && mPriv->incompleteStreams.size() == 0) {
mPriv->readinessHelper->setIntrospectCompleted(FeatureStreams, true);
}
return;
}
mPriv->incompleteStreams.removeOne(stream);
mPriv->streams.append(stream);
if (isReady(FeatureStreams)) {
emit streamAdded(stream);
}
if (!isReady(FeatureStreams) && mPriv->incompleteStreams.size() == 0) {
mPriv->readinessHelper->setIntrospectCompleted(FeatureStreams, true);
}
}
void StreamedMediaChannel::gotStreams(QDBusPendingCallWatcher *watcher)
{
QDBusPendingReply<MediaStreamInfoList> reply = *watcher;
if (reply.isError()) {
warning().nospace() << "StreamedMedia.ListStreams failed with" <<
reply.error().name() << ": " << reply.error().message();
mPriv->readinessHelper->setIntrospectCompleted(FeatureStreams,
false, reply.error());
watcher->deleteLater();
return;
}
debug() << "Got reply to StreamedMedia::ListStreams()";
MediaStreamInfoList streamInfoList = reply.value();
if (streamInfoList.size() > 0) {
foreach (const MediaStreamInfo &streamInfo, streamInfoList) {
StreamedMediaStreamPtr stream = lookupStreamById(
streamInfo.identifier);
if (!stream) {
addStream(streamInfo);
} else {
onStreamDirectionChanged(streamInfo.identifier,
streamInfo.direction, streamInfo.pendingSendFlags);
onStreamStateChanged(streamInfo.identifier,
streamInfo.state);
}
}
} else {
mPriv->readinessHelper->setIntrospectCompleted(FeatureStreams, true);
}
watcher->deleteLater();
}
void StreamedMediaChannel::onStreamAdded(uint streamId,
uint contactHandle, uint streamType)
{
if (lookupStreamById(streamId)) {
debug() << "Received StreamedMedia.StreamAdded for an existing "
"stream, ignoring";
return;
}
MediaStreamInfo streamInfo = {
streamId,
contactHandle,
streamType,
MediaStreamStateDisconnected,
MediaStreamDirectionReceive,
MediaStreamPendingLocalSend
};
addStream(streamInfo);
}
void StreamedMediaChannel::onStreamRemoved(uint streamId)
{
debug() << "Received StreamedMedia.StreamRemoved for stream" <<
streamId;
StreamedMediaStreamPtr stream = lookupStreamById(streamId);
if (!stream) {
return;
}
bool incomplete = mPriv->incompleteStreams.contains(stream);
if (incomplete) {
mPriv->incompleteStreams.removeOne(stream);
} else {
mPriv->streams.removeOne(stream);
}
if (isReady(FeatureStreams) && !incomplete) {
emit streamRemoved(stream);
}
// the stream was added/removed before become ready
if (!isReady(FeatureStreams) &&
mPriv->streams.size() == 0 &&
mPriv->incompleteStreams.size() == 0) {
mPriv->readinessHelper->setIntrospectCompleted(FeatureStreams, true);
}
}
void StreamedMediaChannel::onStreamDirectionChanged(uint streamId,
uint streamDirection, uint streamPendingFlags)
{
debug() << "Received StreamedMedia.StreamDirectionChanged for stream" <<
streamId << "with direction changed to" << streamDirection;
StreamedMediaStreamPtr stream = lookupStreamById(streamId);
if (!stream) {
return;
}
uint oldDirection = stream->direction();
uint oldPendingFlags = stream->pendingSend();
stream->gotDirection(streamDirection, streamPendingFlags);
if (oldDirection != streamDirection ||
oldPendingFlags != streamPendingFlags) {
emit streamDirectionChanged(stream,
(MediaStreamDirection) streamDirection,
(MediaStreamPendingSend) streamPendingFlags);
}
}
void StreamedMediaChannel::onStreamStateChanged(uint streamId,
uint streamState)
{
debug() << "Received StreamedMedia.StreamStateChanged for stream" <<
streamId << "with state changed to" << streamState;
StreamedMediaStreamPtr stream = lookupStreamById(streamId);
if (!stream) {
return;
}
uint oldState = stream->state();
stream->gotStreamState(streamState);
if (oldState != streamState) {
emit streamStateChanged(stream, (MediaStreamState) streamState);
}
}
void StreamedMediaChannel::onStreamError(uint streamId,
uint errorCode, const QString &errorMessage)
{
debug() << "Received StreamedMedia.StreamError for stream" <<
streamId << "with error code" << errorCode <<
"and message:" << errorMessage;
StreamedMediaStreamPtr stream = lookupStreamById(streamId);
if (!stream) {
return;
}
emit streamError(stream, (MediaStreamError) errorCode, errorMessage);
}
void StreamedMediaChannel::gotLocalHoldState(QDBusPendingCallWatcher *watcher)
{
QDBusPendingReply<uint, uint> reply = *watcher;
if (reply.isError()) {
warning().nospace() << "StreamedMedia::Hold::GetHoldState()"
" failed with " << reply.error().name() << ": " <<
reply.error().message();
debug() << "Ignoring error getting hold state and assuming we're not "
"on hold";
onLocalHoldStateChanged(mPriv->localHoldState,
mPriv->localHoldStateReason);
watcher->deleteLater();
return;
}
debug() << "Got reply to StreamedMedia::Hold::GetHoldState()";
onLocalHoldStateChanged(reply.argumentAt<0>(), reply.argumentAt<1>());
watcher->deleteLater();
}
void StreamedMediaChannel::onLocalHoldStateChanged(uint localHoldState,
uint localHoldStateReason)
{
bool changed = false;
if (mPriv->localHoldState != static_cast<LocalHoldState>(localHoldState) ||
mPriv->localHoldStateReason != static_cast<LocalHoldStateReason>(localHoldStateReason)) {
changed = true;
}
mPriv->localHoldState = static_cast<LocalHoldState>(localHoldState);
mPriv->localHoldStateReason = static_cast<LocalHoldStateReason>(localHoldStateReason);
if (!isReady(FeatureLocalHoldState)) {
mPriv->readinessHelper->setIntrospectCompleted(FeatureLocalHoldState, true);
} else {
if (changed) {
emit localHoldStateChanged(mPriv->localHoldState,
mPriv->localHoldStateReason);
}
}
}
StreamedMediaStreamPtr StreamedMediaChannel::addStream(const MediaStreamInfo &streamInfo)
{
StreamedMediaStreamPtr stream = StreamedMediaStreamPtr(
new StreamedMediaStream(StreamedMediaChannelPtr(this), streamInfo));
mPriv->incompleteStreams.append(stream);
connect(stream->becomeReady(),
SIGNAL(finished(Tp::PendingOperation*)),
SLOT(onStreamReady(Tp::PendingOperation*)));
return stream;
}
StreamedMediaStreamPtr StreamedMediaChannel::lookupStreamById(uint streamId)
{
foreach (const StreamedMediaStreamPtr &stream, mPriv->streams) {
if (stream->id() == streamId) {
return stream;
}
}
foreach (const StreamedMediaStreamPtr &stream, mPriv->incompleteStreams) {
if (stream->id() == streamId) {
return stream;
}
}
return StreamedMediaStreamPtr();
}
} // Tp
|