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
|
#include "PrimeClient.h"
#include "XnLinkInputStreamsMgr.h"
#include <PSLink.h>
#include "IConnectionFactory.h"
#include "XnPsVersion.h"
#include <XnLog.h>
#include "XnOSCpp.h"
#define XN_MASK_PRIME_CLIENT "PrimeClient"
namespace xn
{
const XnUInt32 PrimeClient::MAX_COMMAND_SIZE = 0x40000;
const XnUInt32 PrimeClient::CONT_STREAM_PREDEFINED_BUFFER_SIZE = 0x40000;
PrimeClient::PrimeClient()
{
m_pConnectionFactory = NULL;
m_bInitialized = FALSE;
m_bConnected = FALSE;
/* Global properties */
xnOSMemSet(&m_fwVersion, 0, sizeof(m_fwVersion));
xnOSMemSet(&m_protocolVersion, 0, sizeof(m_protocolVersion));
m_nHWVersion = 0;
xnOSMemSet(&m_strSerialNumber, 0, sizeof(m_strSerialNumber));
m_nFWLogStreamID = XN_LINK_STREAM_ID_NONE;
}
PrimeClient::~PrimeClient()
{
Shutdown();
}
XnStatus PrimeClient::Init(const XnChar* strConnString, XnTransportType transportType)
{
XnStatus nRetVal = XN_STATUS_OK;
m_pConnectionFactory = CreateConnectionFactory(transportType);
XN_VALIDATE_ALLOC_PTR(m_pConnectionFactory);
nRetVal = m_pConnectionFactory->Init(strConnString);
XN_IS_STATUS_OK_LOG_ERROR("Init connection factory", nRetVal);
xnOSStrCopy(m_strConnectionString, strConnString, sizeof(m_strConnectionString));
nRetVal = m_linkInputStreamsMgr.Init();
XN_IS_STATUS_OK_LOG_ERROR("Init link input streams mgr", nRetVal);
nRetVal = m_linkOutputStreamsMgr.Init();
XN_IS_STATUS_OK_LOG_ERROR("Init link output streams mgr", nRetVal);
nRetVal = m_linkControlEndpoint.Init(MAX_COMMAND_SIZE, m_pConnectionFactory);
XN_IS_STATUS_OK_LOG_ERROR("Init link control endpoint", nRetVal);
nRetVal = m_inputDataEndpoints.SetSize(m_pConnectionFactory->GetNumInputDataConnections());
XN_IS_STATUS_OK_LOG_ERROR("Set size of input data endpoints array", nRetVal);
m_bInitialized = TRUE;
return XN_STATUS_OK;
}
void PrimeClient::Shutdown()
{
if (m_bInitialized)
{
for (XnUInt32 nEndpointID = 0; nEndpointID < m_inputDataEndpoints.GetSize(); nEndpointID++)
{
m_inputDataEndpoints[nEndpointID].Shutdown();
}
m_outputDataEndpoint.Shutdown();
//First shutdown stream managers before control endpoint, because they might need to send a StopStreaming command
m_linkOutputStreamsMgr.Shutdown();
m_linkInputStreamsMgr.Shutdown();
m_linkControlEndpoint.Shutdown();
xnOSSleep(200); //TODO: Get rid of this once we have a disconnection command
m_pConnectionFactory->Shutdown();
XN_DELETE(m_pConnectionFactory);
m_pConnectionFactory = NULL;
m_bInitialized = FALSE;
}
}
XnBool PrimeClient::IsInitialized() const
{
return m_bInitialized;
}
XnStatus PrimeClient::Connect()
{
XnStatus nRetVal = XN_STATUS_OK;
if (!m_bConnected)
{
nRetVal = m_linkControlEndpoint.Connect();
XN_IS_STATUS_OK_LOG_ERROR("Connect link control endpoint", nRetVal);
// Connect output data endpoint (if any)
//TODO: Connect output data endpoint only on the first time we send anything to device.
nRetVal = ConnectOutputDataEndpoint();
XN_IS_STATUS_OK_LOG_ERROR("Connect output data endpoint", nRetVal);
nRetVal = m_linkControlEndpoint.GetSupportedProperties(m_supportedProps);
XN_IS_STATUS_OK_LOG_ERROR("Get supported properties", nRetVal);
// Get some versions
XnLinkDetailedVersion fwVersion;
nRetVal = m_linkControlEndpoint.GetFWVersion(fwVersion);
XN_IS_STATUS_OK_LOG_ERROR("Get FW version", nRetVal);
m_fwVersion.m_nMajor = fwVersion.m_nMajor;
m_fwVersion.m_nMinor = fwVersion.m_nMinor;
m_fwVersion.m_nMaintenance = fwVersion.m_nMaintenance;
m_fwVersion.m_nBuild = fwVersion.m_nBuild;
xnOSStrCopy(m_fwVersion.m_strModifier, fwVersion.m_strModifier, sizeof(m_fwVersion.m_strModifier));
nRetVal = m_linkControlEndpoint.GetProtocolVersion(m_protocolVersion);
XN_IS_STATUS_OK_LOG_ERROR("Get protocol version", nRetVal);
nRetVal = m_linkControlEndpoint.GetHardwareVersion(m_nHWVersion);
XN_IS_STATUS_OK_LOG_ERROR("Get hardware version", nRetVal);
nRetVal = m_linkControlEndpoint.GetSerialNumber(m_strSerialNumber, sizeof(m_strSerialNumber));
XN_IS_STATUS_OK_LOG_ERROR("Get serial number", nRetVal);
xnLogInfo(XN_MASK_PRIME_CLIENT, "Prime Client is now connected.");
LogVersions();
m_bConnected = TRUE;
}
return XN_STATUS_OK;
}
void PrimeClient::Disconnect()
{
for (XnUInt16 i = 0; i < m_inputDataEndpoints.GetSize(); i++)
{
m_inputDataEndpoints[i].Disconnect();
}
m_linkControlEndpoint.Disconnect();
}
XnBool PrimeClient::IsConnected() const
{
return m_bConnected;
}
const LinkInputStream* PrimeClient::GetInputStream(XnUInt16 nStreamID) const
{
return m_linkInputStreamsMgr.GetInputStream(nStreamID);
}
LinkInputStream* PrimeClient::GetInputStream(XnUInt16 nStreamID)
{
return m_linkInputStreamsMgr.GetInputStream(nStreamID);
}
const XnDetailedVersion& PrimeClient::GetFWVersion() const
{
return m_fwVersion;
}
const XnUInt32 PrimeClient::GetHWVersion() const
{
return m_nHWVersion;
}
const XnLeanVersion& PrimeClient::GetDeviceProtocolVersion() const
{
return m_protocolVersion;
}
const XnChar* PrimeClient::GetSerialNumber() const
{
return m_strSerialNumber;
}
const XnStatus PrimeClient::GetComponentsVersions(xnl::Array<XnComponentVersion>& componentVersions)
{
return m_linkControlEndpoint.GetComponentsVersions(componentVersions);
}
XnStatus PrimeClient::InitOutputStream(XnUInt16 nStreamID,
XnUInt32 nMaxMsgSize,
XnUInt16 nMaxPacketSize,
XnLinkCompressionType compression,
XnStreamFragLevel streamFragLevel)
{
return m_linkOutputStreamsMgr.InitOutputStream(nStreamID, nMaxMsgSize, nMaxPacketSize, compression,
streamFragLevel, &m_outputDataEndpoint);
}
void PrimeClient::ShutdownOutputStream(XnUInt16 nStreamID)
{
m_linkOutputStreamsMgr.ShutdownOutputStream(nStreamID);
}
void PrimeClient::HandleLinkDataEndpointDisconnection(XnUInt16 /*nEndpointID*/)
{
}
XnStatus PrimeClient::SoftReset()
{
return m_linkControlEndpoint.SoftReset();
}
XnStatus PrimeClient::HardReset()
{
return m_linkControlEndpoint.HardReset();
}
XnStatus PrimeClient::WriteI2C(XnUInt8 nDeviceID, XnUInt8 nAddressSize, XnUInt32 nAddress, XnUInt8 nValueSize, XnUInt32 nValue, XnUInt32 nMask)
{
return m_linkControlEndpoint.WriteI2C(nDeviceID, nAddressSize, nAddress, nValueSize, nValue, nMask);
}
XnStatus PrimeClient::ReadI2C(XnUInt8 nDeviceID, XnUInt8 nAddressSize, XnUInt32 nAddress, XnUInt8 nValueSize, XnUInt32& nValue)
{
return m_linkControlEndpoint.ReadI2C(nDeviceID, nAddressSize, nAddress, nValueSize, nValue);
}
XnStatus PrimeClient::WriteAHB(XnUInt32 nAddress, XnUInt32 nValue, XnUInt8 nBitOffset, XnUInt8 nBitWidth)
{
return m_linkControlEndpoint.WriteAHB(nAddress, nValue, nBitOffset, nBitWidth);
}
XnStatus PrimeClient::ReadAHB(XnUInt32 nAddress, XnUInt8 nBitOffset, XnUInt8 nBitWidth, XnUInt32& nValue)
{
return m_linkControlEndpoint.ReadAHB(nAddress, nBitOffset, nBitWidth, nValue);
}
XnStatus PrimeClient::EnumerateStreams(xnl::Array<XnFwStreamInfo>& aStreamInfos)
{
return m_linkControlEndpoint.EnumerateStreams(aStreamInfos);
}
XnStatus PrimeClient::EnumerateStreams(XnStreamType streamType, xnl::Array<XnFwStreamInfo>& aStreamInfos)
{
XnStatus nRetVal = XN_STATUS_OK;
xnl::Array<XnFwStreamInfo> aAll;
nRetVal = m_linkControlEndpoint.EnumerateStreams(aAll);
XN_IS_STATUS_OK(nRetVal);
for (XnUInt32 i = 0; i < aAll.GetSize(); ++i)
{
if ((XnUInt32)aAll[i].type == streamType)
{
aStreamInfos.AddLast(aAll[i]);
}
}
return XN_STATUS_OK;
}
XnStatus PrimeClient::CreateInputStream(XnStreamType streamType, const XnChar* strCreationInfo, XnUInt16& nStreamID)
{
if (!m_linkInputStreamsMgr.HasStreamOfType(streamType,strCreationInfo, nStreamID))
{
// No stream of this type exists. Create a new one
XnStatus nRetVal = XN_STATUS_OK;
XnUInt16 nEndpointID = 0;
//Send create stream command
nRetVal = CreateInputStreamImpl((XnLinkStreamType)streamType, strCreationInfo, nStreamID, nEndpointID);
XN_IS_STATUS_OK_LOG_ERROR("Create stream", nRetVal);
xnLogInfo(XN_MASK_LINK, "Created input stream %u of type '%s' on endpoint %u",
nStreamID, xnLinkStreamTypeToString(streamType), nEndpointID);
}
// now let the stream manager know that we have another "holder" of the stream
m_linkInputStreamsMgr.RegisterStreamOfType(streamType, strCreationInfo, nStreamID);
return XN_STATUS_OK;
}
XnStatus PrimeClient::DestroyInputStream(XnUInt16 nStreamID)
{
if (m_linkInputStreamsMgr.UnregisterStream(nStreamID))
{
// we were the last ones "holding" the stream
XnStatus nRetVal = XN_STATUS_OK;
nRetVal = m_linkControlEndpoint.DestroyInputStream(nStreamID);
XN_IS_STATUS_OK_LOG_ERROR("Destroy stream", nRetVal);
m_linkInputStreamsMgr.ShutdownInputStream(nStreamID);
xnLogInfo(XN_MASK_PRIME_CLIENT, "Input stream %u destroyed.", nStreamID);
}
return XN_STATUS_OK;
}
XnStatus PrimeClient::BeginUploadFileOnControlEP()
{
return m_linkControlEndpoint.BeginUpload();
}
XnStatus PrimeClient::EndUploadFileOnControlEP()
{
return m_linkControlEndpoint.EndUpload();
}
XnStatus PrimeClient::UploadFileOnControlEP(const XnChar* strFileName, XnBool bOverrideFactorySettings)
{
return m_linkControlEndpoint.UploadFile(strFileName, bOverrideFactorySettings);
}
XnStatus PrimeClient::FormatZone(XnUInt8 nZone)
{
return m_linkControlEndpoint.FormatZone(nZone);
}
XnStatus PrimeClient::ConnectOutputDataEndpoint()
{
XnStatus nRetVal = XN_STATUS_OK;
if (m_outputDataEndpoint.IsInitialized())
{
nRetVal = m_outputDataEndpoint.Connect();
XN_IS_STATUS_OK_LOG_ERROR("Connect output data endpoint", nRetVal);
}
return XN_STATUS_OK;
}
XnStatus PrimeClient::GetFileList(xnl::Array<XnFwFileEntry>& files)
{
return m_linkControlEndpoint.GetFileList(files);
}
XnStatus PrimeClient::DownloadFile(XnUInt16 zone, const XnChar* strFirmwareFileName, const XnChar* strTargetFile)
{
return m_linkControlEndpoint.DownloadFile(zone, strFirmwareFileName, strTargetFile);
}
XnStatus PrimeClient::SetEmitterActive(XnBool bActive)
{
return m_linkControlEndpoint.SetEmitterActive(bActive);
}
void PrimeClient::LogVersions()
{
static XnBool bVersionsLoggedOnce = FALSE;
if (!bVersionsLoggedOnce)
{
xnLogVerbose(XN_MASK_PRIME_CLIENT, "Prime Client version:\t%s", XN_PS_BRIEF_VERSION_STRING);
xnLogVerbose(XN_MASK_PRIME_CLIENT, "Host protocol version:\t%u.%u", XN_LINK_PROTOCOL_MAJOR_VERSION, XN_LINK_PROTOCOL_MINOR_VERSION);
xnLogVerbose(XN_MASK_PRIME_CLIENT, "Device Protocol version:\t%u.%u", m_protocolVersion.m_nMajor, m_protocolVersion.m_nMinor);
xnLogVerbose(XN_MASK_PRIME_CLIENT, "Device FW version:\t\t%u.%u.%u.%u-%s", m_fwVersion.m_nMajor, m_fwVersion.m_nMinor, m_fwVersion.m_nMaintenance, m_fwVersion.m_nBuild, m_fwVersion.m_strModifier);
xnLogVerbose(XN_MASK_PRIME_CLIENT, "Device HW version:\t\t0x%04X", m_nHWVersion);
xnLogVerbose(XN_MASK_PRIME_CLIENT, "Device SerialNumber:\t%s", m_strSerialNumber);
bVersionsLoggedOnce = TRUE;
}
}
XnStatus PrimeClient::OpenFWLogFile(XnUInt8 logID)
{
XnStatus nRetVal = XN_STATUS_OK;
//If no stream started, start it
if (m_nFWLogStreamID == XN_LINK_STREAM_ID_NONE)
{
nRetVal = StartFWLog();
XN_IS_STATUS_OK_LOG_ERROR("Start FWLog stream", nRetVal);
}
//Get FW Log input stream
LinkInputStream* pFWLogStream = GetInputStream(m_nFWLogStreamID);
if (pFWLogStream == NULL)
{
xnLogError(XN_MASK_PRIME_CLIENT, "FW log input stream is NULL?!");
XN_ASSERT(FALSE);
return XN_STATUS_ERROR;
}
//Open the log file
nRetVal = m_linkControlEndpoint.OpenFWLogFile(logID, pFWLogStream->GetStreamID());
return nRetVal;
}
XnStatus PrimeClient::CloseFWLogFile(XnUInt8 logID)
{
XnStatus nRetVal = XN_STATUS_OK;
//If no stream started, something is wrong
if (m_nFWLogStreamID == XN_LINK_STREAM_ID_NONE)
{
xnLogError(XN_MASK_PRIME_CLIENT, "No FW log input stream");
XN_ASSERT(FALSE);
return XN_STATUS_ERROR;
}
//Get FW Log input stream
LinkInputStream* pFWLogStream = GetInputStream(m_nFWLogStreamID);
if (pFWLogStream == NULL)
{
xnLogError(XN_MASK_PRIME_CLIENT, "FW log input stream is NULL?!");
XN_ASSERT(FALSE);
return XN_STATUS_ERROR;
}
//Close the log file
nRetVal = m_linkControlEndpoint.CloseFWLogFile(logID, pFWLogStream->GetStreamID());
return nRetVal;
}
XnStatus PrimeClient::StartFWLog()
{
XnStatus nRetVal = XN_STATUS_OK;
xnl::Array<XnFwStreamInfo> fwLogStreamInfos;
XnUInt16 nEndpointID = 0;
//Enumerate log streams (there should be exactly one)
nRetVal = EnumerateStreams(XN_LINK_STREAM_TYPE_LOG, fwLogStreamInfos);
XN_IS_STATUS_OK_LOG_ERROR("Enumerate log streams", nRetVal);
if (fwLogStreamInfos.GetSize() == 0)
{
xnLogError(XN_MASK_PRIME_CLIENT, "No FW log stream exists in device");
XN_ASSERT(FALSE);
return XN_STATUS_ERROR;
}
if (fwLogStreamInfos.GetSize() > 1)
{
xnLogError(XN_MASK_PRIME_CLIENT, "Only one FW log stream is supported");
XN_ASSERT(FALSE);
return XN_STATUS_ERROR;
}
//Create log stream (from first enumeration result)
nRetVal = CreateInputStreamImpl(XN_LINK_STREAM_TYPE_LOG, fwLogStreamInfos[0].creationInfo, m_nFWLogStreamID, nEndpointID);
XN_IS_STATUS_OK_LOG_ERROR("Create log input stream", nRetVal);
LinkInputStream* pFWLogStream = GetInputStream(m_nFWLogStreamID);
if (pFWLogStream == NULL)
{
xnLogError(XN_MASK_PRIME_CLIENT, "FW log input stream is NULL?!");
XN_ASSERT(FALSE);
return XN_STATUS_ERROR;
}
//Start the log stream
nRetVal = pFWLogStream->Start();
XN_IS_STATUS_OK_LOG_ERROR("Start FW Log Stream", nRetVal);
xnLogInfo(XN_MASK_PRIME_CLIENT, "FW Log started on stream %u, endpoint %u", m_nFWLogStreamID, nEndpointID);
return XN_STATUS_OK;
}
XnStatus PrimeClient::StopFWLog()
{
XnStatus nRetVal = XN_STATUS_OK;
if (m_nFWLogStreamID != XN_LINK_STREAM_ID_NONE)
{
//Get FW Log input stream
LinkInputStream* pFWLogStream = GetInputStream(m_nFWLogStreamID);
if (pFWLogStream == NULL)
{
xnLogError(XN_MASK_PRIME_CLIENT, "FW log input stream is NULL?!");
XN_ASSERT(FALSE);
return XN_STATUS_ERROR;
}
//Stop stream
nRetVal = pFWLogStream->Stop();
XN_IS_STATUS_OK_LOG_ERROR("Stop FW log stream", nRetVal);
//Destroy stream
nRetVal = DestroyInputStream(m_nFWLogStreamID);
XN_IS_STATUS_OK_LOG_ERROR("Destroy input stream", nRetVal);
//Mark stream as unused
m_nFWLogStreamID = XN_LINK_STREAM_ID_NONE;
}
return XN_STATUS_OK;
}
XnStatus PrimeClient::CreateInputStreamImpl(XnLinkStreamType streamType, const XnChar* strCreationInfo, XnUInt16& nStreamID, XnUInt16& nEndpointID)
{
XnStatus nRetVal = XN_STATUS_OK;
nRetVal = m_linkControlEndpoint.CreateInputStream(streamType, strCreationInfo, nStreamID, nEndpointID);
XN_IS_STATUS_OK_LOG_ERROR("Create stream on device", nRetVal);
if (nEndpointID > m_inputDataEndpoints.GetSize())
{
xnLogError(XN_MASK_PRIME_CLIENT, "Stream %u was created on non-existing endpoint %u", nStreamID, nEndpointID);
XN_ASSERT(FALSE);
return XN_STATUS_ERROR;
}
if (!m_inputDataEndpoints[nEndpointID].IsInitialized())
{
xnLogVerbose(XN_MASK_PRIME_CLIENT, "Initializing input data endpoint 0x%X...", nEndpointID);
nRetVal = m_inputDataEndpoints[nEndpointID].Init(nEndpointID,
m_pConnectionFactory,
&m_linkInputStreamsMgr,
this);
XN_IS_STATUS_OK_LOG_ERROR("Init input data endpoint", nRetVal);
}
//Initialize input stream
nRetVal = m_linkInputStreamsMgr.InitInputStream(&m_linkControlEndpoint, streamType, nStreamID, &m_inputDataEndpoints[nEndpointID]);
XN_IS_STATUS_OK_LOG_ERROR("Init input stream", nRetVal);
return XN_STATUS_OK;
}
#define CHECK_TOKEN(pToken, strLine, pFile) \
if (pToken == NULL) \
{ \
xnLogError(XN_MASK_PRIME_CLIENT, "Preset file corrupt: line '%s' is not in the correct format!", strLine); \
XN_ASSERT(FALSE); \
fclose(pFile); \
return XN_STATUS_CORRUPT_FILE; \
}
XnStatus PrimeClient::RunPresetFile(const XnChar* strFileName)
{
XnStatus nRetVal = XN_STATUS_OK;
xnLogVerbose(XN_MASK_PRIME_CLIENT, "Executing preset file '%s'...", strFileName);
// Check that file exists
XnBool bFileExists;
nRetVal = xnOSDoesFileExist(strFileName, &bFileExists);
XN_IS_STATUS_OK(nRetVal);
if (!bFileExists)
{
xnLogError(XN_MASK_PRIME_CLIENT, "File '%s' does not exist", strFileName);
return XN_STATUS_OS_FILE_NOT_FOUND;
}
FILE* pFile = fopen(strFileName, "r");
XN_ASSERT(pFile != NULL);
XnChar strLine[1024];
// read header
if (NULL == fgets(strLine, sizeof(strLine), pFile))
{
xnLogError(XN_MASK_PRIME_CLIENT, "File '%s' is empty - no header", strFileName);
return XN_STATUS_ERROR;
}
XnUInt32 nAddress;
XnUInt32 nValue;
XnUInt8 nBitOffset;
XnUInt8 nBitWidth;
for (;;)
{
// read a line
if (NULL == fgets(strLine, sizeof(strLine), pFile))
{
// end of file reached
break;
}
// skip empty lines
if (xnOSStrCmp(strLine, "\n") == 0 || xnOSStrCmp(strLine, "\r\n") == 0)
{
continue;
}
// block name
XnChar* pToken = strtok(strLine, ",");
CHECK_TOKEN(pToken, strLine, pFile);
// reg name
pToken = strtok(NULL, ",");
CHECK_TOKEN(pToken, strLine, pFile);
// Address
pToken = strtok(NULL, ",");
CHECK_TOKEN(pToken, strLine, pFile);
sscanf(pToken, "0x%x", &nAddress);
// field name
pToken = strtok(NULL, ",");
CHECK_TOKEN(pToken, strLine, pFile);
// bit offset
pToken = strtok(NULL, ",");
CHECK_TOKEN(pToken, strLine, pFile);
nBitOffset = (XnUInt8)atoi(pToken);
// bit width
pToken = strtok(NULL, ",");
CHECK_TOKEN(pToken, strLine, pFile);
nBitWidth = (XnUInt8)atoi(pToken);
// value
pToken = strtok(NULL, ",");
CHECK_TOKEN(pToken, strLine, pFile);
sscanf(pToken, "0x%x", &nValue);
// execute
nRetVal = WriteAHB(nAddress, nValue, nBitOffset, nBitWidth);
if (nRetVal != XN_STATUS_OK)
{
fclose(pFile);
return nRetVal;
}
}
fclose(pFile);
xnLogInfo(XN_MASK_PRIME_CLIENT, "Preset file '%s' was executed", strFileName);
return (XN_STATUS_OK);
}
XnStatus PrimeClient::GetSupportedBistTests(xnl::Array<XnBistInfo>& supportedTests)
{
return m_linkControlEndpoint.GetSupportedBistTests(supportedTests);
}
XnStatus PrimeClient::GetSupportedI2CDevices(xnl::Array<XnLinkI2CDevice>& supportedDevices)
{
return m_linkControlEndpoint.GetSupportedI2CDevices(supportedDevices);
}
XnStatus PrimeClient::GetSupportedLogFiles(xnl::Array<XnLinkLogFile>& supportedFiles)
{
return m_linkControlEndpoint.GetSupportedLogFiles(supportedFiles);
}
XnStatus PrimeClient::ExecuteBist(XnUInt32 nID, uint32_t& errorCode, uint32_t& extraDataSize, uint8_t* extraData)
{
return m_linkControlEndpoint.ExecuteBistTests(nID, errorCode, extraDataSize, extraData);
}
XnBool PrimeClient::IsPropertySupported(XnUInt16 propID)
{
XnUInt32 nInterface = (propID >> 8);
XnUInt32 nProp = (propID & 0x0F);
return (nInterface < m_supportedProps.GetSize() && m_supportedProps[nInterface].IsSet(nProp));
}
XnStatus PrimeClient::GetBootStatus(XnBootStatus& bootStatus)
{
return m_linkControlEndpoint.GetBootStatus(bootStatus);
}
}
|