IMP logo
Public Member Functions | Static Public Member Functions

IMP::Key< ID, LazyAdd > Class Template Reference


Detailed Description

template<unsigned int ID, bool LazyAdd>
class IMP::Key< ID, LazyAdd >

A base class for Keys.

This class does internal caching of the strings to accelerate the name lookup. It is better to create a Key and reuse it rather than recreate it many times from strings.

If you use this with a new type, you must add a new definition of attribute_table_index. Yes, this is an evil hack, but I couldn't get linking to work with static members of the template class.

The keys in IMP maintain a cached mapping between strings and indexes. This mapping is global--that is all IMP Models and Particles in the same program use the same mapping for each type of key. The type of the key is determined by an integer which should be unique for each type. If the integer is not unique, everything works, just more memory is wasted and types are interconvertible.

Keys used for storing attributes in particles should never be statically initialized. While this is annoying, statically initializing them is bad, as unused attribute keys can result in wasted memory in each particle.

If LazyAdd is true, keys created with a new string will be added, otherwise this is an error.

Inheritance diagram for IMP::Key< ID, LazyAdd >:

Public Member Functions

 Key ()
 make a default key in a well-defined null state
 Key (std::string c)
 Generate a key from the given string.
unsigned int get_index () const
const std::string get_string () const
 Turn a key into a pretty string.
Key operator+ (int o) const
Keyoperator++ ()
Keyoperator-- ()

Static Public Member Functions

static Key< ID, LazyAdd > add_alias (Key< ID, LazyAdd > old_key, std::string new_name)
 Make new_name an alias for old_key.
static unsigned int add_key (std::string sc)
static std::vector< std::string > get_all_strings ()
 Get a list of all of the keys of this type.
static bool get_key_exists (std::string sc)
 Return true if there already is a key with that string.
static unsigned int get_number_unique ()
 Get the total number of keys of this type.
static void show_all (std::ostream &out)
 Show all the keys of this type.

Constructor & Destructor Documentation

template<unsigned int ID, bool LazyAdd>
IMP::Key< ID, LazyAdd >::Key ( std::string  c) [explicit]

Generate a key from the given string.

This operation can be expensive, so please cache the result.


Member Function Documentation

template<unsigned int ID, bool LazyAdd>
static Key<ID, LazyAdd> IMP::Key< ID, LazyAdd >::add_alias ( Key< ID, LazyAdd >  old_key,
std::string  new_name 
) [static]

Make new_name an alias for old_key.

Afterwards

      Key<ID>(old_key.get_string()) == Key<ID>(new_name)
template<unsigned int ID, bool LazyAdd>
static std::vector<std::string> IMP::Key< ID, LazyAdd >::get_all_strings ( ) [static]

Get a list of all of the keys of this type.

This can be used to check for typos and similar keys.

template<unsigned int ID, bool LazyAdd>
static unsigned int IMP::Key< ID, LazyAdd >::get_number_unique ( ) [static]

Get the total number of keys of this type.

This is mostly for debugging to make sure that there are no extra keys created.

template<unsigned int ID, bool LazyAdd>
Key& IMP::Key< ID, LazyAdd >::operator++ ( )

The documentation for this class was generated from the following file:

Generated on Thu Mar 24 2011 02:01:44 for IMP by doxygen 1.7.3