]> git.sesse.net Git - vlc/blobdiff - bindings/java/org/videolan/jvlc/Playlist.java
deprecate playlist
[vlc] / bindings / java / org / videolan / jvlc / Playlist.java
index 26120d49a07cc8ab40727cb9b5d0aeeb19dde7f9..140dc36f978a8cd240937326781e0368a3c44d0d 100644 (file)
@@ -1,14 +1,14 @@
  /*****************************************************************************
- * PlaylistIntf.java: The playlist interface
+ * Playlist.java: PlaylistIntf implementation class
  *****************************************************************************
  *
- * Copyright (C) 1998-2006 the VideoLAN team
+ * Copyright (C) 1998-2008 the VideoLAN team
  * 
  * Author: Filippo Carone <filippo@carone.org>
  *
  * Created on 28-feb-2006
  *
- * $Id$
+ * $Id: Playlist.java 17089 2006-10-15 10:54:15Z littlejohn $
  *
  * This program is free software; you can redistribute it
  * and/or modify it under the terms of the GNU General Public License
 
 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;
+    private final LibVlcInstance libvlcInstance;
+    private final LibVlc libvlc;
+    private final JVLC jvlc;
 
-    public Playlist(long _libvlcInstance) {
-        this.libvlcInstance = _libvlcInstance;
+    public Playlist(JVLC jvlc) {
+        this.jvlc = jvlc;
+        this.libvlcInstance = jvlc.getInstance();
+        this.libvlc = jvlc.getLibvlc();
     }
     
-    native private int _playlist_add(String uri, String name, String[] options);
-    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 void _deleteItem(int itemID);
-    
-    native private int _itemsCount();
-    native private int _isRunning();
-    
-    native private boolean _inputIsPlaying();
-       native private boolean _inputHasVout();
-
-
-    public synchronized void play(int id, String[] options) {
-        _play(id, options);
-        while (! _inputIsPlaying()) ;
+    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 synchronized void play() {
-        play(-1, null);
+    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 synchronized void pause() {
-        _pause();
+    public synchronized void togglePause() throws VLCException {
+        libvlc_exception_t exception = new libvlc_exception_t();
+        libvlc.libvlc_playlist_pause(libvlcInstance, exception);
     }
 
-    public synchronized void stop() {
-        _stop();
-
+    public synchronized void stop() throws VLCException {
+        libvlc_exception_t exception = new libvlc_exception_t();
+        libvlc.libvlc_playlist_stop(libvlcInstance, exception);
     }
 
-    public boolean isRunning() {
-         return (_isRunning() == 0)? false : true ;
+    public boolean isRunning() throws VLCException {
+        libvlc_exception_t exception = new libvlc_exception_t();
+        return libvlc.libvlc_playlist_isplaying(libvlcInstance, exception) == 0? false : true;
     }
 
-    public synchronized int itemsCount() {
-        return _itemsCount();
+    public synchronized int itemsCount() throws VLCException {
+        libvlc_exception_t exception = new libvlc_exception_t();
+        return libvlc.libvlc_playlist_items_count(libvlcInstance, exception);
     }
 
-    public synchronized void next() {
+    public synchronized void next() throws VLCException {
+        libvlc_exception_t exception = new libvlc_exception_t();
         if (! isRunning())
             play();
-        _next();
+        libvlc.libvlc_playlist_next(libvlcInstance, exception);
     }
 
-    public synchronized void prev() {
+    public synchronized void prev() throws VLCException {
+        libvlc_exception_t exception = new libvlc_exception_t();
         if (! isRunning())
             play();
-        _prev();
+        libvlc.libvlc_playlist_prev(libvlcInstance, exception);
     }
 
-    public synchronized void clear() {
-       /*
-        * This method has been commented out until
-        * playlist_Clear has been fixed in vlc.
-        */
-        //_clear();
-    }
-
-    public synchronized int add(String uri, String name, String[] options) {
-        return _playlist_add(uri, name, options);
+    public synchronized void clear() throws VLCException {
+        libvlc_exception_t exception = new libvlc_exception_t();
+        libvlc.libvlc_playlist_clear(libvlcInstance, exception);
     }
     
-    public synchronized int add(String uri, String name) {
-        return add(uri, name, null);
+    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 synchronized void addExtended() {
-    }
 
-    public synchronized void deleteItem(int itemID) {
-        _deleteItem(itemID);
+    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 long getInstance() {
-        return libvlcInstance;
+    public synchronized void setLoop(boolean loop) {
+        libvlc_exception_t exception = new libvlc_exception_t();
+        libvlc.libvlc_playlist_loop(libvlcInstance, loop? 1 : 0, exception);
     }
     
-    public synchronized boolean inputIsPlaying() {
-        return _inputIsPlaying();
+    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);
+        
     }
-
-    public synchronized boolean inputHasVout() {
-        return _inputHasVout();
-    }
-    
 }