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
|
/****************************************************************************
* *
* OpenNI 1.x Alpha *
* Copyright (C) 2011 PrimeSense Ltd. *
* *
* This file is part of OpenNI. *
* *
* OpenNI 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 3 of the License, or *
* (at your option) any later version. *
* *
* OpenNI 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 OpenNI. If not, see <http://www.gnu.org/licenses/>. *
* *
****************************************************************************/
//---------------------------------------------------------------------------
// Includes
//---------------------------------------------------------------------------
#include "XnLicensing.h"
#include "XnInternalTypes.h"
#include "xnInternalFuncs.h"
#include "XnXml.h"
//---------------------------------------------------------------------------
// Defines
//---------------------------------------------------------------------------
#define XN_XML_LICENSES_ROOT "Licenses"
#define XN_XML_LICENSE_NODE "License"
#define XN_XML_LICENSE_VENDOR "vendor"
#define XN_XML_LICENSE_KEY "key"
//---------------------------------------------------------------------------
// Types
//---------------------------------------------------------------------------
class XnLicenseXml : public XnLicense
{
public:
XnLicenseXml()
{
strVendor[0] = '\0';
strKey[0] = '\0';
}
XnLicenseXml(XnLicense* pLicense)
{
strcpy(this->strVendor, pLicense->strVendor);
strcpy(this->strKey, pLicense->strKey);
}
TiXmlElement ToElement() const
{
TiXmlElement element(XN_XML_LICENSE_NODE);
element.SetAttribute(XN_XML_LICENSE_VENDOR, strVendor);
element.SetAttribute(XN_XML_LICENSE_KEY, strKey);
return element;
}
XnStatus FromElement(const TiXmlElement* pElement)
{
XnStatus nRetVal = XN_STATUS_OK;
const XnChar* strVendor;
nRetVal = xnXmlReadStringAttribute(pElement, XN_XML_LICENSE_VENDOR, &strVendor);
XN_IS_STATUS_OK(nRetVal);
const XnChar* strKey;
nRetVal = xnXmlReadStringAttribute(pElement, XN_XML_LICENSE_KEY, &strKey);
XN_IS_STATUS_OK(nRetVal);
nRetVal = xnOSStrNCopy(this->strVendor, strVendor, xnOSStrLen(strVendor) + 1, sizeof(this->strVendor));
XN_IS_STATUS_OK(nRetVal);
nRetVal = xnOSStrNCopy(this->strKey, strKey, xnOSStrLen(strKey) + 1, sizeof(this->strKey));
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
};
class XnLicensesXml : public XnListT<XnLicenseXml>
{
public:
TiXmlElement ToElement() const
{
TiXmlElement element(XN_XML_LICENSES_ROOT);
for (ConstIterator it = Begin(); it != End(); ++it)
{
const XnLicenseXml& license = *it;
element.InsertEndChild(license.ToElement());
}
return element;
}
XnStatus FromElement(const TiXmlElement* pLicenses)
{
XnStatus nRetVal = XN_STATUS_OK;
Clear();
// read licenses
const TiXmlElement* pLicense = pLicenses->FirstChildElement(XN_XML_LICENSE_NODE);
while (pLicense != NULL)
{
XnLicenseXml license;
nRetVal = license.FromElement(pLicense);
XN_IS_STATUS_OK(nRetVal);
nRetVal = AddLast(license);
XN_IS_STATUS_OK(nRetVal);
pLicense = pLicense->NextSiblingElement(XN_XML_LICENSE_NODE);
}
return (XN_STATUS_OK);
}
};
//---------------------------------------------------------------------------
// Code
//---------------------------------------------------------------------------
XnStatus resolveLicensesFile(XnChar* strFileName, XnUInt32 nBufSize)
{
XnStatus nRetVal = XN_STATUS_OK;
nRetVal = xnGetOpenNIConfFilesPath(strFileName, nBufSize);
XN_IS_STATUS_OK(nRetVal);
nRetVal = xnOSStrAppend(strFileName, "licenses.xml", nBufSize);
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
XnStatus loadLicensesFile(TiXmlDocument& doc)
{
XnStatus nRetVal = XN_STATUS_OK;
XnChar strFileName[XN_FILE_MAX_PATH];
nRetVal = resolveLicensesFile(strFileName, XN_FILE_MAX_PATH);
XN_IS_STATUS_OK(nRetVal);
XnBool bDoesExist = FALSE;
nRetVal = xnOSDoesFileExist(strFileName, &bDoesExist);
XN_IS_STATUS_OK(nRetVal);
if (bDoesExist)
{
nRetVal = xnXmlLoadDocument(doc, strFileName);
XN_IS_STATUS_OK(nRetVal);
}
else
{
TiXmlElement root(XN_XML_LICENSES_ROOT);
doc.InsertEndChild(root);
doc.SaveFile(strFileName);
}
return (XN_STATUS_OK);
}
XnStatus loadLicensesFile(XnLicensesXml& licenses)
{
XnStatus nRetVal = XN_STATUS_OK;
TiXmlDocument doc;
nRetVal = loadLicensesFile(doc);
XN_IS_STATUS_OK(nRetVal);
nRetVal = licenses.FromElement(doc.RootElement());
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
XnStatus saveLicensesFile(const XnLicensesXml& licenses)
{
XnStatus nRetVal = XN_STATUS_OK;
XnChar strFileName[XN_FILE_MAX_PATH];
nRetVal = resolveLicensesFile(strFileName, XN_FILE_MAX_PATH);
XN_IS_STATUS_OK(nRetVal);
TiXmlDocument doc;
doc.InsertEndChild(licenses.ToElement());
if (!doc.SaveFile(strFileName))
{
return XN_STATUS_OS_FILE_WRITE_FAILED;
}
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnRegisterGlobalLicense(XnLicense* pLicense)
{
XnStatus nRetVal = XN_STATUS_OK;
XnLicensesXml licenses;
nRetVal = loadLicensesFile(licenses);
XN_IS_STATUS_OK(nRetVal);
// check if it's already there
XnBool bFound = FALSE;
for (XnLicensesXml::ConstIterator it = licenses.Begin(); it != licenses.End(); ++it)
{
const XnLicenseXml& license = *it;
if (strcmp(license.strVendor, pLicense->strVendor) == 0 && strcmp(license.strKey, pLicense->strKey) == 0)
{
bFound = TRUE;
break;
}
}
if (!bFound)
{
XnLicenseXml license(pLicense);
nRetVal = licenses.AddLast(license);
XN_IS_STATUS_OK(nRetVal);
nRetVal = saveLicensesFile(licenses);
XN_IS_STATUS_OK(nRetVal);
}
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnUnregisterGlobalLicense(XnLicense* pLicense)
{
XnStatus nRetVal = XN_STATUS_OK;
XnLicensesXml licenses;
nRetVal = loadLicensesFile(licenses);
XN_IS_STATUS_OK(nRetVal);
// check if it's there
XnBool bFound = FALSE;
for (XnLicensesXml::ConstIterator it = licenses.Begin(); it != licenses.End(); ++it)
{
const XnLicenseXml& license = *it;
if (strcmp(license.strVendor, pLicense->strVendor) == 0 && strcmp(license.strKey, pLicense->strKey) == 0)
{
nRetVal = licenses.Remove(it);
XN_IS_STATUS_OK(nRetVal);
nRetVal = saveLicensesFile(licenses);
XN_IS_STATUS_OK(nRetVal);
bFound = TRUE;
break;
}
}
if (!bFound)
{
return (XN_STATUS_NO_MATCH);
}
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnPrintRegisteredLicenses()
{
XnStatus nRetVal = XN_STATUS_OK;
XnLicensesXml licenses;
nRetVal = loadLicensesFile(licenses);
XN_IS_STATUS_OK(nRetVal);
printf("%-20s%-20s\n", "VENDOR", "KEY");
printf("%-20s%-20s\n", "======", "===");
for (XnLicensesXml::ConstIterator it = licenses.Begin(); it != licenses.End(); ++it)
{
const XnLicenseXml& license = *it;
printf("%-20s%-20s\n", license.strVendor, license.strKey);
}
return (XN_STATUS_OK);
}
XnStatus xnLoadLicensesFromElement(XnContext* pContext, TiXmlElement* pElem)
{
XnStatus nRetVal = XN_STATUS_OK;
// read licenses
XnLicensesXml licenses;
nRetVal = licenses.FromElement(pElem);
XN_IS_STATUS_OK(nRetVal);
// now add
for (XnLicensesXml::ConstIterator it = licenses.Begin(); it != licenses.End(); ++it)
{
const XnLicenseXml& license = *it;
nRetVal = xnAddLicense(pContext, &license);
XN_IS_STATUS_OK(nRetVal);
}
return (XN_STATUS_OK);
}
XnStatus xnLoadLicensesFromXml(XnContext* pContext, TiXmlElement* pRootElem)
{
XnStatus nRetVal = XN_STATUS_OK;
TiXmlElement* pLicenses = pRootElem->FirstChildElement(XN_XML_LICENSES_ROOT);
if (pLicenses != NULL)
{
nRetVal = xnLoadLicensesFromElement(pContext, pLicenses);
XN_IS_STATUS_OK(nRetVal);
}
return (XN_STATUS_OK);
}
XnStatus xnLoadGlobalLicenses(XnContext* pContext)
{
XnStatus nRetVal = XN_STATUS_OK;
TiXmlDocument doc;
nRetVal = loadLicensesFile(doc);
XN_IS_STATUS_OK(nRetVal);
nRetVal = xnLoadLicensesFromElement(pContext, doc.RootElement());
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnAddLicense(XnContext* pContext, const XnLicense* pLicense)
{
XnStatus nRetVal = XN_STATUS_OK;
XN_VALIDATE_INPUT_PTR(pContext);
XN_VALIDATE_INPUT_PTR(pLicense);
nRetVal = pContext->licenses.AddLast(*pLicense);
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnEnumerateLicenses(XnContext* pContext, XnLicense** paLicenses, XnUInt32* pnCount)
{
XN_VALIDATE_INPUT_PTR(pContext);
XN_VALIDATE_OUTPUT_PTR(paLicenses);
XN_VALIDATE_OUTPUT_PTR(pnCount);
*paLicenses = NULL;
*pnCount = 0;
XnUInt32 nCount = pContext->licenses.Size();
// allocate list
XnLicense* pList;
XN_VALIDATE_CALLOC(pList, XnLicense, nCount);
// copy data
XnUInt32 i = 0;
for (XnLicenseList::ConstIterator it = pContext->licenses.Begin(); it != pContext->licenses.End(); ++it, ++i)
{
pList[i] = *it;
}
// return to caller
*paLicenses = pList;
*pnCount = nCount;
return (XN_STATUS_OK);
}
XN_C_API void xnFreeLicensesList(XnLicense* aLicenses)
{
xnOSFree(aLicenses);
}
|