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
|
/*
This file is part of Android File Transfer For Linux.
Copyright (C) 2015-2020 Vladimir Menshakov
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <mtp/ptp/Session.h>
#include <mtp/ptp/Messages.h>
#include <mtp/ptp/Container.h>
#include <mtp/ptp/OperationRequest.h>
#include <mtp/ptp/ByteArrayObjectStream.h>
#include <mtp/ptp/JoinedObjectStream.h>
#include <mtp/log.h>
#include <usb/Device.h>
#include <limits>
#include <array>
namespace mtp
{
const StorageId Session::AnyStorage(0);
const StorageId Session::AllStorages(0xffffffffu);
const ObjectId Session::Device(0);
const ObjectId Session::Root(0xffffffffu);
#define CHECK_RESPONSE(RCODE) do { \
if ((RCODE) != ResponseType::OK && (RCODE) != ResponseType::SessionAlreadyOpen) \
throw InvalidResponseException(__func__, (RCODE)); \
} while(false)
class Session::Transaction
{
Session * _session;
public:
u32 Id;
Transaction(Session *session): _session(session)
{ session->SetCurrentTransaction(this); }
~Transaction()
{ _session->SetCurrentTransaction(0); }
};
Session::Session(const PipePacketer & packeter, u32 sessionId):
_packeter(packeter), _sessionId(sessionId), _nextTransactionId(1), _transaction(),
_getObjectModificationTimeBuggy(false), _separateBulkWrites(false),
_defaultTimeout(DefaultTimeout)
{
{
Transaction tr(this);
_deviceInfo = GetDeviceInfo(_packeter, tr.Id, _defaultTimeout);
}
if (_deviceInfo.Manufacturer == "Microsoft")
_separateBulkWrites = true;
_getPartialObject64Supported = _deviceInfo.Supports(OperationCode::GetPartialObject64);
_getObjectPropertyListSupported = _deviceInfo.Supports(OperationCode::GetObjectPropList);
_getObjectPropValueSupported = _deviceInfo.Supports(OperationCode::GetObjectPropValue);
_editObjectSupported = _deviceInfo.Supports(OperationCode::BeginEditObject) &&
_deviceInfo.Supports(OperationCode::EndEditObject) &&
_deviceInfo.Supports(OperationCode::TruncateObject) &&
_deviceInfo.Supports(OperationCode::SendPartialObject);
}
Session::~Session()
{ try { Close(); } catch(const std::exception &ex) { } }
void Session::SetCurrentTransaction(Transaction *transaction)
{
scoped_mutex_lock l(_transactionMutex);
_transaction = transaction;
if (_transaction)
_transaction->Id = _nextTransactionId++;
}
void Session::Send(PipePacketer &packeter, const OperationRequest &req, int timeout)
{
if (timeout <= 0)
timeout = DefaultTimeout;
Container container(req);
packeter.Write(container.Data, timeout);
}
void Session::Send(const OperationRequest &req, int timeout)
{
if (timeout <= 0)
timeout = _defaultTimeout;
Send(_packeter, req, timeout);
}
void Session::Close()
{
scoped_mutex_lock l(_mutex);
Transaction transaction(this);
Send(OperationRequest(OperationCode::CloseSession, transaction.Id));
ByteArray data, response;
ResponseType responseCode;
_packeter.Read(0, data, responseCode, response, _defaultTimeout);
//HexDump("payload", data);
}
ByteArray Session::Get(PipePacketer &packeter, u32 transaction, ByteArray & response, int timeout)
{
if (timeout <= 0)
timeout = DefaultTimeout;
ByteArray data;
ResponseType responseCode;
packeter.Read(transaction, data, responseCode, response, timeout);
CHECK_RESPONSE(responseCode);
return data;
}
ByteArray Session::Get(u32 transaction, ByteArray &response, int timeout)
{
if (timeout <= 0)
timeout = _defaultTimeout;
return Get(_packeter, transaction, response, timeout);
}
template<typename ... Args>
ByteArray Session::RunTransactionWithDataRequest(int timeout, OperationCode code, ByteArray & response, const IObjectInputStreamPtr & inputStream, Args && ... args)
{
#if 0
try
{ _packeter.PollEvent(_defaultTimeout); }
catch(const std::exception &ex)
{ error("exception in interrupt: ", ex.what()); }
#endif
scoped_mutex_lock l(_mutex);
if (!_deviceInfo.Supports(code))
throw std::runtime_error("Operation code " + ToString(code) + " not supported.");
Transaction transaction(this);
Send(OperationRequest(code, transaction.Id, std::forward<Args>(args) ... ), timeout);
if (inputStream)
{
DataRequest req(code, transaction.Id);
Container container(req, inputStream);
if (_separateBulkWrites)
{
_packeter.Write(std::make_shared<ByteArrayObjectInputStream>(container.Data), timeout);
_packeter.Write(inputStream, timeout);
} else
_packeter.Write(std::make_shared<JoinedObjectInputStream>(std::make_shared<ByteArrayObjectInputStream>(container.Data), inputStream), timeout);
}
return Get(transaction.Id, response);
}
msg::DeviceInfo Session::GetDeviceInfo(PipePacketer& packeter, u32 transactionId, int timeout)
{
ByteArray response;
Send(packeter, OperationRequest(OperationCode::GetDeviceInfo, transactionId), timeout);
auto info = Get(packeter, 0, response, timeout);
return ParseResponse<msg::DeviceInfo>(info);
}
msg::ObjectHandles Session::GetObjectHandles(StorageId storageId, ObjectFormat objectFormat, ObjectId parent, int timeout)
{ return ParseResponse<msg::ObjectHandles>(RunTransaction(timeout, OperationCode::GetObjectHandles, storageId.Id, static_cast<u32>(objectFormat), parent.Id)); }
msg::StorageIDs Session::GetStorageIDs()
{ return ParseResponse<msg::StorageIDs>(RunTransaction(_defaultTimeout, OperationCode::GetStorageIDs)); }
msg::StorageInfo Session::GetStorageInfo(StorageId storageId)
{ return ParseResponse<msg::StorageInfo>(RunTransaction(_defaultTimeout, OperationCode::GetStorageInfo, storageId.Id)); }
msg::SendObjectPropListResponse Session::SendObjectPropList(StorageId storageId, ObjectId parentId, ObjectFormat format, u64 objectSize, const ByteArray & propList)
{
ByteArray responseData;
IObjectInputStreamPtr inputStream = std::make_shared<ByteArrayObjectInputStream>(propList);
RunTransactionWithDataRequest(_defaultTimeout, OperationCode::SendObjectPropList, responseData, inputStream, storageId.Id, parentId.Id, static_cast<u32>(format), static_cast<u32>(objectSize >> 32), static_cast<u32>(objectSize));
return ParseResponse<msg::SendObjectPropListResponse>(responseData);
}
msg::NewObjectInfo Session::CreateDirectory(const std::string &name, ObjectId parentId, StorageId storageId, AssociationType type)
{
if (_deviceInfo.Supports(OperationCode::SendObjectPropList))
{
//modern way of creating objects
ByteArray propList;
{
OutputStream os(propList);
os.Write32(1); //number of props
os.Write32(0); //object handle
os.Write16(static_cast<u16>(ObjectProperty::ObjectFilename));
os.Write16(static_cast<u16>(DataTypeCode::String));
os.WriteString(name);
}
auto response = SendObjectPropList(storageId, parentId, ObjectFormat::Association, 0, propList);
msg::NewObjectInfo noi;
noi.StorageId = response.StorageId;
noi.ParentObjectId = response.ParentObjectId;
noi.ObjectId = response.ObjectId;
return noi;
}
else
{
mtp::msg::ObjectInfo oi;
oi.Filename = name;
oi.ParentObject = parentId;
oi.StorageId = storageId;
oi.ObjectFormat = mtp::ObjectFormat::Association;
oi.AssociationType = type;
return SendObjectInfo(oi, storageId, parentId);
}
}
msg::ObjectInfo Session::GetObjectInfo(ObjectId objectId)
{ return ParseResponse<msg::ObjectInfo>(RunTransaction(_defaultTimeout, OperationCode::GetObjectInfo, objectId.Id)); }
msg::ObjectPropertiesSupported Session::GetObjectPropertiesSupported(ObjectFormat format)
{ return ParseResponse<msg::ObjectPropertiesSupported>(RunTransaction(_defaultTimeout, OperationCode::GetObjectPropsSupported, static_cast<u32>(format))); }
ByteArray Session::GetObjectPropertyDesc(ObjectProperty code, ObjectFormat format)
{ return RunTransaction(_defaultTimeout, OperationCode::GetObjectPropDesc, static_cast<u32>(code), static_cast<u32>(format)); }
void Session::GetObject(ObjectId objectId, const IObjectOutputStreamPtr &outputStream)
{
scoped_mutex_lock l(_mutex);
Transaction transaction(this);
Send(OperationRequest(OperationCode::GetObject, transaction.Id, objectId.Id));
ByteArray response;
ResponseType responseCode;
_packeter.Read(transaction.Id, outputStream, responseCode, response, _defaultTimeout);
CHECK_RESPONSE(responseCode);
}
void Session::GetThumb(ObjectId objectId, const IObjectOutputStreamPtr &outputStream)
{
scoped_mutex_lock l(_mutex);
Transaction transaction(this);
Send(OperationRequest(OperationCode::GetThumb, transaction.Id, objectId.Id));
ByteArray response;
ResponseType responseCode;
_packeter.Read(transaction.Id, outputStream, responseCode, response, _defaultTimeout);
CHECK_RESPONSE(responseCode);
}
ByteArray Session::GetPartialObject(ObjectId objectId, u64 offset, u32 size)
{
if (_getPartialObject64Supported)
return RunTransaction(_defaultTimeout, OperationCode::GetPartialObject64, objectId.Id, offset, offset >> 32, size);
else
{
if (offset + size > std::numeric_limits<u32>::max())
throw std::runtime_error("32 bit overflow for GetPartialObject");
return RunTransaction(_defaultTimeout, OperationCode::GetPartialObject, objectId.Id, offset, size);
}
}
msg::NewObjectInfo Session::SendObjectInfo(const msg::ObjectInfo &objectInfo, StorageId storageId, ObjectId parentObject)
{
if (objectInfo.Filename.empty())
throw std::runtime_error("object filename must not be empty");
if (_deviceInfo.Supports(OperationCode::SendObjectPropList))
{
//modern way of creating objects
ByteArray propList;
{
OutputStream os(propList);
os.Write32(1); //number of props
os.Write32(0); //object handle
os.Write16(static_cast<u16>(ObjectProperty::ObjectFilename));
os.Write16(static_cast<u16>(DataTypeCode::String));
os.WriteString(objectInfo.Filename);
}
auto response = SendObjectPropList(storageId, parentObject, objectInfo.ObjectFormat, objectInfo.ObjectCompressedSize, propList);
msg::NewObjectInfo noi;
noi.StorageId = response.StorageId;
noi.ParentObjectId = response.ParentObjectId;
noi.ObjectId = response.ObjectId;
return noi;
}
scoped_mutex_lock l(_mutex);
Transaction transaction(this);
Send(OperationRequest(OperationCode::SendObjectInfo, transaction.Id, storageId.Id, parentObject.Id));
{
DataRequest req(OperationCode::SendObjectInfo, transaction.Id);
if (_separateBulkWrites)
{
ByteArray data;
OutputStream os(data);
objectInfo.Write(os);
auto is = std::make_shared<ByteArrayObjectInputStream>(data);
Container container(req, is);
_packeter.Write(container.Data, _defaultTimeout);
_packeter.Write(is, _defaultTimeout);
}
else
{
OutputStream stream(req.Data);
objectInfo.Write(stream);
Container container(req);
_packeter.Write(container.Data, _defaultTimeout);
}
}
ByteArray data, response;
ResponseType responseCode;
_packeter.Read(transaction.Id, data, responseCode, response, _defaultTimeout);
//HexDump("response", response);
CHECK_RESPONSE(responseCode);
return ParseResponse<msg::NewObjectInfo>(response);
}
void Session::SendObject(const IObjectInputStreamPtr &inputStream, int timeout)
{
scoped_mutex_lock l(_mutex);
Transaction transaction(this);
Send(OperationRequest(OperationCode::SendObject, transaction.Id));
{
DataRequest req(OperationCode::SendObject, transaction.Id);
Container container(req, inputStream);
if (_separateBulkWrites)
{
_packeter.Write(container.Data, timeout);
_packeter.Write(inputStream, timeout);
} else
_packeter.Write(std::make_shared<JoinedObjectInputStream>(std::make_shared<ByteArrayObjectInputStream>(container.Data), inputStream), timeout);
}
ByteArray response;
Get(transaction.Id, response);
}
void Session::BeginEditObject(ObjectId objectId)
{ RunTransaction(_defaultTimeout, OperationCode::BeginEditObject, objectId.Id); }
void Session::SendPartialObject(ObjectId objectId, u64 offset, const ByteArray &data)
{
IObjectInputStreamPtr inputStream = std::make_shared<ByteArrayObjectInputStream>(data);
ByteArray response;
RunTransactionWithDataRequest(_defaultTimeout, OperationCode::SendPartialObject, response, inputStream, objectId.Id, offset, offset >> 32, data.size());
}
void Session::TruncateObject(ObjectId objectId, u64 size)
{ RunTransaction(_defaultTimeout, OperationCode::TruncateObject, objectId.Id, size, size >> 32); }
void Session::EndEditObject(ObjectId objectId)
{ RunTransaction(_defaultTimeout, OperationCode::EndEditObject, objectId.Id); }
void Session::SetObjectProperty(ObjectId objectId, ObjectProperty property, const ByteArray &value)
{
IObjectInputStreamPtr inputStream = std::make_shared<ByteArrayObjectInputStream>(value);
ByteArray response;
RunTransactionWithDataRequest(_defaultTimeout, OperationCode::SetObjectPropValue, response, inputStream, objectId.Id, (u16)property);
}
StorageId Session::GetObjectStorage(mtp::ObjectId id)
{
StorageId storageId(GetObjectIntegerProperty(id, ObjectProperty::StorageId));
if (storageId == AnyStorage || storageId == AllStorages)
throw std::runtime_error("returned wildcard storage id as storage for object");
return storageId;
}
ObjectId Session::GetObjectParent(mtp::ObjectId id)
{ return ObjectId(GetObjectIntegerProperty(id, ObjectProperty::ParentObject)); }
void Session::SetObjectProperty(ObjectId objectId, ObjectProperty property, const std::string &value)
{
ByteArray data;
data.reserve(value.size() * 2 + 1);
OutputStream stream(data);
stream << value;
SetObjectProperty(objectId, property, data);
}
ByteArray Session::GetObjectProperty(ObjectId objectId, ObjectProperty property)
{ return RunTransaction(_defaultTimeout, OperationCode::GetObjectPropValue, objectId.Id, (u16)property); }
u64 Session::GetObjectIntegerProperty(ObjectId objectId, ObjectProperty property)
{
if (!_getObjectPropValueSupported) {
auto info = GetObjectInfo(objectId);
switch(property)
{
case ObjectProperty::StorageId:
return info.StorageId.Id;
case ObjectProperty::ObjectFormat:
return static_cast<u32>(info.ObjectFormat);
case ObjectProperty::ProtectionStatus:
return info.ProtectionStatus;
case ObjectProperty::ObjectSize:
return info.ObjectCompressedSize;
case ObjectProperty::RepresentativeSampleFormat:
return info.ThumbFormat;
case ObjectProperty::RepresentativeSampleSize:
return info.ThumbCompressedSize;
case ObjectProperty::RepresentativeSampleWidth:
return info.ThumbPixWidth;
case ObjectProperty::RepresentativeSampleHeight:
return info.ThumbPixHeight;
case ObjectProperty::Width:
return info.ImagePixWidth;
case ObjectProperty::Height:
return info.ImagePixHeight;
case ObjectProperty::ImageBitDepth:
return info.ImageBitDepth;
case ObjectProperty::ParentObject:
return info.ParentObject.Id;
case ObjectProperty::AssociationType:
return static_cast<u32>(info.AssociationType);
case ObjectProperty::AssociationDesc:
return info.AssociationDesc;
default:
throw std::runtime_error("Device does not support object properties and no ObjectInfo fallback for " + ToString(property) + ".");
}
}
return ReadSingleInteger(GetObjectProperty(objectId, property));
}
void Session::SetObjectProperty(ObjectId objectId, ObjectProperty property, u64 value)
{
std::array<u8, sizeof(value)> data;
std::fill(data.begin(), data.end(), 0);
size_t i;
for(i = 0; i < data.size() && value != 0; ++i, value >>= 8)
{
data[i] = value;
}
if (i <= 4)
i = 4;
else
i = 8;
SetObjectProperty(objectId, property, ByteArray(data.begin(), data.begin() + i));
}
void Session::SetObjectPropertyAsArray(ObjectId objectId, ObjectProperty property, const ByteArray &value)
{
auto n = value.size();
ByteArray array;
OutputStream out(array);
array.reserve(n + 4);
out.WriteArray(value);
SetObjectProperty(objectId, property, array);
}
std::string Session::GetObjectStringProperty(ObjectId objectId, ObjectProperty property)
{
if (!_getObjectPropValueSupported) {
auto info = GetObjectInfo(objectId);
switch(property)
{
case ObjectProperty::ObjectFilename:
return info.Filename;
case ObjectProperty::DateCreated:
case ObjectProperty::DateAuthored:
case ObjectProperty::DateAdded:
return info.CaptureDate;
case ObjectProperty::DateModified:
return info.ModificationDate;
default:
throw std::runtime_error("Device does not support object properties and no ObjectInfo fallback for " + ToString(property) + ".");
}
}
return ReadSingleString(GetObjectProperty(objectId, property));
}
time_t Session::GetObjectModificationTime(ObjectId id)
{
if (!_getObjectModificationTimeBuggy)
{
try
{
auto mtimeStr = GetObjectStringProperty(id, mtp::ObjectProperty::DateModified);
auto mtime = mtp::ConvertDateTime(mtimeStr);
if (mtime != 0) //long standing Android bug
return mtime;
}
catch(const std::exception &ex)
{
debug("exception while getting mtime: ", ex.what());
}
_getObjectModificationTimeBuggy = true;
}
auto oi = GetObjectInfo(id);
return mtp::ConvertDateTime(oi.ModificationDate);
}
u64 Session::GetDeviceIntegerProperty(DeviceProperty property)
{ return ReadSingleInteger(GetDeviceProperty(property)); }
std::string Session::GetDeviceStringProperty(DeviceProperty property)
{ return ReadSingleString(GetDeviceProperty(property)); }
void Session::SetDeviceProperty(DeviceProperty property, const ByteArray &value)
{
IObjectInputStreamPtr inputStream = std::make_shared<ByteArrayObjectInputStream>(value);
ByteArray response;
RunTransactionWithDataRequest(_defaultTimeout, OperationCode::SetDevicePropValue, response, inputStream, (u16)property);
}
void Session::SetDeviceProperty(DeviceProperty property, const std::string &value)
{
ByteArray data;
data.reserve(value.size() * 2 + 1);
OutputStream stream(data);
stream << value;
SetDeviceProperty(property, data);
}
ByteArray Session::GetObjectPropertyList(ObjectId objectId, ObjectFormat format, ObjectProperty property, u32 groupCode, u32 depth, int timeout)
{ return RunTransaction(timeout, OperationCode::GetObjectPropList, objectId.Id, (u32)format, property != ObjectProperty::All? (u32)property: 0xffffffffu, groupCode, depth); }
void Session::DeleteObject(ObjectId objectId, int timeout)
{ RunTransaction(timeout, OperationCode::DeleteObject, objectId.Id, 0); }
msg::DevicePropertyDesc Session::GetDevicePropertyDesc(DeviceProperty property)
{ return ParseResponse<msg::DevicePropertyDesc>(RunTransaction(_defaultTimeout, OperationCode::GetDevicePropDesc, static_cast<u32>(property))); }
ByteArray Session::GetDeviceProperty(DeviceProperty property)
{ return RunTransaction(_defaultTimeout, OperationCode::GetDevicePropValue, static_cast<u32>(property)); }
ByteArray Session::GenericOperation(OperationCode code)
{ return RunTransaction(_defaultTimeout, code); }
ByteArray Session::GenericOperation(OperationCode code, const ByteArray & payload)
{
IObjectInputStreamPtr inputStream = std::make_shared<ByteArrayObjectInputStream>(payload);
ByteArray response;
return RunTransactionWithDataRequest(_defaultTimeout, code, response, inputStream);
}
void Session::EnableSecureFileOperations(u32 cmac[4])
{ RunTransaction(_defaultTimeout, OperationCode::EnableTrustedFilesOperations, cmac[0], cmac[1], cmac[2], cmac[3]); }
void Session::RebootDevice()
{ RunTransaction(_defaultTimeout, OperationCode::RebootDevice); }
Session::ObjectEditSession::ObjectEditSession(const SessionPtr & session, ObjectId objectId): _session(session), _objectId(objectId)
{ session->BeginEditObject(objectId); }
Session::ObjectEditSession::~ObjectEditSession()
{ _session->EndEditObject(_objectId); }
void Session::ObjectEditSession::Truncate(u64 size)
{ _session->TruncateObject(_objectId, size); }
void Session::ObjectEditSession::Send(u64 offset, const ByteArray &data)
{ _session->SendPartialObject(_objectId, offset, data); }
void Session::AbortCurrentTransaction(int timeout)
{
u32 transactionId;
{
scoped_mutex_lock l(_transactionMutex);
if (!_transaction)
throw std::runtime_error("no transaction in progress");
transactionId = _transaction->Id;
}
_packeter.Abort(transactionId, timeout);
}
void Session::SetObjectReferences(ObjectId objectId, const msg::ObjectHandles & objects)
{
ByteArray data;
OutputStream out(data);
objects.Write(out);
IObjectInputStreamPtr inputStream = std::make_shared<ByteArrayObjectInputStream>(data);
ByteArray response;
RunTransactionWithDataRequest(_defaultTimeout, OperationCode::SetObjectReferences, response, inputStream, objectId.Id);
}
msg::ObjectHandles Session::GetObjectReferences(ObjectId objectId)
{ return ParseResponse<msg::ObjectHandles>(RunTransaction(_defaultTimeout, OperationCode::GetObjectReferences, objectId.Id)); }
}
|