]> git.sesse.net Git - vlc/blob - bindings/java/core/src/main/java/org/videolan/jvlc/JVLC.java
VLM class almost done
[vlc] / bindings / java / core / src / main / java / org / videolan / jvlc / JVLC.java
1 /*****************************************************************************
2  * JVLC.java: Main Java Class, represents a libvlc_instance_t object
3  *****************************************************************************
4  *
5  * Copyright (C) 1998-2008 the VideoLAN team
6  * 
7  * Author: Filippo Carone <filippo@carone.org>
8  *         Philippe Morin <phmorin@free.fr>
9  *
10  * Created on 28-feb-2006
11  *
12  * $Id: JVLC.java 20141 2007-05-16 19:31:35Z littlejohn $
13  *
14  * This program is free software; you can redistribute it
15  * and/or modify it under the terms of the GNU General Public License
16  * as published by the Free Software Foundation; either version 2 of the
17  * License, or (at your option) any later version.
18  * 
19  * This program is distributed in the hope that it will be useful, but
20  * WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
22  * General Public License for more details.
23  * 
24  * You should have received a copy of the GNU General Public
25  * License along with this program; if not, write to the Free Software
26  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
27  * 
28  */
29
30 package org.videolan.jvlc;
31
32 import java.awt.Canvas;
33
34 import org.videolan.jvlc.internal.LibVlc;
35 import org.videolan.jvlc.internal.LibVlc.LibVlcInstance;
36 import org.videolan.jvlc.internal.LibVlc.libvlc_exception_t;
37
38 import com.sun.jna.Native;
39
40 public class JVLC
41 {
42
43     private final LibVlcInstance instance;
44
45     private final LibVlc libvlc = LibVlc.SYNC_INSTANCE;
46
47     private MediaList mediaList;
48     
49     private VLM vlm;
50     
51     private volatile boolean released; 
52     
53     public JVLC()
54     {
55         String[] args = new String[] {};
56         instance = createInstance(args);
57         mediaList = new MediaList(this);
58     }
59
60     public JVLC(String[] args)
61     {
62         instance = createInstance(args);
63     }
64     
65     public JVLC(String args)
66     {
67         this(args.split(" "));
68     }
69
70     public MediaInstance play(String media)
71     {
72         MediaDescriptor mediaDescriptor = new MediaDescriptor(this, media);
73         MediaInstance mediaInstance = new MediaInstance(mediaDescriptor);
74         mediaInstance.play();
75         return mediaInstance;
76     }
77
78     public void setVideoOutput(Canvas canvas)
79     {
80         long drawable = Native.getComponentID(canvas);
81         libvlc_exception_t exception = new libvlc_exception_t();
82         libvlc.libvlc_video_set_parent(instance, drawable, exception );
83     }
84
85     /*
86      * Core methods
87      */
88     private LibVlcInstance createInstance(String[] args)
89     {
90         libvlc_exception_t exception = new libvlc_exception_t();
91         libvlc.libvlc_exception_init(exception);
92
93         return libvlc.libvlc_new(args.length, args, exception);
94     }
95
96     public Logger getLogger()
97     {
98         return new Logger(this);
99     }
100     
101     public VLM getVLM()
102     {
103         if (vlm != null)
104         {
105             vlm.release();
106         }
107         this.vlm = new VLM(this);
108         return vlm;
109     }
110     
111     public LoggerVerbosityLevel getLogVerbosity()
112     {
113         libvlc_exception_t exception = new libvlc_exception_t();
114         int level = libvlc.libvlc_get_log_verbosity(instance, exception);
115         return LoggerVerbosityLevel.getSeverity(level);
116     }
117
118     public void setLogVerbosity(LoggerVerbosityLevel level)
119     {
120         libvlc_exception_t exception = new libvlc_exception_t();
121         libvlc.libvlc_set_log_verbosity(instance, level.ordinal(), exception);
122     }
123
124     
125     /**
126      * Returns the _instance.
127      * @return the _instance
128      */
129     LibVlcInstance getInstance()
130     {
131         return instance;
132     }
133
134     /**
135      * Returns the libvlc.
136      * @return the libvlc
137      */
138     LibVlc getLibvlc()
139     {
140         return libvlc;
141     }
142     
143     /**
144      * Releases this instance and the native resources.
145      */
146     public void release()
147     {
148         if (!released)
149         {
150             released = true;
151             if (vlm != null)
152             {
153                 vlm.release();
154                 vlm = null;
155             }
156             libvlc.libvlc_release(instance);
157         }
158     }
159
160     /*
161      * (non-Javadoc)
162      * @see java.lang.Object#finalize()
163      */
164     @Override
165     protected void finalize() throws Throwable
166     {
167         if (!released)
168         {
169             released = true;
170             libvlc.libvlc_release(instance);
171         }
172         super.finalize();
173     }
174     
175     /**
176      * Returns the mediaList.
177      * @return the mediaList
178      */
179     public MediaList getMediaList()
180     {
181         return mediaList;
182     }
183     
184 }