/usr/include/elektra/kdbvalue.hpp is in libelektra-dev 0.8.14-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #ifndef ELEKTRA_KDBVALUE_HPP
#define ELEKTRA_KDBVALUE_HPP
#include <kdbconfig.h>
#include <set>
#include <map>
#include <string>
#include <vector>
#include <memory>
#include <cassert>
#include <fstream>
#include <iostream>
#include <stdexcept>
#include <algorithm>
#include <functional>
#include <unordered_map>
#include <kdbproposal.h>
#include <keyset.hpp>
// #include <kdbprivate.h> // for debugging (to see values of internal structures)
namespace kdb
{
// some widely used interfaces
/**
* @brief This type is being used as bottom type that always fails.
*/
class none_t
{};
template <>
inline void Key::set(none_t)
{}
template <>
inline none_t Key::get() const
{
none_t ret;
return ret;
}
/**
* @brief Base class for all layers.
*/
class Layer
{
public:
virtual std::string id() const = 0;
virtual std::string operator()() const = 0;
};
/**
* @brief Base class for values to be observed.
*
* updateContext() is called whenever a context tells a value that it
* should reevaluate its name and update its cache.
*/
class ValueObserver
{
public:
virtual ~ValueObserver() = 0;
virtual void updateContext() const = 0;
typedef std::reference_wrapper<ValueObserver> reference;
};
/**
* @brief Needed to put a ValueObserver in a map
*
* @return Comparision result
*/
bool operator <(ValueObserver const & lhs, ValueObserver const & rhs)
{
return &lhs < &rhs;
}
inline ValueObserver::~ValueObserver()
{}
class ValueSubject
{
public:
virtual void notifyInThread() = 0;
};
/**
* @brief Used by contexts for callbacks (to run code using a mutex).
*
* Following scenarios are possible:
* !oldName && !newName: execute code, do nothing else
* !oldName && newName: attach
* oldName && newName: reattach
* oldName == newName: assignment, attach for inter-thread updates
* oldName && !newName: detach
*/
struct Command
{
public:
typedef std::pair<std::string, std::string> Pair;
/**
* @brief Typedef for function that returs oldKey, newKey pair
*/
typedef std::function<Pair()> Func;
Command(
ValueSubject const & v_,
Func & execute_,
bool hasChanged_ = false) :
v(const_cast<ValueSubject &>(v_)),
execute(execute_),
hasChanged(hasChanged_),
oldKey(),
newKey()
{}
Pair operator()() {return execute();}
ValueSubject & v; // this pointer
Func & execute; // to be executed within lock
bool hasChanged; // if the value (m_cache) has changed and value propagation is needed
std::string oldKey; // old name before assignment
std::string newKey; // new name after assignment
};
// Default Policies for Value
class NoContext
{
public:
/**
* @brief attach a new value
*
* NoContext will never update anything
*/
void attachByName(ELEKTRA_UNUSED std::string const & key_name,ELEKTRA_UNUSED ValueObserver & ValueObserver)
{}
/**
* @brief The evaluated equals the non-evaluated name!
*
* @return NoContext always returns the same string
*/
std::string evaluate(std::string const & key_name) const
{
return key_name;
}
/**
* @brief (Re)attaches a ValueSubject to a thread or simply
* execute code in a locked section.
*
* NoContext just executes the function and does not
* attach/reattach/detach
*
* @param c the command to apply
*/
void execute(Command & c)
{
c();
}
};
/**
* @brief Implements lookup with spec.
*/
class DefaultGetPolicy
{
public:
static Key get(KeySet &ks, Key const& spec)
{
return ks.lookup(spec, ckdb::KDB_O_SPEC | ckdb::KDB_O_CREATE);
}
};
/**
* @brief Implements creating user/ key when key is not found.
*/
class DefaultSetPolicy
{
public:
static Key set(KeySet &ks, Key const& spec)
{
return setWithNamespace(ks, spec, "user");
}
static Key setWithNamespace(KeySet &ks, Key const& spec, std::string const & ns)
{
std::string const & name = spec.getName();
kdb::Key k(ns+"/"+name, KEY_END);
ks.append(k);
return k;
}
};
class DefaultWritePolicy
{
public:
static const bool allowed = true;
};
class ReadOnlyPolicy
{
public:
static const bool allowed = false;
};
class DefaultObserverPolicy
{
public:
typedef double type;
};
class NoLockPolicy
{
public:
void lock() {}
void unlock() {}
};
/**
* This technique with the PolicySelector and Discriminator is taken
* from the book "C++ Templates - The Complete Guide"
* by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley, 2002
* in Chapter 16 Templates and Inheritance: Named Template Arguments
*
* The technique allows users of the class Value to use any number
* and order of policies as desired.
*/
template <typename Base, int D>
class Discriminator : public Base
{
};
template < typename Setter1,
typename Setter2,
typename Setter3,
typename Setter4,
typename Setter5,
typename Setter6
>
class PolicySelector : public Discriminator<Setter1,1>,
public Discriminator<Setter2,2>,
public Discriminator<Setter3,3>,
public Discriminator<Setter4,4>,
public Discriminator<Setter5,5>,
public Discriminator<Setter6,6>
{
};
class DefaultPolicies
{
public:
typedef DefaultGetPolicy GetPolicy;
typedef DefaultSetPolicy SetPolicy;
typedef NoContext ContextPolicy;
typedef DefaultWritePolicy WritePolicy;
typedef DefaultObserverPolicy ObserverPolicy;
typedef NoLockPolicy LockPolicy;
};
class DefaultPolicyArgs : virtual public DefaultPolicies
{
};
// class templates to override the default policy values
/// Needed by the user to set one of the policies
///
/// @tparam Policy
template <typename Policy>
class GetPolicyIs : virtual public DefaultPolicies
{
public:
typedef Policy GetPolicy;
};
/// Needed by the user to set one of the policies
///
/// @tparam Policy
template <typename Policy>
class SetPolicyIs : virtual public DefaultPolicies
{
public:
typedef Policy SetPolicy;
};
/// Needed by the user to set one of the policies
///
/// @tparam Policy
template <typename Policy>
class ContextPolicyIs : virtual public DefaultPolicies
{
public:
typedef Policy ContextPolicy;
};
/// Needed by the user to set one of the policies
///
/// @tparam Policy
template <typename Policy>
class WritePolicyIs : virtual public DefaultPolicies
{
public:
typedef Policy WritePolicy;
};
/// Needed by the user to set one of the policies
///
/// @tparam Policy
template <typename Policy>
class ObserverPolicyIs : virtual public DefaultPolicies
{
public:
typedef Policy ObserverPolicy;
};
/// Needed by the user to set one of the policies
///
/// @tparam Policy
template <typename Policy>
class LockPolicyIs : virtual public DefaultPolicies
{
public:
typedef Policy LockPolicy;
};
// standard types
template<typename T,
typename PolicySetter1 = DefaultPolicyArgs,
typename PolicySetter2 = DefaultPolicyArgs,
typename PolicySetter3 = DefaultPolicyArgs,
typename PolicySetter4 = DefaultPolicyArgs,
typename PolicySetter5 = DefaultPolicyArgs,
typename PolicySetter6 = DefaultPolicyArgs
>
class Value :
public ValueObserver,
public ValueSubject
{
public:
typedef T type;
typedef PolicySelector<
PolicySetter1,
PolicySetter2,
PolicySetter3,
PolicySetter4,
PolicySetter5,
PolicySetter6
>
Policies;
// not to be constructed yourself
Value<T, PolicySetter1, PolicySetter2, PolicySetter3,
PolicySetter4, PolicySetter5, PolicySetter6>
(KeySet & ks, typename Policies::ContextPolicy & context_, kdb::Key spec) :
m_cache(),
m_hasChanged(false),
m_ks(ks),
m_context(context_),
m_spec(spec)
{
assert(m_spec.getName()[0] == '/' && "spec keys are not yet supported");
m_context.attachByName(m_spec.getName(), *this);
Command::Func fun = [this] () -> Command::Pair
{
this->unsafeUpdateKeyUsingContext(m_context.evaluate(m_spec.getName()));
this->unsafeSyncCache(); // set m_cache
return std::make_pair("", m_key.getName());
};
Command command(*this, fun);
m_context.execute(command);
}
~Value<T, PolicySetter1, PolicySetter2, PolicySetter3,
PolicySetter4, PolicySetter5, PolicySetter6>
()
{
Command::Func fun = [this] () -> Command::Pair
{
std::string oldName = m_key.getName();
m_key = static_cast<ckdb::Key*>(0);
// after destructor we do not need to care about
// invariant anymore. But we need to care about
// thread safe m_key.
return std::make_pair(oldName, "");
};
Command command(*this, fun);
m_context.execute(command);
}
typedef Value<T, PolicySetter1, PolicySetter2, PolicySetter3,
PolicySetter4, PolicySetter5, PolicySetter6> V;
V const & operator= (type n)
{
static_assert(Policies::WritePolicy::allowed, "read only contextual value");
m_cache = n;
m_hasChanged = true;
syncKeySet();
return *this;
}
type operator ++()
{
static_assert(Policies::WritePolicy::allowed, "read only contextual value");
type ret = ++m_cache;
m_hasChanged = true;
syncKeySet();
return ret;
}
type operator ++(int)
{
static_assert(Policies::WritePolicy::allowed, "read only contextual value");
type ret = m_cache++;
m_hasChanged = true;
syncKeySet();
return ret;
}
type operator --()
{
static_assert(Policies::WritePolicy::allowed, "read only contextual value");
type ret = --m_cache;
m_hasChanged = true;
syncKeySet();
return ret;
}
type operator --(int)
{
static_assert(Policies::WritePolicy::allowed, "read only contextual value");
type ret = m_cache--;
m_hasChanged = true;
syncKeySet();
return ret;
}
V & operator = (V const & rhs)
{
static_assert(Policies::WritePolicy::allowed, "read only contextual value");
if (this != &rhs)
{
m_cache = rhs;
m_hasChanged = true;
syncKeySet();
}
return *this;
}
#define ELEKTRA_DEFINE_OPERATOR(op) \
V & operator op(type const & rhs) \
{ \
static_assert(Policies::WritePolicy::allowed, "read only contextual value"); \
m_cache op rhs; \
m_hasChanged = true; \
syncKeySet(); \
return *this; \
}
ELEKTRA_DEFINE_OPERATOR(-=)
ELEKTRA_DEFINE_OPERATOR(+=)
ELEKTRA_DEFINE_OPERATOR(*=)
ELEKTRA_DEFINE_OPERATOR(/=)
ELEKTRA_DEFINE_OPERATOR(%=)
ELEKTRA_DEFINE_OPERATOR(^=)
ELEKTRA_DEFINE_OPERATOR(&=)
ELEKTRA_DEFINE_OPERATOR(|=)
#undef ELEKTRA_DEFINE_OPERATOR
type operator-() const
{
return -m_cache;
}
type operator~() const
{
return ~m_cache;
}
type operator!() const
{
return !m_cache;
}
// type conversion
operator type() const
{
return m_cache;
}
/**
* @return the context bound to the value
*/
typename Policies::ContextPolicy & context() const
{
/// We allow manipulation of context for const
/// objects
return const_cast<typename Policies::ContextPolicy&>(m_context);
}
/**
* @brief Shortcut for context()
*
* @see context()
*/
typename Policies::ContextPolicy & c() const
{
return context();
}
/**
* @return Specification Key
*/
Key const& getSpec() const
{
return m_spec;
}
/**
* @brief Returns the current name of contextual value
*
* @return name under contextual interpretation
*/
std::string getName() const
{
return m_key.getName();
}
/**
* @brief Sync key(set) to cache
*/
void syncCache() const
{
Command::Func fun = [this] () -> Command::Pair
{
std::string const & oldKey = m_key.getName();
this->unsafeSyncCache();
return std::make_pair(oldKey, m_key.getName());
};
Command command(*this, fun);
m_context.execute(command);
}
/**
* @brief Sync cache to key(set)
*/
void syncKeySet() const
{
Command::Func fun = [this] () -> Command::Pair
{
std::string const & oldKey = m_key.getName();
this->unsafeSyncKeySet();
return std::make_pair(oldKey, m_key.getName());
};
Command command(*this, fun, m_hasChanged);
m_context.execute(command);
}
private:
void unsafeUpdateKeyUsingContext(std::string const & evaluatedName) const
{
Key spec(m_spec.dup());
// TODO: change to .setName() once
// KEY_CASCADING_NAME is fixed
ckdb::elektraKeySetName(*spec,
evaluatedName.c_str(),
KEY_CASCADING_NAME);
m_key = Policies::GetPolicy::get(m_ks, spec);
assert(m_key);
}
/**
* @brief Execute this method *only* in a Command execution
*/
void unsafeSyncCache() const
{
assert (m_key);
m_cache = m_key.get<type>();
#if DEBUG && VERBOSE
std::cout << "got name: " << m_key.getName() << " value: " << m_key.getString() << std::endl;
#endif
}
/**
* @brief Execute this method *only* in a Command execution
*/
void unsafeSyncKeySet() const
{
if (m_hasChanged && m_key.getName().at(0) == '/')
{
m_hasChanged = false;
Key spec(m_spec.dup());
// TODO: change to .setName() once
// KEY_CASCADING_NAME is fixed
ckdb::elektraKeySetName(*spec,
m_key.getName().c_str(),
KEY_CASCADING_NAME);
m_key = Policies::SetPolicy::set(m_ks, spec);
}
assert (m_key);
m_key.set<type>(m_cache);
#if DEBUG && VERBOSE
std::cout << "set name: " << m_key.getName() << " value: " << m_key.getString() << std::endl;
#endif
}
/**
* @brief Update to new value because of assignment
*/
void notifyInThread()
{
unsafeSyncCache(); // always called from save context
}
virtual void updateContext() const
{
std::string evaluatedName = m_context.evaluate(m_spec.getName());
#if DEBUG && VERBOSE
std::cout << "update context " << evaluatedName << " from " << m_spec.getName() << std::endl;
#endif
Command::Func fun = [this, &evaluatedName] () -> Command::Pair
{
std::string oldKey = m_key.getName();
if (evaluatedName == oldKey)
{
// nothing changed, same name
return std::make_pair(evaluatedName, evaluatedName);
}
this->unsafeSyncKeySet(); // flush out what currently is in cache
this->unsafeUpdateKeyUsingContext(evaluatedName);
this->unsafeSyncCache(); // read what we have under new context
return std::make_pair(oldKey, m_key.getName());
};
Command command(*this, fun);
m_context.execute(command);
}
private:
/**
* @brief A transient mutable cache for very fast read-access.
*/
mutable type m_cache;
/**
* @brief triggers transition from transient to persistent keys
* @retval true if m_cache was changed
*/
mutable bool m_hasChanged;
/**
* @brief Reference to the keyset in use
*
* only accessed using
* Command, that might be multi-thread safe depending on
* ContextPolicyIs
*/
KeySet & m_ks;
/**
* @brief The context that might be
*
* - thread safe
* - allow COP
*/
typename Policies::ContextPolicy & m_context;
/**
* @brief The specification key
*
* Is only read and will not be changed.
*
* Might start with / or with spec/ (not implemented yet)
*/
Key m_spec;
/**
* @brief The current key the Value is bound to.
*
* @invariant: Is never a null key
*/
mutable Key m_key;
};
template <typename T,
typename PolicySetter1,
typename PolicySetter2,
typename PolicySetter3,
typename PolicySetter4,
typename PolicySetter5,
typename PolicySetter6
>
std::ostream & operator << (std::ostream & os, Value<T,
PolicySetter1,
PolicySetter2,
PolicySetter3,
PolicySetter4,
PolicySetter5,
PolicySetter6
> const & v)
{
os << static_cast<T>(v);
return os;
}
}
#endif
|