fixup! Reset dump values when pause function is called
[platform/core/api/audio-io.git] / include / CAudioOutput.h
1 /*
2  * Copyright (c) 2015 Samsung Electronics Co., Ltd 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  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __TIZEN_MEDIA_AUDIO_IO_CAUDIO_OUTPUT_H__
18 #define __TIZEN_MEDIA_AUDIO_IO_CAUDIO_OUTPUT_H__
19
20
21 #ifdef __cplusplus
22
23 #include "CAudioIODef.h"
24
25
26 namespace tizen_media_audio {
27
28
29     /**
30      * A class CAudioOutput that inherited from CAudioIO
31      */
32     class CAudioOutput : public CAudioIO {
33     public:
34         /* Constructor & Destructor */
35         explicit CAudioOutput(CAudioInfo& info);
36         ~CAudioOutput() = default;
37
38         /* Overridden Handler */
39         void onStream(CPulseAudioClient* pClient, size_t length) override;
40
41         /* Implemented Methods */
42         void initialize() override;
43         void finalize() override;
44
45         void prepare() override;
46         void unprepare() override;
47
48         void pause() override;
49         void resume() override;
50
51         void drain();
52         void flush() override;
53
54         int getBufferSize() override;
55
56         /* Methods */
57         size_t write(const void* buffer, size_t length);
58
59     private:
60         /* Private Methods */
61         void __setInit(bool flag) noexcept;
62         bool __IsInit() noexcept;
63         bool __IsReady() noexcept;
64         void __dumpStat() noexcept;
65         void __dumpStat(size_t length) noexcept;
66
67         bool __mIsUsedSyncWrite {};
68         bool __mIsInit {};
69
70         uint64_t __mTotalWrittenCount {};
71         uint64_t __mTotalWrittenBytes {};
72     };
73
74
75 } /* namespace tizen_media_audio */
76
77 #endif
78 #endif /* __TIZEN_MEDIA_AUDIO_IO_CAUDIO_OUTPUT_H__ */