Beta merge 2
[profile/ivi/wrt-plugins-tizen.git] / src / standards / Tizen / Mediacontent / JSAudio.h
1 /*
2 * Copyright (c) 2011 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
18 #ifndef _JS_TIZEN_AUDIO_H_
19 #define _JS_TIZEN_AUDIO_H_
20
21 #include <JavaScriptCore/JavaScript.h>
22 #include <CommonsJavaScript/PrivateObject.h>
23 #include <API/Mediacontent/MediacontentMedia.h>
24 #include <API/Mediacontent/MediacontentAudio.h>
25 #include "JSMedia.h"
26
27 using namespace TizenApis::Api::Mediacontent;
28 using namespace WrtDeviceApis::Commons;
29 using namespace WrtDeviceApis::CommonsJavaScript;
30
31 namespace TizenApis {
32 namespace Tizen1_0 {
33 namespace Mediacontent {
34
35 typedef PrivateObject<MediacontentAudioPtr, NoOwnership> AudioPrivObject;
36
37 class JSAudio
38 {
39 public:
40
41     static const JSClassDefinition* getClassInfo();
42
43     static const JSClassRef getClassRef();
44
45         static Api::Mediacontent::MediacontentAudioPtr getAudioObject(JSObjectRef object);
46
47 private:
48     /**
49      * This member variable contains the values which has to be passed when 
50      * the this class is embedded into JS Engine.
51      */
52     static JSClassDefinition m_classInfo;
53
54     /**
55      * This structure describes a statically declared function property.
56      */
57     static JSStaticFunction m_function[];
58
59     /**
60      * This member variable contains the initialization values for the 
61      * properties of this class. The values are given according to the
62      * data structure JSPropertySpec.
63      */
64     static JSStaticValue m_property[];
65
66     static JSClassRef m_jsClassRef;
67
68     /**
69      * The callback invoked when an object is first created.
70      */
71     static void initialize(JSContextRef context, JSObjectRef object);
72
73     /**
74      * The callback invoked when an object is finalized.
75      */
76     static void finalize(JSObjectRef object);
77
78
79
80     /**
81      * Getters and setters for properties
82      */
83
84     static JSValueRef   getPropertyAlbum(
85                                         JSContextRef context,
86                                         JSObjectRef object,
87                                         JSStringRef propertyName,
88                                         JSValueRef* exception);
89
90     static JSValueRef   getPropertyArtist(
91                                         JSContextRef context,
92                                         JSObjectRef object,
93                                         JSStringRef propertyName,
94                                         JSValueRef* exception);
95
96     static JSValueRef   getPropertyGenre(
97                                         JSContextRef context,
98                                         JSObjectRef object,
99                                         JSStringRef propertyName,
100                                         JSValueRef* exception);
101
102     static JSValueRef   getPropertyComposer(
103                                         JSContextRef context,
104                                         JSObjectRef object,
105                                         JSStringRef propertyName,
106                                         JSValueRef* exception);
107
108         static JSValueRef       getPropertyLyrics(
109                                                 JSContextRef context,
110                                                 JSObjectRef object,
111                                                 JSStringRef propertyName,
112                                                 JSValueRef* exception);
113
114     static JSValueRef   getPropertyCopyright(
115                                         JSContextRef context,
116                                         JSObjectRef object,
117                                         JSStringRef propertyName,
118                                         JSValueRef* exception);
119
120     static JSValueRef   getPropertyBitrate(
121                                         JSContextRef context,
122                                         JSObjectRef object,
123                                         JSStringRef propertyName,
124                                         JSValueRef* exception);
125
126     static JSValueRef   getPropertyTrackNum(
127                                         JSContextRef context,
128                                         JSObjectRef object,
129                                         JSStringRef propertyName,
130                                         JSValueRef* exception);
131     
132     static JSValueRef   getPropertyDuration(
133                                         JSContextRef context,
134                                         JSObjectRef object,
135                                         JSStringRef propertyName,
136                                         JSValueRef* exception);    
137
138         static bool                     setPropertyPlayCount(
139                                                 JSContextRef context,
140                                                 JSObjectRef object,
141                                                 JSStringRef propertyName,
142                                     JSValueRef value,
143                                                 JSValueRef* exception);  
144
145     static JSValueRef   getPropertyPlayedCount(
146                                         JSContextRef context,
147                                         JSObjectRef object,
148                                         JSStringRef propertyName,
149                                         JSValueRef* exception);    
150
151         static bool                     setPropertyPlayedTime(
152                                                 JSContextRef context,
153                                                 JSObjectRef object,
154                                                 JSStringRef propertyName,
155                                     JSValueRef value,
156                                                 JSValueRef* exception);  
157
158     static JSValueRef   getPropertyPlayedTime(
159                                         JSContextRef context,
160                                         JSObjectRef object,
161                                         JSStringRef propertyName,
162                                         JSValueRef* exception);    
163
164     static JSValueRef   getPropertySize(
165                                         JSContextRef context,
166                                         JSObjectRef object,
167                                         JSStringRef propertyName,
168                                         JSValueRef* exception);                 
169
170 };
171
172 }
173 }
174 }
175
176 #endif /* _JS_TIZEN_AUDIO_H_ */