cphot 0.1
A C++ tool for computing photometry from spectra.
GenericPointer< ValueType, Allocator > Class Template Reference

Represents a JSON Pointer. Use Pointer for UTF8 encoding and default allocator. More...

#include <fwd.h>

Classes

struct  Token
 A token is the basic units of internal representation. More...
 

Public Types

typedef ValueType::EncodingType EncodingType
 Encoding type from Value. More...
 
typedef ValueType::Ch Ch
 Character type from Value. More...
 

Public Member Functions

Constructors and destructor.
 GenericPointer (Allocator *allocator=0)
 Default constructor. More...
 
 GenericPointer (const Ch *source, Allocator *allocator=0)
 Constructor that parses a string or URI fragment representation. More...
 
 GenericPointer (const Ch *source, size_t length, Allocator *allocator=0)
 Constructor that parses a string or URI fragment representation, with length of the source string. More...
 
 GenericPointer (const Token *tokens, size_t tokenCount)
 Constructor with user-supplied tokens. More...
 
 GenericPointer (const GenericPointer &rhs, Allocator *allocator=0)
 Copy constructor. More...
 
 ~GenericPointer ()
 Destructor. More...
 
GenericPointeroperator= (const GenericPointer &rhs)
 Assignment operator. More...
 

Append token

Allocatorallocator
 
Allocator stackAllocator stackAllocator & document
 
Allocator stackAllocator stackAllocator T const defaultValue
 
GenericPointer Append (const Token &token, Allocator *allocator=0) const
 Append a token and return a new Pointer. More...
 
GenericPointer Append (const Ch *name, SizeType length, Allocator *allocator=0) const
 Append a name token with length, and return a new Pointer. More...
 
