Merge "remove Doxygen warning" into tizen_2.1
[platform/framework/native/media.git] / inc / FMediaIPlayerEventListener.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file                FMediaIPlayerEventListener.h
20  * @brief               This is the header file for the %IPlayerEventListener interface.
21  *
22  * This header file contains the declarations of the %IPlayerEventListener interface.
23  */
24
25 #ifndef _FMEDIA_IPLAYER_EVENT_LISTENER_H_
26 #define _FMEDIA_IPLAYER_EVENT_LISTENER_H_
27
28 #include <FBaseRtIEventListener.h>
29 #include <FMediaPlayerTypes.h>
30
31 namespace Tizen { namespace Media
32 {
33
34 /**
35  * @interface   IPlayerEventListener
36  * @brief                       This interface provides a listener for media playing events.
37  *
38  * @since               2.0
39  *
40  * The %IPlayerEventListener interface specifies the methods used to notify the status of the media player during the media playing events.
41  * The player engine works asynchronously. Therefore, it is important to implement this listener to ensure that the player flows correctly.
42  * When each operation of the Player is completed, an event is generated, and a method from this class is called.
43  *
44  * For more information on the class features, see <a href="../org.tizen.native.appprogramming/html/guide/media/playing_audio.htm">Playing Audio</a> and
45  <a href="../org.tizen.native.appprogramming/html/guide/media/playing_video.htm">Playing Video</a>.
46  */
47
48 class _OSP_EXPORT_ IPlayerEventListener
49         : virtual public Tizen::Base::Runtime::IEventListener
50 {
51
52 public:
53         /**
54         * This polymorphic destructor should be overridden if required. This way, the destructors of the derived classes are called when the destructor of this interface is called.
55         *
56         * @since                2.0
57         */
58         virtual ~IPlayerEventListener(void) {}
59
60         /**
61         *       Called when an audio/video content is opened asynchronously.
62         *
63         *   @since              2.0
64         *
65         *       @param[in]       r                                                                      The cause of the error
66         *       @exception       E_SUCCESS                                                      The method is successful.
67         *       @exception       E_SYSTEM                                                       A system error has occurred.
68         *       @exception       E_CONNECTION_FAILED                            The network connection has failed.
69         *       @exception       E_FILE_NOT_FOUND                  The file cannot be found or accessed.
70         *   @exception   E_UNSUPPORTED_FORMAT                           The specified format is not supported.
71         *   @exception   E_UNSUPPORTED_CODEC                            The specified codec is not supported.
72         *       @exception       E_OUT_OF_MEMORY                                        The memory is insufficient.
73         *       @exception      E_RIGHT_EXPIRED                                 The content right has expired.
74         *       @exception      E_RIGHT_NO_LICENSE                              The content has no license.
75         *       @exception      E_RIGHT_FUTURE_USE                              The content right is for future use.
76         *       @see            Player::OpenFile()
77         *       @see            Player::OpenUrl()
78         *       @see            Player::OpenBuffer()
79         */
80         virtual void OnPlayerOpened(result r) = 0;
81
82         /**
83         *       Called when the Player reaches the end of the clip.
84         *
85         * @since                2.0
86         */
87         virtual void OnPlayerEndOfClip(void) = 0;
88
89         /**
90         *       Called when the position of the audio/video content moves asynchronously.
91         *
92         * @since                2.0
93         *
94         *       @param[in] r                              The cause of the error
95         *       @exception       E_SUCCESS              The method is successful.
96         *       @exception       E_SYSTEM               A system error has occurred.
97         *       @see                             Player::SeekTo()
98         */
99
100         virtual void OnPlayerSeekCompleted(result r){};
101
102
103         /**
104         *       Called when the streaming data is being buffered.
105         *
106         * @since                2.0
107         *
108         *       @param[in]      percent         The percentage of buffering is completed
109         *       @see                            Player::OpenUrl()
110         */
111         virtual void OnPlayerBuffering(int percent) = 0;
112
113         /**
114         *       Called when an error has occurred while the Player is working.
115         *
116         * @since                2.0
117         *
118         *       @param[in]      r               A player error reason of type ::PlayerErrorReason
119         *       @remarks                        While playing streaming media, the player might throw an error like ::PLAYER_ERROR_CONNECTION_LOST,
120         *                               ::PLAYER_ERROR_STREAMING_TIMEOUT, ::PLAYER_ERROR_TRANSPORT, or ::PLAYER_ERROR_SERVER. @n
121         *                               If the content includes invalid data, ::PLAYER_ERROR_INVALID_DATA may occur.
122         *       @see                            PlayerErrorReason
123         */
124         virtual void OnPlayerErrorOccurred(Tizen::Media::PlayerErrorReason r) = 0;
125
126
127         /**
128          *      Called when the Player is being interrupted by a task of higher priority than the %Player.
129          *
130          * @since               2.0
131          */
132         virtual void OnPlayerInterrupted(void) = 0;
133
134         /**
135          *      Called when the interrupting Player has been released.
136          *
137          * @since               2.0
138          */
139         virtual void OnPlayerReleased(void) = 0;
140         /**
141         *       Called when an audio playback focus is changed to another application.
142         *
143         *       @since          2.0
144         *       @remarks        After the audio focus is being changed, the playback is paused or stopped and the state of this instance is changed to @c PLAYER_STATE_PAUSED or @c PLAYER_STATE_CLOSED.
145         *       @remarks        User interaction with the device is required for an application in @c PLAYER_STATE_PAUSED state to resume playing. This is to avoid the occurrence of a race condition among applications that try to play without user interaction.
146         *       @remarks An application can not play again even in the state of PLAYER_STATE_PAUSED due to the application which has a higher priority.
147         */
148         virtual void OnPlayerAudioFocusChanged(void) {}
149 protected:
150         //
151         // This method is for internal use only. Using this method can cause behavioral, security-related, and consistency-related issues in the application.
152         //
153         // This method is reserved and may change its name at any time without prior notice.
154         //
155         // @since               2.0
156         //
157         virtual void IPlayerEventListener_Reserved1(void) {}
158
159         //
160         // This method is for internal use only. Using this method can cause behavioral, security-related, and consistency-related issues in the application.
161         //
162         // This method is reserved and may change its name at any time without prior notice.
163         //
164         // @since               2.0
165         //
166         virtual void IPlayerEventListener_Reserved2(void) {}
167
168 };
169
170 }}  // Tizen::Media
171
172 #endif