llsd.cpp
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:22k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llsd.cpp
  3.  * @brief LLSD flexible data system
  4.  *
  5.  * $LicenseInfo:firstyear=2005&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2005-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #include "linden_common.h"
  33. #include "llsd.h"
  34. #include "llerror.h"
  35. #include "../llmath/llmath.h"
  36. #include "llformat.h"
  37. #include "llsdserialize.h"
  38. #ifndef LL_RELEASE_FOR_DOWNLOAD
  39. #define NAME_UNNAMED_NAMESPACE
  40. #endif
  41. #ifdef NAME_UNNAMED_NAMESPACE
  42. namespace LLSDUnnamedNamespace 
  43. #else
  44. namespace 
  45. #endif
  46. {
  47. class ImplMap;
  48. class ImplArray;
  49. }
  50. #ifdef NAME_UNNAMED_NAMESPACE
  51. using namespace LLSDUnnamedNamespace;
  52. #endif
  53. class LLSD::Impl
  54. /**< This class is the abstract base class of the implementation of LLSD
  55.  It provides the reference counting implementation, and the default
  56.  implementation of most methods for most data types.  It also serves
  57.  as a working implementation of the Undefined type.
  58. */
  59. {
  60. private:
  61. U32 mUseCount;
  62. protected:
  63. Impl();
  64. enum StaticAllocationMarker { STATIC };
  65. Impl(StaticAllocationMarker);
  66. ///< This constructor is used for static objects and causes the
  67. //   suppresses adjusting the debugging counters when they are
  68. //  finally initialized.
  69. virtual ~Impl();
  70. bool shared() const { return mUseCount > 1; }
  71. public:
  72. static void reset(Impl*& var, Impl* impl);
  73. ///< safely set var to refer to the new impl (possibly shared)
  74. static       Impl& safe(      Impl*);
  75. static const Impl& safe(const Impl*);
  76. ///< since a NULL Impl* is used for undefined, this ensures there is
  77. //  always an object you call virtual member functions on
  78. virtual ImplMap& makeMap(Impl*& var);
  79. virtual ImplArray& makeArray(Impl*& var);
  80. ///< sure var is a modifiable, non-shared map or array
  81. virtual LLSD::Type type() const { return LLSD::TypeUndefined; }
  82. static  void assignUndefined(LLSD::Impl*& var);
  83. static  void assign(LLSD::Impl*& var, const LLSD::Impl* other);
  84. virtual void assign(Impl*& var, LLSD::Boolean);
  85. virtual void assign(Impl*& var, LLSD::Integer);
  86. virtual void assign(Impl*& var, LLSD::Real);
  87. virtual void assign(Impl*& var, const LLSD::String&);
  88. virtual void assign(Impl*& var, const LLSD::UUID&);
  89. virtual void assign(Impl*& var, const LLSD::Date&);
  90. virtual void assign(Impl*& var, const LLSD::URI&);
  91. virtual void assign(Impl*& var, const LLSD::Binary&);
  92. ///< If the receiver is the right type and unshared, these are simple
  93. //   data assignments, othewise the default implementation handless
  94. //   constructing the proper Impl subclass
  95.  
  96. virtual Boolean asBoolean() const { return false; }
  97. virtual Integer asInteger() const { return 0; }
  98. virtual Real asReal() const { return 0.0; }
  99. virtual String asString() const { return std::string(); }
  100. virtual UUID asUUID() const { return LLUUID(); }
  101. virtual Date asDate() const { return LLDate(); }
  102. virtual URI asURI() const { return LLURI(); }
  103. virtual Binary asBinary() const { return std::vector<U8>(); }
  104. virtual bool has(const String&) const { return false; }
  105. virtual LLSD get(const String&) const { return LLSD(); }
  106. virtual void erase(const String&) { }
  107. virtual const LLSD& ref(const String&) const{ return undef(); }
  108. virtual int size() const { return 0; }
  109. virtual LLSD get(Integer) const { return LLSD(); }
  110. virtual void erase(Integer) { }
  111. virtual const LLSD& ref(Integer) const { return undef(); }
  112. virtual LLSD::map_const_iterator beginMap() const { return endMap(); }
  113. virtual LLSD::map_const_iterator endMap() const { static const std::map<String, LLSD> empty; return empty.end(); }
  114. virtual LLSD::array_const_iterator beginArray() const { return endArray(); }
  115. virtual LLSD::array_const_iterator endArray() const { static const std::vector<LLSD> empty; return empty.end(); }
  116. static const LLSD& undef();
  117. static U32 sAllocationCount;
  118. static U32 sOutstandingCount;
  119. };
  120. #ifdef NAME_UNNAMED_NAMESPACE
  121. namespace LLSDUnnamedNamespace 
  122. #else
  123. namespace 
  124. #endif
  125. {
  126. template<LLSD::Type T, class Data, class DataRef = Data>
  127. class ImplBase : public LLSD::Impl
  128. ///< This class handles most of the work for a subclass of Impl
  129. //   for a given simple data type.  Subclasses of this provide the
  130. //   conversion functions and a constructor.
  131. {
  132. protected:
  133. Data mValue;
  134. typedef ImplBase Base;
  135. public:
  136. ImplBase(DataRef value) : mValue(value) { }
  137. virtual LLSD::Type type() const { return T; }
  138. using LLSD::Impl::assign; // Unhiding base class virtuals...
  139. virtual void assign(LLSD::Impl*& var, DataRef value) {
  140. if (shared())
  141. {
  142. Impl::assign(var, value);
  143. }
  144. else
  145. {
  146. mValue = value;
  147. }
  148. }
  149. };
  150. class ImplBoolean
  151. : public ImplBase<LLSD::TypeBoolean, LLSD::Boolean>
  152. {
  153. public:
  154. ImplBoolean(LLSD::Boolean v) : Base(v) { }
  155. virtual LLSD::Boolean asBoolean() const { return mValue; }
  156. virtual LLSD::Integer asInteger() const { return mValue ? 1 : 0; }
  157. virtual LLSD::Real asReal() const { return mValue ? 1 : 0; }
  158. virtual LLSD::String asString() const;
  159. };
  160. LLSD::String ImplBoolean::asString() const
  161. // *NOTE: The reason that false is not converted to "false" is
  162. // because that would break roundtripping,
  163. // e.g. LLSD(false).asString().asBoolean().  There are many
  164. // reasons for wanting LLSD("false").asBoolean() == true, such
  165. // as "everything else seems to work that way".
  166. { return mValue ? "true" : ""; }
  167. class ImplInteger
  168. : public ImplBase<LLSD::TypeInteger, LLSD::Integer>
  169. {
  170. public:
  171. ImplInteger(LLSD::Integer v) : Base(v) { }
  172. virtual LLSD::Boolean asBoolean() const { return mValue != 0; }
  173. virtual LLSD::Integer asInteger() const { return mValue; }
  174. virtual LLSD::Real asReal() const { return mValue; }
  175. virtual LLSD::String asString() const;
  176. };
  177. LLSD::String ImplInteger::asString() const
  178. { return llformat("%d", mValue); }
  179. class ImplReal
  180. : public ImplBase<LLSD::TypeReal, LLSD::Real>
  181. {
  182. public:
  183. ImplReal(LLSD::Real v) : Base(v) { }
  184. virtual LLSD::Boolean asBoolean() const;
  185. virtual LLSD::Integer asInteger() const;
  186. virtual LLSD::Real asReal() const { return mValue; }
  187. virtual LLSD::String asString() const;
  188. };
  189. LLSD::Boolean ImplReal::asBoolean() const
  190. { return !llisnan(mValue)  &&  mValue != 0.0; }
  191. LLSD::Integer ImplReal::asInteger() const
  192. { return !llisnan(mValue) ? (LLSD::Integer)mValue : 0; }
  193. LLSD::String ImplReal::asString() const
  194. { return llformat("%lg", mValue); }
  195. class ImplString
  196. : public ImplBase<LLSD::TypeString, LLSD::String, const LLSD::String&>
  197. {
  198. public:
  199. ImplString(const LLSD::String& v) : Base(v) { }
  200. virtual LLSD::Boolean asBoolean() const { return !mValue.empty(); }
  201. virtual LLSD::Integer asInteger() const;
  202. virtual LLSD::Real asReal() const;
  203. virtual LLSD::String asString() const { return mValue; }
  204. virtual LLSD::UUID asUUID() const { return LLUUID(mValue); }
  205. virtual LLSD::Date asDate() const { return LLDate(mValue); }
  206. virtual LLSD::URI asURI() const { return LLURI(mValue); }
  207. };
  208. LLSD::Integer ImplString::asInteger() const
  209. {
  210. // This must treat "1.23" not as an error, but as a number, which is
  211. // then truncated down to an integer.  Hence, this code doesn't call
  212. // std::istringstream::operator>>(int&), which would not consume the
  213. // ".23" portion.
  214. return (int)asReal();
  215. }
  216. LLSD::Real ImplString::asReal() const
  217. {
  218. F64 v = 0.0;
  219. std::istringstream i_stream(mValue);
  220. i_stream >> v;
  221. // we would probably like to ignore all trailing whitespace as
  222. // well, but for now, simply eat the next character, and make
  223. // sure we reached the end of the string.
  224. // *NOTE: gcc 2.95 does not generate an eof() event on the
  225. // stream operation above, so we manually get here to force it
  226. // across platforms.
  227. int c = i_stream.get();
  228. return ((EOF ==c) ? v : 0.0);
  229. }
  230. class ImplUUID
  231. : public ImplBase<LLSD::TypeUUID, LLSD::UUID, const LLSD::UUID&>
  232. {
  233. public:
  234. ImplUUID(const LLSD::UUID& v) : Base(v) { }
  235. virtual LLSD::String asString() const{ return mValue.asString(); }
  236. virtual LLSD::UUID asUUID() const { return mValue; }
  237. };
  238. class ImplDate
  239. : public ImplBase<LLSD::TypeDate, LLSD::Date, const LLSD::Date&>
  240. {
  241. public:
  242. ImplDate(const LLSD::Date& v)
  243. : ImplBase<LLSD::TypeDate, LLSD::Date, const LLSD::Date&>(v)
  244. { }
  245. virtual LLSD::Integer asInteger() const
  246. {
  247. return (LLSD::Integer)(mValue.secondsSinceEpoch());
  248. }
  249. virtual LLSD::Real asReal() const
  250. {
  251. return mValue.secondsSinceEpoch();
  252. }
  253. virtual LLSD::String asString() const{ return mValue.asString(); }
  254. virtual LLSD::Date asDate() const { return mValue; }
  255. };
  256. class ImplURI
  257. : public ImplBase<LLSD::TypeURI, LLSD::URI, const LLSD::URI&>
  258. {
  259. public:
  260. ImplURI(const LLSD::URI& v) : Base(v) { }
  261. virtual LLSD::String asString() const{ return mValue.asString(); }
  262. virtual LLSD::URI asURI() const { return mValue; }
  263. };
  264. class ImplBinary
  265. : public ImplBase<LLSD::TypeBinary, LLSD::Binary, const LLSD::Binary&>
  266. {
  267. public:
  268. ImplBinary(const LLSD::Binary& v) : Base(v) { }
  269. virtual LLSD::Binary asBinary() const{ return mValue; }
  270. };
  271. class ImplMap : public LLSD::Impl
  272. {
  273. private:
  274. typedef std::map<LLSD::String, LLSD> DataMap;
  275. DataMap mData;
  276. protected:
  277. ImplMap(const DataMap& data) : mData(data) { }
  278. public:
  279. ImplMap() { }
  280. virtual ImplMap& makeMap(LLSD::Impl*&);
  281. virtual LLSD::Type type() const { return LLSD::TypeMap; }
  282. virtual LLSD::Boolean asBoolean() const { return !mData.empty(); }
  283. virtual bool has(const LLSD::String&) const; 
  284. using LLSD::Impl::get; // Unhiding get(LLSD::Integer)
  285. using LLSD::Impl::erase; // Unhiding erase(LLSD::Integer)
  286. using LLSD::Impl::ref; // Unhiding ref(LLSD::Integer)
  287. virtual LLSD get(const LLSD::String&) const; 
  288. void insert(const LLSD::String& k, const LLSD& v);
  289. virtual void erase(const LLSD::String&);
  290.               LLSD& ref(const LLSD::String&);
  291. virtual const LLSD& ref(const LLSD::String&) const;
  292. virtual int size() const { return mData.size(); }
  293. LLSD::map_iterator beginMap() { return mData.begin(); }
  294. LLSD::map_iterator endMap() { return mData.end(); }
  295. virtual LLSD::map_const_iterator beginMap() const { return mData.begin(); }
  296. virtual LLSD::map_const_iterator endMap() const { return mData.end(); }
  297. };
  298. ImplMap& ImplMap::makeMap(LLSD::Impl*& var)
  299. {
  300. if (shared())
  301. {
  302. ImplMap* i = new ImplMap(mData);
  303. Impl::assign(var, i);
  304. return *i;
  305. }
  306. else
  307. {
  308. return *this;
  309. }
  310. }
  311. bool ImplMap::has(const LLSD::String& k) const
  312. {
  313. DataMap::const_iterator i = mData.find(k);
  314. return i != mData.end();
  315. }
  316. LLSD ImplMap::get(const LLSD::String& k) const
  317. {
  318. DataMap::const_iterator i = mData.find(k);
  319. return (i != mData.end()) ? i->second : LLSD();
  320. }
  321. void ImplMap::insert(const LLSD::String& k, const LLSD& v)
  322. {
  323. mData.insert(DataMap::value_type(k, v));
  324. }
  325. void ImplMap::erase(const LLSD::String& k)
  326. {
  327. mData.erase(k);
  328. }
  329. LLSD& ImplMap::ref(const LLSD::String& k)
  330. {
  331. return mData[k];
  332. }
  333. const LLSD& ImplMap::ref(const LLSD::String& k) const
  334. {
  335. DataMap::const_iterator i = mData.lower_bound(k);
  336. if (i == mData.end()  ||  mData.key_comp()(k, i->first))
  337. {
  338. return undef();
  339. }
  340. return i->second;
  341. }
  342. class ImplArray : public LLSD::Impl
  343. {
  344. private:
  345. typedef std::vector<LLSD> DataVector;
  346. DataVector mData;
  347. protected:
  348. ImplArray(const DataVector& data) : mData(data) { }
  349. public:
  350. ImplArray() { }
  351. virtual ImplArray& makeArray(Impl*&);
  352. virtual LLSD::Type type() const { return LLSD::TypeArray; }
  353. virtual LLSD::Boolean asBoolean() const { return !mData.empty(); }
  354. using LLSD::Impl::get; // Unhiding get(LLSD::String)
  355. using LLSD::Impl::erase; // Unhiding erase(LLSD::String)
  356. using LLSD::Impl::ref; // Unhiding ref(LLSD::String)
  357. virtual int size() const; 
  358. virtual LLSD get(LLSD::Integer) const;
  359.         void set(LLSD::Integer, const LLSD&);
  360.         void insert(LLSD::Integer, const LLSD&);
  361.         void append(const LLSD&);
  362. virtual void erase(LLSD::Integer);
  363.               LLSD& ref(LLSD::Integer);
  364. virtual const LLSD& ref(LLSD::Integer) const; 
  365. LLSD::array_iterator beginArray() { return mData.begin(); }
  366. LLSD::array_iterator endArray() { return mData.end(); }
  367. virtual LLSD::array_const_iterator beginArray() const { return mData.begin(); }
  368. virtual LLSD::array_const_iterator endArray() const { return mData.end(); }
  369. };
  370. ImplArray& ImplArray::makeArray(Impl*& var)
  371. {
  372. if (shared())
  373. {
  374. ImplArray* i = new ImplArray(mData);
  375. Impl::assign(var, i);
  376. return *i;
  377. }
  378. else
  379. {
  380. return *this;
  381. }
  382. }
  383. int ImplArray::size() const { return mData.size(); }
  384. LLSD ImplArray::get(LLSD::Integer i) const
  385. {
  386. if (i < 0) { return LLSD(); }
  387. DataVector::size_type index = i;
  388. return (index < mData.size()) ? mData[index] : LLSD();
  389. }
  390. void ImplArray::set(LLSD::Integer i, const LLSD& v)
  391. {
  392. if (i < 0) { return; }
  393. DataVector::size_type index = i;
  394. if (index >= mData.size())
  395. {
  396. mData.resize(index + 1);
  397. }
  398. mData[index] = v;
  399. }
  400. void ImplArray::insert(LLSD::Integer i, const LLSD& v)
  401. {
  402. if (i < 0) {
  403. return;
  404. }
  405. DataVector::size_type index = i;
  406. if (index >= mData.size())
  407. {
  408. mData.resize(index + 1);
  409. }
  410. mData.insert(mData.begin() + index, v);
  411. }
  412. void ImplArray::append(const LLSD& v)
  413. {
  414. mData.push_back(v);
  415. }
  416. void ImplArray::erase(LLSD::Integer i)
  417. {
  418. if (i < 0) { return; }
  419. DataVector::size_type index = i;
  420. if (index < mData.size())
  421. {
  422. mData.erase(mData.begin() + index);
  423. }
  424. }
  425. LLSD& ImplArray::ref(LLSD::Integer i)
  426. {
  427. DataVector::size_type index = i >= 0 ? i : 0;
  428. if (index >= mData.size())
  429. {
  430. mData.resize(i + 1);
  431. }
  432. return mData[index];
  433. }
  434. const LLSD& ImplArray::ref(LLSD::Integer i) const
  435. {
  436. if (i < 0) { return undef(); }
  437. DataVector::size_type index = i;
  438. if (index >= mData.size())
  439. {
  440. return undef();
  441. }
  442. return mData[index];
  443. }
  444. }
  445. LLSD::Impl::Impl()
  446. : mUseCount(0)
  447. {
  448. ++sAllocationCount;
  449. ++sOutstandingCount;
  450. }
  451. LLSD::Impl::Impl(StaticAllocationMarker)
  452. : mUseCount(0)
  453. {
  454. }
  455. LLSD::Impl::~Impl()
  456. {
  457. --sOutstandingCount;
  458. }
  459. void LLSD::Impl::reset(Impl*& var, Impl* impl)
  460. {
  461. if (impl) ++impl->mUseCount;
  462. if (var  &&  --var->mUseCount == 0)
  463. {
  464. delete var;
  465. }
  466. var = impl;
  467. }
  468. LLSD::Impl& LLSD::Impl::safe(Impl* impl)
  469. {
  470. static Impl theUndefined(STATIC);
  471. return impl ? *impl : theUndefined;
  472. }
  473. const LLSD::Impl& LLSD::Impl::safe(const Impl* impl)
  474. {
  475. static Impl theUndefined(STATIC);
  476. return impl ? *impl : theUndefined;
  477. }
  478. ImplMap& LLSD::Impl::makeMap(Impl*& var)
  479. {
  480. ImplMap* im = new ImplMap;
  481. reset(var, im);
  482. return *im;
  483. }
  484. ImplArray& LLSD::Impl::makeArray(Impl*& var)
  485. {
  486. ImplArray* ia = new ImplArray;
  487. reset(var, ia);
  488. return *ia;
  489. }
  490. void LLSD::Impl::assign(Impl*& var, const Impl* other)
  491. {
  492. reset(var, const_cast<Impl*>(other));
  493. }
  494. void LLSD::Impl::assignUndefined(Impl*& var)
  495. {
  496. reset(var, 0);
  497. }
  498. void LLSD::Impl::assign(Impl*& var, LLSD::Boolean v)
  499. {
  500. reset(var, new ImplBoolean(v));
  501. }
  502. void LLSD::Impl::assign(Impl*& var, LLSD::Integer v)
  503. {
  504. reset(var, new ImplInteger(v));
  505. }
  506. void LLSD::Impl::assign(Impl*& var, LLSD::Real v)
  507. {
  508. reset(var, new ImplReal(v));
  509. }
  510. void LLSD::Impl::assign(Impl*& var, const LLSD::String& v)
  511. {
  512. reset(var, new ImplString(v));
  513. }
  514. void LLSD::Impl::assign(Impl*& var, const LLSD::UUID& v)
  515. {
  516. reset(var, new ImplUUID(v));
  517. }
  518. void LLSD::Impl::assign(Impl*& var, const LLSD::Date& v)
  519. {
  520. reset(var, new ImplDate(v));
  521. }
  522. void LLSD::Impl::assign(Impl*& var, const LLSD::URI& v)
  523. {
  524. reset(var, new ImplURI(v));
  525. }
  526. void LLSD::Impl::assign(Impl*& var, const LLSD::Binary& v)
  527. {
  528. reset(var, new ImplBinary(v));
  529. }
  530. const LLSD& LLSD::Impl::undef()
  531. {
  532. static const LLSD immutableUndefined;
  533. return immutableUndefined;
  534. }
  535. U32 LLSD::Impl::sAllocationCount = 0;
  536. U32 LLSD::Impl::sOutstandingCount = 0;
  537. #ifdef NAME_UNNAMED_NAMESPACE
  538. namespace LLSDUnnamedNamespace 
  539. #else
  540. namespace 
  541. #endif
  542. {
  543. inline LLSD::Impl& safe(LLSD::Impl* impl)
  544. { return LLSD::Impl::safe(impl); }
  545. inline const LLSD::Impl& safe(const LLSD::Impl* impl)
  546. { return LLSD::Impl::safe(impl); }
  547. inline ImplMap& makeMap(LLSD::Impl*& var)
  548. { return safe(var).makeMap(var); }
  549. inline ImplArray& makeArray(LLSD::Impl*& var)
  550. { return safe(var).makeArray(var); }
  551. }
  552. LLSD::LLSD() : impl(0) { }
  553. LLSD::~LLSD() { Impl::reset(impl, 0); }
  554. LLSD::LLSD(const LLSD& other) : impl(0) { assign(other); }
  555. void LLSD::assign(const LLSD& other) { Impl::assign(impl, other.impl); }
  556. void LLSD::clear() { Impl::assignUndefined(impl); }
  557. LLSD::Type LLSD::type() const { return safe(impl).type(); }
  558. // Scaler Constructors
  559. LLSD::LLSD(Boolean v) : impl(0) { assign(v); }
  560. LLSD::LLSD(Integer v) : impl(0) { assign(v); }
  561. LLSD::LLSD(Real v) : impl(0) { assign(v); }
  562. LLSD::LLSD(const UUID& v) : impl(0) { assign(v); }
  563. LLSD::LLSD(const String& v) : impl(0) { assign(v); }
  564. LLSD::LLSD(const Date& v) : impl(0) { assign(v); }
  565. LLSD::LLSD(const URI& v) : impl(0) { assign(v); }
  566. LLSD::LLSD(const Binary& v) : impl(0) { assign(v); }
  567. // Convenience Constructors
  568. LLSD::LLSD(F32 v) : impl(0) { assign((Real)v); }
  569. // Scalar Assignment
  570. void LLSD::assign(Boolean v) { safe(impl).assign(impl, v); }
  571. void LLSD::assign(Integer v) { safe(impl).assign(impl, v); }
  572. void LLSD::assign(Real v) { safe(impl).assign(impl, v); }
  573. void LLSD::assign(const String& v) { safe(impl).assign(impl, v); }
  574. void LLSD::assign(const UUID& v) { safe(impl).assign(impl, v); }
  575. void LLSD::assign(const Date& v) { safe(impl).assign(impl, v); }
  576. void LLSD::assign(const URI& v) { safe(impl).assign(impl, v); }
  577. void LLSD::assign(const Binary& v) { safe(impl).assign(impl, v); }
  578. // Scalar Accessors
  579. LLSD::Boolean LLSD::asBoolean() const { return safe(impl).asBoolean(); }
  580. LLSD::Integer LLSD::asInteger() const { return safe(impl).asInteger(); }
  581. LLSD::Real LLSD::asReal() const { return safe(impl).asReal(); }
  582. LLSD::String LLSD::asString() const { return safe(impl).asString(); }
  583. LLSD::UUID LLSD::asUUID() const { return safe(impl).asUUID(); }
  584. LLSD::Date LLSD::asDate() const { return safe(impl).asDate(); }
  585. LLSD::URI LLSD::asURI() const { return safe(impl).asURI(); }
  586. LLSD::Binary LLSD::asBinary() const { return safe(impl).asBinary(); }
  587. // const char * helpers
  588. LLSD::LLSD(const char* v) : impl(0) { assign(v); }
  589. void LLSD::assign(const char* v)
  590. {
  591. if(v) assign(std::string(v));
  592. else assign(std::string());
  593. }
  594. LLSD LLSD::emptyMap()
  595. {
  596. LLSD v;
  597. makeMap(v.impl);
  598. return v;
  599. }
  600. bool LLSD::has(const String& k) const { return safe(impl).has(k); }
  601. LLSD LLSD::get(const String& k) const { return safe(impl).get(k); } 
  602. void LLSD::insert(const String& k, const LLSD& v) { makeMap(impl).insert(k, v); }
  603. LLSD& LLSD::with(const String& k, const LLSD& v)
  604. makeMap(impl).insert(k, v); 
  605. return *this;
  606. }
  607. void LLSD::erase(const String& k) { makeMap(impl).erase(k); }
  608. LLSD& LLSD::operator[](const String& k)
  609. { return makeMap(impl).ref(k); }
  610. const LLSD& LLSD::operator[](const String& k) const
  611. { return safe(impl).ref(k); }
  612. LLSD LLSD::emptyArray()
  613. {
  614. LLSD v;
  615. makeArray(v.impl);
  616. return v;
  617. }
  618. int LLSD::size() const { return safe(impl).size(); }
  619.  
  620. LLSD LLSD::get(Integer i) const { return safe(impl).get(i); } 
  621. void LLSD::set(Integer i, const LLSD& v){ makeArray(impl).set(i, v); }
  622. void LLSD::insert(Integer i, const LLSD& v) { makeArray(impl).insert(i, v); }
  623. LLSD& LLSD::with(Integer i, const LLSD& v)
  624. makeArray(impl).insert(i, v); 
  625. return *this;
  626. }
  627. void LLSD::append(const LLSD& v) { makeArray(impl).append(v); }
  628. void LLSD::erase(Integer i) { makeArray(impl).erase(i); }
  629. LLSD& LLSD::operator[](Integer i)
  630. { return makeArray(impl).ref(i); }
  631. const LLSD& LLSD::operator[](Integer i) const
  632. { return safe(impl).ref(i); }
  633. U32 LLSD::allocationCount() { return Impl::sAllocationCount; }
  634. U32 LLSD::outstandingCount() { return Impl::sOutstandingCount; }
  635. static const char *llsd_dump(const LLSD &llsd, bool useXMLFormat)
  636. {
  637. // sStorage is used to hold the string representation of the llsd last
  638. // passed into this function.  If this function is never called (the
  639. // normal case when not debugging), nothing is allocated.  Otherwise
  640. // sStorage will point to the result of the last call.  This will actually
  641. // be one leak, but since this is used only when running under the
  642. // debugger, it should not be an issue.
  643. static char *sStorage = NULL;
  644. delete[] sStorage;
  645. std::string out_string;
  646. {
  647. std::ostringstream out;
  648. if (useXMLFormat)
  649. {
  650. LLSDXMLStreamer xml_streamer(llsd);
  651. out << xml_streamer;
  652. }
  653. else
  654. {
  655. LLSDNotationStreamer notation_streamer(llsd);
  656. out << notation_streamer;
  657. }
  658. out_string = out.str();
  659. }
  660. int len = out_string.length();
  661. sStorage = new char[len + 1];
  662. memcpy(sStorage, out_string.c_str(), len);
  663. sStorage[len] = '';
  664. return sStorage;
  665. }
  666. /// Returns XML version of llsd -- only to be called from debugger
  667. const char *LLSD::dumpXML(const LLSD &llsd)
  668. {
  669. return llsd_dump(llsd, true);
  670. }
  671. /// Returns Notation version of llsd -- only to be called from debugger
  672. const char *LLSD::dump(const LLSD &llsd)
  673. {
  674. return llsd_dump(llsd, false);
  675. }
  676. LLSD::map_iterator LLSD::beginMap() { return makeMap(impl).beginMap(); }
  677. LLSD::map_iterator LLSD::endMap() { return makeMap(impl).endMap(); }
  678. LLSD::map_const_iterator LLSD::beginMap() const { return safe(impl).beginMap(); }
  679. LLSD::map_const_iterator LLSD::endMap() const { return safe(impl).endMap(); }
  680. LLSD::array_iterator LLSD::beginArray() { return makeArray(impl).beginArray(); }
  681. LLSD::array_iterator LLSD::endArray() { return makeArray(impl).endArray(); }
  682. LLSD::array_const_iterator LLSD::beginArray() const{ return safe(impl).beginArray(); }
  683. LLSD::array_const_iterator LLSD::endArray() const { return safe(impl).endArray(); }