![]() |
AlexaClientSDK
3.0.0
A cross-platform, modular SDK for interacting with the Alexa Voice Service
|
#include <AttachmentManager.h>
Public Types | |
enum | AttachmentType { AttachmentType::IN_PROCESS } |
Public Member Functions | |
AttachmentManager (AttachmentType attachmentType) | |
std::string | generateAttachmentId (const std::string &contextId, const std::string &contentId) const override |
bool | setAttachmentTimeoutMinutes (std::chrono::minutes timeoutMinutes) override |
std::unique_ptr< AttachmentWriter > | createWriter (const std::string &attachmentId, utils::sds::WriterPolicy policy=avsCommon::utils::sds::WriterPolicy::ALL_OR_NOTHING) override |
std::unique_ptr< AttachmentReader > | createReader (const std::string &attachmentId, utils::sds::ReaderPolicy policy) override |
![]() | |
virtual | ~AttachmentManagerInterface ()=default |
Static Public Member Functions | |
static std::shared_ptr< AttachmentManagerInterface > | createInProcessAttachmentManagerInterface () |
Static Public Attributes | |
static constexpr std::chrono::minutes | ATTACHMENT_MANAGER_TIMOUT_MINUTES_DEFAULT = std::chrono::hours(12) |
static constexpr std::chrono::minutes | ATTACHMENT_MANAGER_TIMOUT_MINUTES_MINIMUM = std::chrono::minutes(1) |
This class allows the decoupling of attachment readers and writers from the management of attachments.
This class is thread safe.
A design principle of the Attachment
class is that each attachment will have at most one reader and writer.
Application code may query the manager for a reader and writer object at any time, and in any order.
A local enumeration allowing the createReader call to act as a factory function for the underlying attachments. This enumeration need not include all specializations of the Attachment
class, only the ones that make sense for the AttachmentManager
to manage.
Enumerator | |
---|---|
IN_PROCESS | This value corresponds to the |
alexaClientSDK::avsCommon::avs::attachment::AttachmentManager::AttachmentManager | ( | AttachmentType | attachmentType | ) |
|
static |
Factory for creating IN_PROCESS instances of AttachmentManagerInterface.
|
overridevirtual |
Returns a pointer to an AttachmentReader
.
createReader
and createWriter
may occur in any order.attachmentId | The id of the Attachment . |
policy | The AttachmentReader policy, which determines the semantics of the AttachmentReader.read() . |
AttachmentReader
. Implements alexaClientSDK::avsCommon::avs::attachment::AttachmentManagerInterface.
Reimplemented in alexaClientSDK::avsCommon::utils::TestableAttachmentManager.
|
overridevirtual |
Returns a pointer to an AttachmentWriter
.
createReader
and createWriter
may occur in any order.attachmentId | The id of the Attachment . |
policy | The WriterPolicy that the AttachmentWriter should adhere to. |
AttachmentWriter
. Implements alexaClientSDK::avsCommon::avs::attachment::AttachmentManagerInterface.
Reimplemented in alexaClientSDK::avsCommon::utils::TestableAttachmentManager.
|
overridevirtual |
Creates an attachmentId given two particular strings
- the contextId and the contentId. Generally, contextId allows disambiguation when two attachment contentIds are not guaranteed to be unique. This function provides a consistent way for different parts of application code to combine contextId and contentId into a single string. Clearly, both the reader and writer of a given attachment need to call this function with the same two strings.
As an example of usage, if an application has several sources of attachments, for example two audio providers, then one pair of contextId / contentId strings might be: { "AudioProvider1", "Attachment1" }. If the other audio provider creates an attachment, then the pair: { "AudioProvider2", "Attachment1" } allows the contextId to disambiguate what happens to be identical contentIds.
If this function is called with one or both strings being empty, then the combine will not be performed. In the case of both strings being empty, an empty string will be returned. If only one string is non-empty, then that string will be returned.
contextId | The contextId, which generally reflects the source of the Attachment . |
contentId | The contentId, which is considered unique when paired with a particular contextId. |
Implements alexaClientSDK::avsCommon::avs::attachment::AttachmentManagerInterface.
Reimplemented in alexaClientSDK::avsCommon::utils::TestableAttachmentManager.
|
overridevirtual |
Sets the timeout parameter which is used to ensure unused attachments are eventually cleaned up. This time is specified in minutes. An unused attachment is defined as an attachment for which only a reader or writer was created. Such an Attachment is waiting to be either produced or consumed.
If this function is not called, then the timeout is set to a default value specified by the implementation.
The timeout cannot be set lower than an implementation specific minimum, since too low a timeout could cause attachments to be removed before both reader and writer have had time to request it.
timeoutMinutes | The timeout, expressed in minutes. If this is less than the minimum, then the setting will not be updated, and the function will return false. |
Implements alexaClientSDK::avsCommon::avs::attachment::AttachmentManagerInterface.
Reimplemented in alexaClientSDK::avsCommon::utils::TestableAttachmentManager.
|
static |
This is the default timeout value for attachments. Any attachment which is inspected in the removeExpiredAttachmentsLocked()
call, and whose lifetime exceeds this value, will be released.
|
static |
This is the minimum timeout value for attachments. setAttachmentTimeoutMinutes()
will not accept a value lower than this.
AlexaClientSDK 3.0.0 - Copyright 2016-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0