AlexaClientSDK  3.0.0
A cross-platform, modular SDK for interacting with the Alexa Voice Service
Id3TagsRemover.h
Go to the documentation of this file.
1 /*
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License").
5  * You may not use this file except in compliance with the License.
6  * A copy of the License is located at
7  *
8  * http://aws.amazon.com/apache2.0/
9  *
10  * or in the "license" file accompanying this file. This file is distributed
11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12  * express or implied. See the License for the specific language governing
13  * permissions and limitations under the License.
14  */
15 
16 #ifndef ALEXA_CLIENT_SDK_PLAYLISTPARSER_INCLUDE_PLAYLISTPARSER_ID3TAGSREMOVER_H_
17 #define ALEXA_CLIENT_SDK_PLAYLISTPARSER_INCLUDE_PLAYLISTPARSER_ID3TAGSREMOVER_H_
18 
19 #include <atomic>
20 #include <cstddef>
21 #include <memory>
22 #include <vector>
23 
28 
29 namespace alexaClientSDK {
30 namespace playlistParser {
31 
36 public:
38  using ByteVector = std::vector<unsigned char>;
39 
45 
48  void doShutdown() override;
50 
59  bool removeTagsAndWrite(
60  const std::shared_ptr<avsCommon::avs::attachment::InProcessAttachment>& attachment,
61  const std::shared_ptr<avsCommon::avs::attachment::AttachmentWriter>& streamWriter);
62 
69  void stripID3Tags(ByteVector& buffer);
70 
71 private:
73  struct Context {
75  ByteVector remainingBuffer;
76 
78  std::size_t remainingBytesToStrip;
79 
81  bool isBufferComplete;
82 
84  Context() : remainingBytesToStrip{0}, isBufferComplete{false} {};
85  };
86 
93  void stripID3Tags(ByteVector& buffer, Context& context);
94 
102  bool writeBufferToWriter(
103  const ByteVector& buffer,
104  const std::shared_ptr<avsCommon::avs::attachment::AttachmentWriter>& writer);
105 
107  std::atomic<bool> m_shuttingDown;
108 };
109 
110 } // namespace playlistParser
111 } // namespace alexaClientSDK
112 
113 #endif // ALEXA_CLIENT_SDK_PLAYLISTPARSER_INCLUDE_PLAYLISTPARSER_ID3TAGSREMOVER_H_
Definition: Id3TagsRemover.h:35
Whether or not curl logs should be emitted.
Definition: AVSConnectionManager.h:36
bool removeTagsAndWrite(const std::shared_ptr< avsCommon::avs::attachment::InProcessAttachment > &attachment, const std::shared_ptr< avsCommon::avs::attachment::AttachmentWriter > &streamWriter)
std::vector< unsigned char > ByteVector
Alias for bytes.
Definition: Id3TagsRemover.h:38

AlexaClientSDK 3.0.0 - Copyright 2016-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0