1 #ifndef _MADARA_KNOWLEDGE_BASE_IMPL_H 2 #define _MADARA_KNOWLEDGE_BASE_IMPL_H 23 #include "madara/MADARA_export.h" 28 #include "ace/SOCK_Dgram.h" 31 class ACE_SOCK_Acceptor;
140 bool clean_copy =
false);
217 std::shared_ptr<std::vector<KnowledgeRecord::Integer>>
take_integers(K && key,
354 #ifndef _MADARA_NO_KARL_ 466 #ifdef _MADARA_PYTHON_CALLBACKS_ 491 #endif // _MADARA_NO_KARL_ 526 void print_all_redeployment_results (std::ostream & output);
538 long start_latency (
void);
544 void print_my_latencies (std::ostream & output);
550 void print_all_latencies (std::ostream & output);
556 void print_all_summations (std::ostream & output);
568 template <
typename K,
typename V>
570 int result =
map_.
set (std::forward<K>(key),
571 std::forward<V>(val), settings);
578 template <
typename K,
typename V>
582 std::forward<K>(key), i,
583 std::forward<V>(val), settings);
590 template <
typename K,
typename V>
591 int set (K&& key,
const V * arr,
size_t size,
593 int result =
map_.
set (std::forward<K>(key), arr, size, settings);
623 const char * value,
size_t size,
636 const unsigned char * value,
size_t size,
649 const unsigned char * value,
size_t size,
662 const char * value,
size_t size,
718 void print (
unsigned int level)
const;
755 const std::string & key_val_delimiter =
"=")
const;
783 void clear (
bool erase =
false);
867 std::vector <KnowledgeRecord> & target);
892 std::map <std::string, knowledge::KnowledgeRecord> & target);
913 std::vector <std::string> & next_keys,
914 std::map <std::string, knowledge::KnowledgeRecord> & result,
992 bool reset_modifieds =
true);
1124 #endif // _MADARA_KNOWLEDGE_BASE_IMPL_H This class encapsulates an entry in a KnowledgeBase.
int64_t save_context(const std::string &filename) const
Saves the context to a file.
void to_string(std::string &target, const std::string &array_delimiter=",", const std::string &record_delimiter=";\n", const std::string &key_val_delimiter="=") const
Saves all keys and values into a string, using the underlying knowledge::KnowledgeRecord::to_string f...
std::map< std::string, bool > CopySet
Typedef for set of copyable keys.
size_t remove_transport(size_t index)
Removes a transport.
int set(const std::string &key, T &&value, const KnowledgeUpdateSettings &settings=KnowledgeUpdateSettings())
Atomically sets the value of a variable to the specific record.
~KnowledgeBaseImpl()
Destructor.
This class provides a distributed knowledge base implementation.
int read_file(const std::string &knowledge_key, const std::string &filename, const EvalSettings &settings=EvalSettings())
Read a file into the knowledge base.
void print(unsigned int level) const
Prints all knowledge variables and values in the context.
ssize_t write_file(const std::string &knowledge_key, const std::string &filename)
Write a file from the knowledge base to a specified location.
std::shared_ptr< std::vector< double > > share_doubles(const std::string &key, const KnowledgeReferenceSettings &settings=KnowledgeReferenceSettings()) const
Returns a shared_ptr, sharing with the internal one.
int apply_modified(const EvalSettings &settings=EvalSettings())
Applies current time and modified to all global variables and tries to send them. ...
size_t get_num_transports(void)
Gets the number of transports.
ACE_SOCK_Dgram unique_bind_
std::string expand_statement(const std::string &statement) const
Expands a statement using variable expansion.
int set_text(const VariableReference &variable, const char *value, size_t size, const EvalSettings &settings=EvalSettings())
Atomically sets the value of a variable to a text file's contents.
std::string setup_unique_hostport(const std::string &host="")
Binds to an ephemeral port for unique tie breakers in global ordering.
KnowledgeBaseImpl()
Constructor.
This class provides file repo capabilities to the knowledge base.
int set_jpeg(const VariableReference &variable, const unsigned char *value, size_t size, const EvalSettings &settings=EvalSettings())
Atomically sets the value of a variable to a JPEG image.
logger::Logger & get_logger(void) const
Gets the logger used for information printing.
std::shared_ptr< std::string > take_string(K &&key, const KnowledgeReferenceSettings &settings=KnowledgeReferenceSettings())
Returns a shared_ptr, while resetting this record to empty.
std::shared_ptr< std::vector< unsigned char > > take_binary(K &&key, const KnowledgeReferenceSettings &settings=KnowledgeReferenceSettings())
Returns a shared_ptr, while resetting this record to empty.
std::shared_ptr< std::vector< unsigned char > > share_binary(const std::string &key, const KnowledgeReferenceSettings &settings=KnowledgeReferenceSettings()) const
Returns a shared_ptr, sharing with the internal one.
void set_log_level(int level)
Sets the log level.
std::string get_id(void)
Returns the unique host and ephemeral binding for this Knowlede Base.
This class stores variables and their values for use by any entity needing state information in a thr...
void lock(void)
Locks the context to prevent updates over the network.
std::shared_ptr< std::vector< KnowledgeRecord::Integer > > share_integers(K &&key, const KnowledgeReferenceSettings &settings=KnowledgeReferenceSettings()) const
Returns a shared_ptr, sharing with the internal one.
void wait_for_change(void)
Wait for a change to happen to the context (e.g., from transports)
Holds settings for checkpoints to load or save.
void copy(const KnowledgeBaseImpl &source, const KnowledgeRequirements &reqs)
Copies variables and values from source to this context.
void close_transport(void)
Closes the transport mechanism so no dissemination is possible.
Provides knowledge logging services to files and terminals.
VariableReferences save_modifieds(void) const
Saves the list of modified records to use later for resending.
Holds basic transport settings.
Optimized reference to a variable within the knowledge base.
Compiled, optimized KaRL logic.
std::vector< KnowledgeRecord > FunctionArguments
size_t to_vector(const std::string &subject, unsigned int start, unsigned int end, std::vector< KnowledgeRecord > &target)
Fills a vector with Knowledge Records that begin with a common subject and have a finite range of int...
int set_index(const std::string &key, size_t index, T &&value, const KnowledgeUpdateSettings &settings=KnowledgeUpdateSettings())
Atomically sets the value of an array index to a value.
void define_function(const std::string &name, knowledge::KnowledgeRecord(*func)(FunctionArguments &, Variables &))
Defines a function.
size_t attach_transport(madara::transport::Base *transport)
Attaches a transport to the Knowledge Engine.
std::string debug_modifieds(void) const
Retrieves a stringified list of all modified variables that are ready to send over transport on next ...
A multi-threaded logger for logging to one or more destinations.
madara::knowledge::KnowledgeRecord wait(const std::string &expression)
Waits for an expression to be non-zero.
std::shared_ptr< std::string > share_string(K &&key, const KnowledgeReferenceSettings &settings=KnowledgeReferenceSettings()) const
Returns a shared_ptr, sharing with the internal one.
int set_file(const VariableReference &variable, const unsigned char *value, size_t size, const EvalSettings &settings=EvalSettings())
Atomically sets the value of a variable to the contents of a file.
void clear_map(void)
Clears the knowledge base.
std::shared_ptr< std::vector< double > > share_doubles(K &&key, const KnowledgeReferenceSettings &settings=KnowledgeReferenceSettings()) const
Returns a shared_ptr, sharing with the internal one.
void get_matches(const std::string &prefix, const std::string &suffix, VariableReferences &matches)
Creates an iteration of VariableReferences to all keys matching the prefix and suffix.
int64_t save_as_json(const std::string &filename) const
Saves the context to a file as JSON.
Holds settings requirements for knowledge, usually in copying.
void release(void)
Releases a recursive lock on the knowledge base.
::std::map< std::string, KnowledgeRecord > KnowledgeMap
std::shared_ptr< std::vector< unsigned char > > share_binary(K &&key, const KnowledgeReferenceSettings &settings=KnowledgeReferenceSettings()) const
Returns a shared_ptr, sharing with the internal one.
std::shared_ptr< std::vector< KnowledgeRecord::Integer > > share_integers(const std::string &key, const KnowledgeReferenceSettings &settings=KnowledgeReferenceSettings()) const
Returns a shared_ptr, sharing with the internal one.
madara::knowledge::KnowledgeRecord retrieve_index(const std::string &key, size_t index, const KnowledgeReferenceSettings &settings=KnowledgeReferenceSettings())
Retrieves a value at a specified index within a knowledge array.
An abstract base class defines a simple abstract implementation of an expression tree node...
bool exists(const std::string &key, const KnowledgeReferenceSettings &settings=KnowledgeReferenceSettings()) const
Checks if a knowledge location exists in the context.
int get_log_level(void)
Gets the log level.
bool clear(const std::string &key, const KnowledgeReferenceSettings &settings=KnowledgeReferenceSettings())
Clears a variable.
std::shared_ptr< std::vector< KnowledgeRecord::Integer > > take_integers(K &&key, const KnowledgeReferenceSettings &settings=KnowledgeReferenceSettings())
Returns a shared_ptr, while resetting this record to empty.
void mark_modified(const VariableReference &variable, const KnowledgeUpdateSettings &settings=KnowledgeUpdateSettings())
Marks the variable reference as updated.
CompiledExpression compile(const std::string &expression)
Compiles a KaRL expression into an expression tree.
size_t to_map(const std::string &subject, std::map< std::string, knowledge::KnowledgeRecord > &target)
Fills a variable map with Knowledge Records that match an expression.
int set_index(K &&key, size_t i, V &&val, const EvalSettings &settings)
std::vector< VariableReference > VariableReferences
a vector of variable references
void reset_checkpoint(void) const
Resets the local changed map, which tracks checkpointing modifieds.
Container for quality-of-service settings.
knowledge::KnowledgeMap to_map_stripped(const std::string &prefix) const
Creates a map with Knowledge Records that begin with the given prefix.
Encapsulates settings for an evaluation statement.
void clear_rules(void)
Clears the permanent knowledge rules (unimplemented)
int set_xml(const VariableReference &variable, const char *value, size_t size, const EvalSettings &settings=EvalSettings())
Atomically sets the value of a variable to an XML string.
void acquire(void)
Acquires the recursive lock on the knowledge base.
madara::transport::TransportSettings & transport_settings(void)
Returns a non-const reference to the Transport Settings.
int64_t load_context(const std::string &filename, bool use_id, const KnowledgeUpdateSettings &settings=KnowledgeUpdateSettings(true, true, true, false))
Loads the context from a file.
madara::knowledge::KnowledgeRecord evaluate(const std::string &expression)
Evaluates an expression.
Provides functions and classes for the distributed knowledge base.
void activate_transport(void)
Starts the transport mechanism for dissemination if it is closed.
void set_quality(const std::string &key, uint32_t quality, const KnowledgeReferenceSettings &settings=KnowledgeReferenceSettings())
Sets the quality of writing to a certain variable from this entity.
int64_t save_as_karl(const std::string &filename) const
Saves the context to a file as karl assignments, rather than binary.
VariableReference get_ref(const std::string &key, const KnowledgeReferenceSettings &settings=KnowledgeReferenceSettings())
Atomically returns a reference to the variable.
Settings for applying knowledge updates.
int read_policy(const std::string &policy_key, const std::string &policy_file)
Read a policy into the knowledge base.
int send_modifieds(const std::string &prefix, const EvalSettings &settings=EvalSettings())
Sends all modified variables through the attached transports.
Copyright (c) 2015 Carnegie Mellon University.
std::shared_ptr< std::string > share_string(const std::string &key, const KnowledgeReferenceSettings &settings=KnowledgeReferenceSettings()) const
Returns a shared_ptr, sharing with the internal one.
Encapsulates settings for a wait statement.
madara::transport::Transports transports_
Settings for applying knowledge updates.
Base class from which all transports must be derived.
void attach_logger(logger::Logger &logger) const
Attaches a logger to be used for printing.
int64_t save_checkpoint(const std::string &filename, bool reset_modifieds=true)
Saves a checkpoint of a list of changes to a file.
ThreadSafeContext & get_context(void)
Returns the ThreadSafeContext associated with this Knowledge Base.
std::shared_ptr< std::vector< double > > take_doubles(K &&key, const KnowledgeReferenceSettings &settings=KnowledgeReferenceSettings())
Returns a shared_ptr, while resetting this record to empty.
Provides an interface for external functions into the MADARA KaRL variable settings.
transport::QoSTransportSettings settings_
void clear_modifieds(void)
Clear all modifications to the knowledge base.
void unlock(void)
Unlocks the context to allow updates over the network (is only necessary if the context has been expl...
void add_modifieds(const VariableReferences &modifieds) const
Adds a list of VariableReferences to the current modified list.