26 #ifndef _SOWRECOVERYPOINTADAPTER_H_ 27 #define _SOWRECOVERYPOINTADAPTER_H_ 39 #define AMPS_SOW_STORE_DEFAULT_TOPIC "/ADMIN/bookmark_store" 40 #define AMPS_SOW_STORE_DEFAULT_CLIENT_FIELD "clientName" 41 #define AMPS_SOW_STORE_DEFAULT_SUB_FIELD "subId" 42 #define AMPS_SOW_STORE_DEFAULT_BOOKMARK_FIELD "bookmark" 44 #define SOW_RECOVERY_HANDLE_EXCEPTION(x) \ 45 catch (const AMPSException& ex_) \ 47 std::ostringstream os; \ 48 os << x << ": AMPSException " << ex_.what(); \ 49 StoreException ex(os.str()); \ 50 if (_throwNotListen) \ 54 else if (_pExceptionListener) \ 56 _pExceptionListener->exceptionThrown(ex); \ 59 catch (const std::exception& ex_) \ 61 std::ostringstream os; \ 62 os << x << ": std::exception " << ex_.what(); \ 63 StoreException ex(os.str()); \ 64 if (_throwNotListen) \ 68 else if (_pExceptionListener) \ 70 _pExceptionListener->exceptionThrown(ex); \ 75 std::ostringstream os; \ 76 os << x << ": Unknown exception"; \ 77 StoreException ex(os.str()); \ 78 if (_throwNotListen) \ 82 else if (_pExceptionListener) \ 84 _pExceptionListener->exceptionThrown(ex); \ 129 const string& trackedClientName_,
130 unsigned timeoutMillis_ = 5000,
131 bool useTimestamp_ =
false,
132 bool closeClient_ =
true,
133 bool updateFailureThrows_ =
false,
134 const string& topic_ = AMPS_SOW_STORE_DEFAULT_TOPIC,
135 const string& clientNameField_ = AMPS_SOW_STORE_DEFAULT_CLIENT_FIELD,
136 const string& subIdField_ = AMPS_SOW_STORE_DEFAULT_SUB_FIELD,
137 const string& bookmarkField_ = AMPS_SOW_STORE_DEFAULT_BOOKMARK_FIELD
141 , _serializeBuffer(0)
143 , _deserializeBuffer(0)
144 , _client(storeClient_)
145 , _trackedName(trackedClientName_)
147 , _nameField(clientNameField_)
148 , _subIdField(subIdField_)
149 , _bookmarkField(bookmarkField_)
150 , _timeoutMillis(timeoutMillis_)
152 , _closeClient(closeClient_)
154 , _throwNotListen(updateFailureThrows_)
155 , _useTimestamp(useTimestamp_)
158 if (_client.
getName() == _trackedName)
160 throw UsageException(
"The SOWRecoveryPointAdapter cannot use the tracked client to update AMPS");
162 _initSerialization();
169 delete[] _serializeBuffer;
170 delete[] _deserializeBuffer;
179 static Field emptyField;
186 .
setFilter(
"/" + _nameField +
"='" + _trackedName +
"'")
190 cmd.
setOptions(
"select=[-/,+/" + _subIdField +
",+/" 191 + _bookmarkField +
"],timestamp");
195 cmd.
setOptions(
"select=[-/,+/" + _subIdField +
",+/" 196 + _bookmarkField +
"]");
199 _msIter = _stream.
begin();
218 return next(current_);
242 SOW_RECOVERY_HANDLE_EXCEPTION(
"SOWRecoveryPoint::next")
252 Field data = serialize(recoveryPoint_);
256 SOW_RECOVERY_HANDLE_EXCEPTION(
"SOWRecoveryPoint::update")
265 +
"='" + _trackedName +
"'");
267 SOW_RECOVERY_HANDLE_EXCEPTION(
"SOWRecoveryPoint::purge")
277 + _trackedName +
"' and /" 281 SOW_RECOVERY_HANDLE_EXCEPTION(
"SOWRecoveryPoint::purge(subId)")
299 _pExceptionListener = pListener_;
304 if (_closed || !_client.isValid())
312 SOW_RECOVERY_HANDLE_EXCEPTION(
"SOWRecoveryPoint::close publishFlush")
322 SOW_RECOVERY_HANDLE_EXCEPTION(
"SOWRecoveryPoint::close disconnect")
325 void _initSerialization()
330 if (_serializeLen == 0)
332 _serializeLen = (size_t) (_nameField.length()
333 + _trackedName.length()
334 + _subIdField.length()
335 + _bookmarkField.length()
336 + (AMPS_MAX_BOOKMARK_LEN * 4UL)
337 + SUBID_LEN + JSON_EXTRA);
338 _serializeLen += (128 - (_serializeLen % 128));
340 _serializeBuffer =
new char[_serializeLen];
341 AMPS_snprintf(_serializeBuffer, _serializeLen,
342 "{\"%s\":\"%s\",\"%s\":\"", _nameField.c_str()
343 , _trackedName.c_str()
344 , _subIdField.c_str());
345 _serializeStart = JSON_START + _nameField.length()
346 + _trackedName.length() + _subIdField.length();
348 SOW_RECOVERY_HANDLE_EXCEPTION(
"SOWRecoveryPoint::initSerialization")
353 virtual void initSerialization()
355 _initSerialization();
363 const Field& timestamp_)
371 const char* start = (
const char*)memchr((
const void*)data_.
data(),
372 (int)
':', data_.
len());
375 throw StoreException(
"Failure parsing json RecoveryPoint subId, no :");
377 size_t remain = data_.
len() - (size_t)(start - data_.
data());
378 start = (
const char*)memchr((
const void*)start, (int)
'"', remain);
381 throw StoreException(
"Failure parsing json RecoveryPoint subId, no start \"");
384 remain = data_.
len() - (size_t)(start - data_.
data());
385 const char* end = (
const char*)memchr((
const void*)start,
389 throw StoreException(
"Failure parsing json RecoveryPoint subId, no end \"");
391 size_t len = (size_t)(end - start);
392 subId =
Field(start, len);
393 start = (
const char*)memchr((
const void*)start, (int)
':', data_.
len());
396 throw StoreException(
"Failure parsing json RecoveryPoint bookmark, no :");
398 remain = data_.
len() - (size_t)(start - data_.
data());
399 start = (
const char*)memchr((
const void*)start, (int)
'"', remain);
402 throw StoreException(
"Failure parsing json RecoveryPoint bookmark, no start \"");
405 remain = data_.
len() - (size_t)(start - data_.
data());
406 end = (
const char*)memchr((
const void*)start, (int)
'"', remain);
409 throw StoreException(
"Failure parsing json RecoveryPoint bookmark, no end \"");
411 len = (size_t)(end - start);
412 if (_useTimestamp && !timestamp_.
empty())
414 if (_deserializeLen < len + timestamp_.
len())
416 delete[] _deserializeBuffer;
417 _deserializeBuffer = 0;
419 if (!_deserializeBuffer)
421 _deserializeLen = len + timestamp_.
len() + 1;
422 _deserializeBuffer =
new char[_deserializeLen];
424 memcpy((
void*)_deserializeBuffer, (
const void*)start, len);
425 _deserializeBuffer[len] =
',';
426 memcpy((
void*)(_deserializeBuffer + len + 1),
427 (
const void*)timestamp_.
data(), timestamp_.
len());
428 bookmark =
Field(_deserializeBuffer, _deserializeLen);
432 bookmark =
Field(start, len);
435 SOW_RECOVERY_HANDLE_EXCEPTION(
"SOWRecoveryPoint::deserialize")
447 size_t fullLen = _serializeStart + subId.
len()
448 + _bookmarkField.length() + bookmark.
len() + JSON_END;
449 if (fullLen >= _serializeLen)
451 _serializeLen = fullLen + (128 - (fullLen % 128));
452 delete[] _serializeBuffer;
456 AMPS_snprintf(_serializeBuffer + _serializeStart,
457 _serializeLen - _serializeStart,
458 "%.*s\",\"%s\":\"%.*s\"}", (
int)subId.
len()
460 , _bookmarkField.c_str()
461 , (int)bookmark.
len()
463 _serializeField.assign(_serializeBuffer, fullLen);
465 SOW_RECOVERY_HANDLE_EXCEPTION(
"SOWRecoveryPoint::serialize")
466 return _serializeField;
469 enum Constants :
size_t 478 size_t _serializeLen;
479 size_t _serializeStart;
480 Field _serializeField;
481 char* _serializeBuffer;
482 size_t _deserializeLen;
483 char* _deserializeBuffer;
485 std::string _trackedName;
487 std::string _nameField;
488 std::string _subIdField;
489 std::string _bookmarkField;
490 unsigned _timeoutMillis;
494 std::shared_ptr<const ExceptionListener> _pExceptionListener;
497 bool _throwNotListen;
502 #endif //_SOWRECOVERYPOINTADAPTER_H_ Command & setOptions(const std::string &options_)
Sets the options string for this command: see Message.Options for a helper class for constructing the...
Definition: ampsplusplus.hpp:788
virtual void update(RecoveryPoint &recoveryPoint_)
Update the storage information with the given recovery point.
Definition: SOWRecoveryPointAdapter.hpp:248
Message encapsulates a single message sent to or received from an AMPS server, and provides methods f...
Definition: Message.hpp:531
iterator begin(void)
Returns an iterator representing the beginning of the topic or subscription.
Definition: ampsplusplus.hpp:4990
const char * data() const
Returns the (non-null-terminated) data underlying this field.
Definition: Field.hpp:260
Field getCommand() const
Retrieves the value of the Command header of the Message as a new Field.
Definition: Message.hpp:1195
MessageStream execute(Command &command_)
Execute the provided command and return messages received in response in a MessageStream.
Definition: ampsplusplus.hpp:8774
RecoveryPointAdapter virtual base class for implementing external storage of subscription recovery po...
Definition: SOWRecoveryPointAdapter.hpp:93
Command & setData(const std::string &data_)
Sets the data for this command from an existing string.
Definition: ampsplusplus.hpp:828
Command & setFilter(const std::string &filter_)
Definition: ampsplusplus.hpp:691
Client represents a connection to an AMPS server, but does not provide failover or reconnection behav...
Definition: ampsplusplus.hpp:5069
Provides access to the subId and bookmark needed to restart a subscription.
Definition: RecoveryPoint.hpp:67
RecoveryPointImpl virtual base class provides access to the subId and bookmark needed to restart a su...
Definition: RecoveryPoint.hpp:49
Command & setTimeout(unsigned timeout_)
Sets the client-side timeout for this command.
Definition: ampsplusplus.hpp:850
virtual void purge()
Remove all data from the storage.
Definition: SOWRecoveryPointAdapter.hpp:260
virtual bool next(RecoveryPoint ¤t_)
Recovery is done by iteration over elements in storage.
Definition: SOWRecoveryPointAdapter.hpp:177
bool empty() const
Returns 'true' if empty, 'false' otherwise.
Definition: Field.hpp:128
Defines the AMPS::Field class, which represents the value of a field in a message.
Core type, function, and class declarations for the AMPS C++ client.
size_t len() const
Returns the length of the data underlying this field.
Definition: Field.hpp:267
Provides AMPS::RecoveryPointAdapter, an iterface for implementing external storage of bookmark subscr...
virtual void purge(const Field &subId_)
Remove the specified subId_ from the storage.
Definition: SOWRecoveryPointAdapter.hpp:272
void setExceptionListener(const std::shared_ptr< const ExceptionListener > &pListener_)
Set an exception listener on this adapter that will be notified of all exceptions that occur rather t...
Definition: SOWRecoveryPointAdapter.hpp:297
SOWRecoveryPointAdapter(const Client &storeClient_, const string &trackedClientName_, unsigned timeoutMillis_=5000, bool useTimestamp_=false, bool closeClient_=true, bool updateFailureThrows_=false, const string &topic_=AMPS_SOW_STORE_DEFAULT_TOPIC, const string &clientNameField_=AMPS_SOW_STORE_DEFAULT_CLIENT_FIELD, const string &subIdField_=AMPS_SOW_STORE_DEFAULT_SUB_FIELD, const string &bookmarkField_=AMPS_SOW_STORE_DEFAULT_BOOKMARK_FIELD)
Create a SOWRecoveryPointAdapter for a BookmarkStore that writes updated RecoveryPoints to the server...
Definition: SOWRecoveryPointAdapter.hpp:128
Provides AMPS::RecoveryPoint, AMPS::RecoveryPointFactory, AMPS::FixedRecoveryPoint, and AMPS::DynamicRecoveryPoint.
Represents an iterator over messages in an AMPS topic.
Definition: ampsplusplus.hpp:4945
void publishFlush(long timeout_=0, unsigned ackType_=Message::AckType::Processed)
Ensure that AMPS messages are sent and have been processed by the AMPS server.
Definition: ampsplusplus.hpp:5637
virtual void close()
Take any necessary actions to close the associated storage.
Definition: SOWRecoveryPointAdapter.hpp:285
Field represents the value of a single field in a Message.
Definition: Field.hpp:86
An iterable object representing the results of an AMPS subscription and/or query. ...
Definition: ampsplusplus.hpp:4937
Field getTimestamp() const
Retrieves the value of the Timestamp header of the Message as a new Field.
Definition: Message.hpp:1430
Field getData() const
Returns the data from this message.
Definition: Message.hpp:1460
FixedRecoveryPoint is a RecoveryPoint implementation where subId and bookmark are set explicitly...
Definition: RecoveryPoint.hpp:133
Command & setTopic(const std::string &topic_)
Definition: ampsplusplus.hpp:678
void disconnect()
Disconnect from an AMPS server.
Definition: ampsplusplus.hpp:5256
RecoveryPointAdapterImpl virtual base class for implementing external storage of subscription recover...
Definition: RecoveryPointAdapter.hpp:52
Definition: ampsplusplus.hpp:102
const Field & getSubId() const
Get the sub id for this recovery point.
Definition: RecoveryPoint.hpp:84
MessageStream timeout(unsigned timeout_)
Sets the maximum time to wait for the next message in milliseconds; if no message is available within...
Definition: ampsplusplus.hpp:8745
const std::string & getName() const
Returns the name of this client passed in the constructor.
Definition: ampsplusplus.hpp:5131
Command is an encapsulation of a single AMPS command sent by the client.
Definition: ampsplusplus.hpp:471
std::string sowDelete(const MessageHandler &messageHandler, const std::string &topic, const std::string &filter, long timeout)
Deletes one or more messages from a topic's SOW cache.
Definition: ampsplusplus.hpp:6679
const Field & getBookmark() const
Get the bookmark for this recovery point.
Definition: RecoveryPoint.hpp:91