]> git.sesse.net Git - vlc/blobdiff - bindings/java/org/videolan/jvlc/Playlist.java
deprecate playlist
[vlc] / bindings / java / org / videolan / jvlc / Playlist.java
index 0046190a0c4d61acef8260537f61bca038e6fa33..140dc36f978a8cd240937326781e0368a3c44d0d 100644 (file)
-/*****************************************************************************
- * Playlist.java: The playlist class
+ /*****************************************************************************
+ * Playlist.java: PlaylistIntf implementation class
  *****************************************************************************
- * Copyright (C) 1998-2006 the VideoLAN team
  *
- * $Id$
+ * Copyright (C) 1998-2008 the VideoLAN team
+ * 
+ * Author: Filippo Carone <filippo@carone.org>
  *
- * Authors: Filippo Carone <filippo@carone.org>
+ * Created on 28-feb-2006
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
+ * $Id: Playlist.java 17089 2006-10-15 10:54:15Z littlejohn $
  *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
+ * This program is free software; you can redistribute it
+ * and/or modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2 of the
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public
+ * License along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
- *****************************************************************************/
+ * 
+ */
+
 
 package org.videolan.jvlc;
 
-public class Playlist implements PlaylistIntf {
+import org.videolan.jvlc.internal.LibVlc;
+import org.videolan.jvlc.internal.LibVlc.LibVlcInstance;
+import org.videolan.jvlc.internal.LibVlc.LibVlcMediaInstance;
+import org.videolan.jvlc.internal.LibVlc.libvlc_exception_t;
+
+/**
+ * The playlist is deprecated and will be removed. Use MediaList and MediaListPlayer instead.
+ */
+@Deprecated
+public class Playlist {
     
     
-    private long libvlcInstance;
-
-    public Playlist(long _libvlcInstance) {
-        this.libvlcInstance = _libvlcInstance;
+    private final LibVlcInstance libvlcInstance;
+    private final LibVlc libvlc;
+    private final JVLC jvlc;
+
+    public Playlist(JVLC jvlc) {
+        this.jvlc = jvlc;
+        this.libvlcInstance = jvlc.getInstance();
+        this.libvlc = jvlc.getLibvlc();
     }
     
-    native private int _playlist_add(String uri, String name);
-    native private void _play(int _id, String[] options);
-    native private void _pause();
-    native private void _stop();
-    native private void _next();
-    native private void _prev();
-    native private void _clear();
-    
-    native private int _itemsCount();
-    native private int _isPlaying();
-
-    public void play(int id, String[] options) {
-        _play(id, options);
+    public synchronized void play(int id, String[] options) throws VLCException {
+        libvlc_exception_t exception = new libvlc_exception_t();
+        libvlc.libvlc_playlist_play(libvlcInstance, id, options.length, options, exception);
     }
 
-
-    public void pause() {
-        _pause();
+    public synchronized void play() throws VLCException {
+        libvlc_exception_t exception = new libvlc_exception_t();
+        libvlc.libvlc_playlist_play(libvlcInstance, -1, 0, new String[] {}, exception);
     }
 
-    public void stop() {
-        _stop();
-
+    public synchronized void togglePause() throws VLCException {
+        libvlc_exception_t exception = new libvlc_exception_t();
+        libvlc.libvlc_playlist_pause(libvlcInstance, exception);
     }
 
-    public boolean isPlaying() {
-        return (_isPlaying() == 1)? false : true ;
+    public synchronized void stop() throws VLCException {
+        libvlc_exception_t exception = new libvlc_exception_t();
+        libvlc.libvlc_playlist_stop(libvlcInstance, exception);
     }
 
-    public int itemsCount() {
-        return _itemsCount();
+    public boolean isRunning() throws VLCException {
+        libvlc_exception_t exception = new libvlc_exception_t();
+        return libvlc.libvlc_playlist_isplaying(libvlcInstance, exception) == 0? false : true;
     }
 
-    public void next() {
-        _next();
+    public synchronized int itemsCount() throws VLCException {
+        libvlc_exception_t exception = new libvlc_exception_t();
+        return libvlc.libvlc_playlist_items_count(libvlcInstance, exception);
     }
 
-    public void prev() {
-        _prev();
+    public synchronized void next() throws VLCException {
+        libvlc_exception_t exception = new libvlc_exception_t();
+        if (! isRunning())
+            play();
+        libvlc.libvlc_playlist_next(libvlcInstance, exception);
     }
 
-    public void clear() {
-        _clear();
+    public synchronized void prev() throws VLCException {
+        libvlc_exception_t exception = new libvlc_exception_t();
+        if (! isRunning())
+            play();
+        libvlc.libvlc_playlist_prev(libvlcInstance, exception);
     }
 
-    public int add(String uri, String name) {
-        return _playlist_add(uri, name);
+    public synchronized void clear() throws VLCException {
+        libvlc_exception_t exception = new libvlc_exception_t();
+        libvlc.libvlc_playlist_clear(libvlcInstance, exception);
     }
-
-    public void addExtended() {
-        // TODO Auto-generated method stub
+    
+    public synchronized int add(String uri, String name) throws VLCException {
+        libvlc_exception_t exception = new libvlc_exception_t();
+        return libvlc.libvlc_playlist_add(libvlcInstance, uri, name, exception);
     }
 
-    public long getInstance() {
-        return libvlcInstance;
-    }
 
+    public synchronized void deleteItem(int itemID) throws VLCException {
+        libvlc_exception_t exception = new libvlc_exception_t();
+        libvlc.libvlc_playlist_delete_item(libvlcInstance, itemID, exception);
+    }
     
+    public synchronized void setLoop(boolean loop) {
+        libvlc_exception_t exception = new libvlc_exception_t();
+        libvlc.libvlc_playlist_loop(libvlcInstance, loop? 1 : 0, exception);
+    }
     
+    public MediaInstance getMediaInstance()
+    {
+        libvlc_exception_t exception = new libvlc_exception_t();
+        LibVlcMediaInstance mi = libvlc.libvlc_playlist_get_media_instance(libvlcInstance, exception);
+        return new MediaInstance(jvlc, mi);
+        
+    }
 }