template<typename T >
 RAPIDJSON_DISABLEIF_RETURN ((internal::NotExpr< internal::IsSame< typename internal::RemoveConst< T >::Type, Ch > >),(GenericPointer)) Append(T *name
 Append a name token without length, and return a new Pointer. More...
 
Allocator stackAllocator RAPIDJSON_DISABLEIF_RETURN ((internal::OrExpr< internal::IsPointer< T >, internal::IsGenericValue< T > >),(ValueType &)) GetWithDefault(GenericDocument< EncodingType
 

Set a value

value
 
T ValueType::AllocatorType &const allocator
 
stackAllocator & document
 
stackAllocator T const value
 
ValueType & Set (ValueType &root, ValueType &value, typename ValueType::AllocatorType &allocator) const
 Set a value in a subtree, with move semantics. More...
 
ValueType & Set (ValueType &root, const ValueType &value, typename ValueType::AllocatorType &allocator) const
 Set a value in a subtree, with copy semantics. More...
 
ValueType & Set (ValueType &root, const Ch *value, typename ValueType::AllocatorType &allocator) const
 Set a null-terminated string in a subtree. More...
 
template<typename T >
 RAPIDJSON_DISABLEIF_RETURN ((internal::OrExpr< internal::IsPointer< T >, internal::IsGenericValue< T > >),(ValueType &)) Set(ValueType &root
 Set a primitive value in a subtree. More...
 
template<typename stackAllocator >
ValueType & Set (GenericDocument< EncodingType, typename ValueType::AllocatorType, stackAllocator > &document, ValueType &value) const
 Set a value in a document, with move semantics. More...
 
template<typename stackAllocator >
ValueType & Set (GenericDocument< EncodingType, typename ValueType::AllocatorType, stackAllocator > &document, const ValueType &value) const
 Set a value in a document, with copy semantics. More...
 
template<typename stackAllocator >
ValueType & Set (GenericDocument< EncodingType, typename ValueType::AllocatorType, stackAllocator > &document, const Ch *value) const
 Set a null-terminated string in a document. More...
 
template<typename T , typename stackAllocator >
 RAPIDJSON_DISABLEIF_RETURN ((internal::OrExpr< internal::IsPointer< T >, internal::IsGenericValue< T > >),(ValueType &)) Set(GenericDocument< EncodingType
 Set a primitive value in a document. More...
 

Swap a value

ValueType & Swap (ValueType &root, ValueType &value, typename ValueType::AllocatorType &allocator) const
 Swap a value with a value in a subtree. More...
 
template<typename stackAllocator >
ValueType & Swap (GenericDocument< EncodingType, typename ValueType::AllocatorType, stackAllocator > &document, ValueType &value) const
 Swap a value with a value in a document. More...
 
bool Erase (ValueType &root) const
 Erase a value in a subtree. More...
 

Detailed Description

template<typename ValueType, typename Allocator = CrtAllocator>
class GenericPointer< ValueType, Allocator >

Represents a JSON Pointer. Use Pointer for UTF8 encoding and default allocator.

This class implements RFC 6901 "JavaScript Object Notation (JSON) Pointer" (https://tools.ietf.org/html/rfc6901).

A JSON pointer is for identifying a specific value in a JSON document (GenericDocument). It can simplify coding of DOM tree manipulation, because it can access multiple-level depth of DOM tree with single API call.

After it parses a string representation (e.g. "/foo/0" or URI fragment representation (e.g. "#/foo/0") into its internal representation (tokens), it can be used to resolve a specific value in multiple documents, or sub-tree of documents.

Contrary to GenericValue, Pointer can be copy constructed and copy assigned. Apart from assignment, a Pointer cannot be modified after construction.

Although Pointer is very convenient, please aware that constructing Pointer involves parsing and dynamic memory allocation. A special constructor with user- supplied tokens eliminates these.

GenericPointer depends on GenericDocument and GenericValue.

Template Parameters
ValueTypeThe value type of the DOM tree. E.g. GenericValue<UTF8<> >
AllocatorThe allocator type for allocating memory for internal representation.
Note
GenericPointer uses same encoding of ValueType. However, Allocator of GenericPointer is independent of Allocator of Value.

Definition at line 126 of file fwd.h.

Member Typedef Documentation

◆ Ch

template<typename ValueType , typename Allocator = CrtAllocator>
typedef ValueType::Ch GenericPointer< ValueType, Allocator >::Ch

Character type from Value.

Definition at line 84 of file pointer.h.

◆ EncodingType

template<typename ValueType , typename Allocator = CrtAllocator>
typedef ValueType::EncodingType GenericPointer< ValueType, Allocator >::EncodingType

Encoding type from Value.

Definition at line 83 of file pointer.h.

Constructor & Destructor Documentation

◆ GenericPointer() [1/5]

template<typename ValueType , typename Allocator = CrtAllocator>
GenericPointer< ValueType, Allocator >::GenericPointer ( Allocator allocator = 0)
inline

Default constructor.

Definition at line 109 of file pointer.h.

◆ GenericPointer() [2/5]

template<typename ValueType , typename Allocator = CrtAllocator>
GenericPointer< ValueType, Allocator >::GenericPointer ( const Ch source,
Allocator allocator = 0 
)
inlineexplicit

Constructor that parses a string or URI fragment representation.

Parameters
sourceA null-terminated, string or URI fragment representation of JSON pointer.
allocatorUser supplied allocator for this pointer. If no allocator is provided, it creates a self-owned one.

Definition at line 116 of file pointer.h.

◆ GenericPointer() [3/5]

template<typename ValueType , typename Allocator = CrtAllocator>
GenericPointer< ValueType, Allocator >::GenericPointer ( const Ch source,
size_t  length,
Allocator allocator = 0 
)
inline

Constructor that parses a string or URI fragment representation, with length of the source string.

Parameters
sourceA string or URI fragment representation of JSON pointer.
lengthLength of source.
allocatorUser supplied allocator for this pointer. If no allocator is provided, it creates a self-owned one.
Note
Slightly faster than the overload without length.

Definition at line 139 of file pointer.h.

◆ GenericPointer() [4/5]

template<typename ValueType , typename Allocator = CrtAllocator>
GenericPointer< ValueType, Allocator >::GenericPointer ( const Token tokens,
size_t  tokenCount 
)
inline

Constructor with user-supplied tokens.

This constructor let user supplies const array of tokens. This prevents the parsing process and eliminates allocation. This is preferred for memory constrained environments.

Parameters
tokensAn constant array of tokens representing the JSON pointer.
tokenCountNumber of tokens.

Example

#define NAME(s) { s, sizeof(s) / sizeof(s[0]) - 1, kPointerInvalidIndex }
#define INDEX(i) { #i, sizeof(#i) - 1, i }
static const Pointer::Token kTokens[] = { NAME("foo"), INDEX(123) };
static const Pointer p(kTokens, sizeof(kTokens) / sizeof(kTokens[0]));
// Equivalent to static const Pointer p("/foo/123");
#undef NAME
#undef INDEX

Definition at line 165 of file pointer.h.

◆ GenericPointer() [5/5]

template<typename ValueType , typename Allocator = CrtAllocator>
GenericPointer< ValueType, Allocator >::GenericPointer ( const GenericPointer< ValueType, Allocator > &  rhs,
Allocator allocator = 0 
)
inline

Copy constructor.

Definition at line 168 of file pointer.h.

◆ ~GenericPointer()

template<typename ValueType , typename Allocator = CrtAllocator>
GenericPointer< ValueType, Allocator >::~GenericPointer ( )
inline

Destructor.

Definition at line 173 of file pointer.h.

Member Function Documentation

◆ Append() [1/2]

template<typename ValueType , typename Allocator = CrtAllocator>
GenericPointer GenericPointer< ValueType, Allocator >::Append ( const Ch name,
SizeType  length,
Allocator allocator = 0 
) const
inline

Append a name token with length, and return a new Pointer.

Parameters
nameName to be appended.
lengthLength of name.
allocatorAllocator for the newly return Pointer.
Returns
A new Pointer with appended token.

Definition at line 229 of file pointer.h.

◆ Append() [2/2]

template<typename ValueType , typename Allocator = CrtAllocator>
GenericPointer GenericPointer< ValueType, Allocator >::Append ( const Token token,
Allocator allocator = 0 
) const
inline

Append a token and return a new Pointer.

Parameters
tokenToken to be appended.
allocatorAllocator for the newly return Pointer.
Returns
A new Pointer with appended token.

Definition at line 211 of file pointer.h.

◆ Erase()

template<typename ValueType , typename Allocator = CrtAllocator>
bool GenericPointer< ValueType, Allocator >::Erase ( ValueType &  root) const
inline

Erase a value in a subtree.

Parameters
rootRoot value of a DOM sub-tree to be resolved. It can be any value other than document root.
Returns
Whether the resolved value is found and erased.
Note
Erasing with an empty pointer Pointer(""), i.e. the root, always fail and return false.

Definition at line 711 of file pointer.h.

◆ operator=()

template<typename ValueType , typename Allocator = CrtAllocator>
GenericPointer& GenericPointer< ValueType, Allocator >::operator= ( const GenericPointer< ValueType, Allocator > &  rhs)
inline

Assignment operator.

Definition at line 180 of file pointer.h.

◆ RAPIDJSON_DISABLEIF_RETURN() [1/4]

template<typename ValueType , typename Allocator = CrtAllocator>
template<typename T >
GenericPointer< ValueType, Allocator >::RAPIDJSON_DISABLEIF_RETURN ( (internal::NotExpr< internal::IsSame< typename internal::RemoveConst< T >::Type, Ch > >)  ,
(GenericPointer< ValueType, Allocator >)   
)

Append a name token without length, and return a new Pointer.

Parameters
nameName (const Ch*) to be appended.
allocatorAllocator for the newly return Pointer.
Returns
A new Pointer with appended token.

◆ RAPIDJSON_DISABLEIF_RETURN() [2/4]

template<typename ValueType , typename Allocator = CrtAllocator>
Allocator stackAllocator GenericPointer< ValueType, Allocator >::RAPIDJSON_DISABLEIF_RETURN ( (internal::OrExpr< internal::IsPointer< T >, internal::IsGenericValue< T > >)  ,
(ValueType &)   
)

◆ RAPIDJSON_DISABLEIF_RETURN() [3/4]

template<typename ValueType , typename Allocator = CrtAllocator>
template<typename T , typename stackAllocator >
GenericPointer< ValueType, Allocator >::RAPIDJSON_DISABLEIF_RETURN ( (internal::OrExpr< internal::IsPointer< T >, internal::IsGenericValue< T > >)  ,
(ValueType &)   
)

Set a primitive value in a document.

Template Parameters
TEither Type, int, unsigned, int64_t, uint64_t, bool

◆ RAPIDJSON_DISABLEIF_RETURN() [4/4]

template<typename ValueType , typename Allocator = CrtAllocator>
template<typename T >
GenericPointer< ValueType, Allocator >::RAPIDJSON_DISABLEIF_RETURN ( (internal::OrExpr< internal::IsPointer< T >, internal::IsGenericValue< T > >)  ,
(ValueType &)   
) &

Set a primitive value in a subtree.

Template Parameters
TEither Type, int, unsigned, int64_t, uint64_t, bool

◆ Set() [1/6]

template<typename ValueType , typename Allocator = CrtAllocator>
template<typename stackAllocator >
ValueType& GenericPointer< ValueType, Allocator >::Set ( GenericDocument< EncodingType, typename ValueType::AllocatorType, stackAllocator > &  document,
const Ch value 
) const
inline

Set a null-terminated string in a document.

Definition at line 655 of file pointer.h.

◆ Set() [2/6]

template<typename ValueType , typename Allocator = CrtAllocator>
template<typename stackAllocator >
ValueType& GenericPointer< ValueType, Allocator >::Set ( GenericDocument< EncodingType, typename ValueType::AllocatorType, stackAllocator > &  document,
const ValueType &  value 
) const
inline

Set a value in a document, with copy semantics.

Definition at line 649 of file pointer.h.

◆ Set() [3/6]

template<typename ValueType , typename Allocator = CrtAllocator>
template<typename stackAllocator >
ValueType& GenericPointer< ValueType, Allocator >::Set ( GenericDocument< EncodingType, typename ValueType::AllocatorType, stackAllocator > &  document,
ValueType &  value 
) const
inline

Set a value in a document, with move semantics.

Definition at line 643 of file pointer.h.

◆ Set() [4/6]

template<typename ValueType , typename Allocator = CrtAllocator>
ValueType& GenericPointer< ValueType, Allocator >::Set ( ValueType &  root,
const Ch value,
typename ValueType::AllocatorType &  allocator 
) const
inline

Set a null-terminated string in a subtree.

Definition at line 620 of file pointer.h.

◆ Set() [5/6]

template<typename ValueType , typename Allocator = CrtAllocator>
ValueType& GenericPointer< ValueType, Allocator >::Set ( ValueType &  root,
const ValueType &  value,
typename ValueType::AllocatorType &  allocator 
) const
inline

Set a value in a subtree, with copy semantics.

Definition at line 615 of file pointer.h.

◆ Set() [6/6]

template<typename ValueType , typename Allocator = CrtAllocator>
ValueType& GenericPointer< ValueType, Allocator >::Set ( ValueType &  root,
ValueType &  value,
typename ValueType::AllocatorType &  allocator 
) const
inline

Set a value in a subtree, with move semantics.

It creates all parents if they are not exist or types are different to the tokens. So this function always succeeds but potentially remove existing values.

Parameters
rootRoot value of a DOM sub-tree to be resolved. It can be any value other than document root.
valueValue to be set.
allocatorAllocator for creating the values if the specified value or its parents are not exist.
See also
Create()

Definition at line 610 of file pointer.h.

◆ Swap() [1/2]

template<typename ValueType , typename Allocator = CrtAllocator>
template<typename stackAllocator >
ValueType& GenericPointer< ValueType, Allocator >::Swap ( GenericDocument< EncodingType, typename ValueType::AllocatorType, stackAllocator > &  document,
ValueType &  value 
) const
inline

Swap a value with a value in a document.

Definition at line 698 of file pointer.h.

◆ Swap() [2/2]

template<typename ValueType , typename Allocator = CrtAllocator>
ValueType& GenericPointer< ValueType, Allocator >::Swap ( ValueType &  root,
ValueType &  value,
typename ValueType::AllocatorType &  allocator 
) const
inline

Swap a value with a value in a subtree.

It creates all parents if they are not exist or types are different to the tokens. So this function always succeeds but potentially remove existing values.

Parameters
rootRoot value of a DOM sub-tree to be resolved. It can be any value other than document root.
valueValue to be swapped.
allocatorAllocator for creating the values if the specified value or its parents are not exist.
See also
Create()

Definition at line 692 of file pointer.h.

Member Data Documentation

◆ allocator [1/2]

template<typename ValueType , typename Allocator = CrtAllocator>
Allocator* GenericPointer< ValueType, Allocator >::allocator

Definition at line 242 of file pointer.h.

◆ allocator [2/2]

template<typename ValueType , typename Allocator = CrtAllocator>
T ValueType::AllocatorType& const GenericPointer< ValueType, Allocator >::allocator
Initial value:
{
return Create(root, allocator) = ValueType(value).Move()

Definition at line 637 of file pointer.h.

◆ defaultValue

template<typename ValueType , typename Allocator = CrtAllocator>
Allocator stackAllocator stackAllocator T const GenericPointer< ValueType, Allocator >::defaultValue
Initial value:
{
return GetWithDefault(document, defaultValue, document.GetAllocator())

Definition at line 591 of file pointer.h.

◆ document [1/2]

template<typename ValueType , typename Allocator = CrtAllocator>
Allocator stackAllocator stackAllocator& GenericPointer< ValueType, Allocator >::document

Definition at line 591 of file pointer.h.

◆ document [2/2]

template<typename ValueType , typename Allocator = CrtAllocator>
stackAllocator& GenericPointer< ValueType, Allocator >::document

Definition at line 673 of file pointer.h.

◆ value [1/2]

template<typename ValueType , typename Allocator = CrtAllocator>
T GenericPointer< ValueType, Allocator >::value

Definition at line 637 of file pointer.h.

◆ value [2/2]

template<typename ValueType , typename Allocator = CrtAllocator>
stackAllocator T const GenericPointer< ValueType, Allocator >::value
Initial value:
{
return Create(document) = value

Definition at line 673 of file pointer.h.


The documentation for this class was generated from the following files:
GenericPointer
Represents a JSON Pointer. Use Pointer for UTF8 encoding and default allocator.
Definition: fwd.h:126
GenericPointer::value
T value
Definition: pointer.h:637
GenericPointer::Token
A token is the basic units of internal representation.
Definition: pointer.h:99
GenericPointer::document
Allocator stackAllocator stackAllocator & document
Definition: pointer.h:591
GenericPointer::allocator
Allocator * allocator
Definition: pointer.h:242
GenericPointer::defaultValue
Allocator stackAllocator stackAllocator T const defaultValue
Definition: pointer.h:591