Package com.aelitis.azureus.core.devices.impl

Source Code of com.aelitis.azureus.core.devices.impl.DeviceMediaRendererManual

/*
* Created on Jul 10, 2009
* Created by Paul Gardner
*
* Copyright 2009 Vuze, Inc.  All rights reserved.
*
* 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; version 2 of the License only.
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*/


package com.aelitis.azureus.core.devices.impl;

import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import org.gudy.azureus2.core3.config.COConfigurationManager;
import org.gudy.azureus2.core3.internat.MessageText;
import org.gudy.azureus2.core3.util.AERunnable;
import org.gudy.azureus2.core3.util.AESemaphore;
import org.gudy.azureus2.core3.util.AEThread2;
import org.gudy.azureus2.core3.util.AsyncDispatcher;
import org.gudy.azureus2.core3.util.Debug;
import org.gudy.azureus2.core3.util.FileUtil;
import org.gudy.azureus2.core3.util.IndentWriter;

import com.aelitis.azureus.core.devices.DeviceManagerException;
import com.aelitis.azureus.core.devices.TranscodeException;
import com.aelitis.azureus.core.devices.TranscodeFile;
import com.aelitis.azureus.core.devices.TranscodeTargetListener;


public class
DeviceMediaRendererManual
  extends DeviceMediaRendererImpl
{
  private static final Object  COPY_ERROR_KEY     = new Object();
  private static final Object  COPY_PENDING_KEY   = new Object();

  private boolean        can_copy_to_folder  = true;
  private boolean        copy_outstanding;
  private boolean        copy_outstanding_set;
  private AEThread2      copy_thread;
  private AESemaphore      copy_sem = new AESemaphore( "Device:copy" );
  private AsyncDispatcher    async_dispatcher = new AsyncDispatcher( 5000 );

  protected
  DeviceMediaRendererManual(
    DeviceManagerImpl  _manager,
    String        _uid,
    String        _classification,
    boolean        _manual,
    String        _name )
  {
    super( _manager, _uid, _classification, _manual, _name );
  }
 
  protected
  DeviceMediaRendererManual(
    DeviceManagerImpl  _manager,
    Map          _map )
 
    throws IOException
  {
    super(_manager, _map );
  }
 
  protected void
  initialise()
  {
    super.initialise();
   
    if ( getPersistentBooleanProperty( PP_COPY_OUTSTANDING, false )){
   
      setCopyOutstanding();
    }
   
    addListener(
      new TranscodeTargetListener()
      {
        public void
        fileAdded(
          TranscodeFile    file )
        {
          updateStatus( file );
        }
       
        public void
        fileChanged(
          TranscodeFile    file,
          int          type,
          Object        data )
        {
          updateStatus( file );
        }
       
        public void
        fileRemoved(
          TranscodeFile    file )
        { 
            // do this to pick up change in copy-to-device state caused by removal
         
          setCopyOutstanding();
        }
       
        private void
        updateStatus(
          TranscodeFile    file )
        {
          if ( file.isComplete() && !file.isCopiedToDevice()){
           
            setCopyOutstanding();
          }
        }
      });
  }
 
  public boolean
  canAssociate()
  {
    return( false );
  }
 
  public boolean
  canRestrictAccess()
  {
    return( false );
  }
 
  public boolean
  canFilterFilesView()
  {
    return( false );
  }
 
  public boolean
  isBrowsable()
  {
    return( false );
  }
 
  public boolean
  canCopyToFolder()
  {
    return( can_copy_to_folder );
  }
 
  public void
  setCanCopyToFolder(
    boolean    can )
  {
    can_copy_to_folder = can;
   
    if ( !can ){
     
      setPersistentBooleanProperty( PP_COPY_OUTSTANDING, false );
     
      copy_outstanding     = false;
      copy_outstanding_set  = false;
    }
  }
 
  public File
  getCopyToFolder()
  {
    String str = getPersistentStringProperty( PP_COPY_TO_FOLDER, null );
   
    if ( str == null ){
     
      return( null );
    }
   
    return( new File( str ));
  }
 
  public void
  setCopyToFolder(
    File    file )
  {
    setPersistentStringProperty( PP_COPY_TO_FOLDER, file==null?null:file.getAbsolutePath());
   
    if ( getAutoCopyToFolder()){
     
      setCopyOutstanding();
    }
  }
 
  public boolean
  isLivenessDetectable()
  {
    return( getPersistentBooleanProperty( PP_LIVENESS_DETECTABLE, false ));
  }
 
  public void
  setLivenessDetectable(
    boolean  b )
  {
    setPersistentBooleanProperty( PP_LIVENESS_DETECTABLE, true );
  }
 
  public int
  getCopyToFolderPending()
  {
    if ( !can_copy_to_folder ){
     
      return( 0 );
    }
   
    synchronized( this ){
     
      if ( !copy_outstanding ){
       
        return( 0 );
      }
    }

    TranscodeFileImpl[] files = getFiles();
   
    int result = 0;
     
    for ( TranscodeFileImpl file: files ){

      if ( file.isComplete() && !file.isCopiedToDevice()){
       
        result++;
      }
    }
   
    return( result );
  }
 
  public boolean
  getAutoCopyToFolder()
  {
    return( getPersistentBooleanProperty( PP_AUTO_COPY, PP_AUTO_COPY_DEFAULT  ));
  }
   
  public void
  setAutoCopyToFolder(
    boolean    auto )
  {
    setPersistentBooleanProperty( PP_AUTO_COPY, auto );
     
    setCopyOutstanding();
  }
 
  public void
  manualCopy()
 
    throws DeviceManagerException
  {
    if ( getAutoCopyToFolder()){
     
      throw( new DeviceManagerException( "Operation prohibited - auto copy enabled" ));
    }
   
    doCopy();
  }
 
  protected void
  setCopyOutstanding()
  {
    if ( !can_copy_to_folder ){
     
      return;
    }
   
    synchronized( this ){
     
      copy_outstanding_set = true;
     
      if ( copy_thread == null ){
       
        copy_thread =
          new AEThread2( "Device:copier", true )
          {
            public void
            run()
            {
              performCopy();
            }
          };
                 
        copy_thread.start();
      }
     
      copy_sem.release();
    }
  }
 
  public boolean
  isAudioCompatible(
    TranscodeFile    transcode_file )
  {
    if ( getDeviceClassification().equals( "sony.PSP" )){
     
      try{
        File file = transcode_file.getSourceFile().getFile();
       
        if ( file.exists()){
         
          String name = file.getName().toLowerCase();
         
          if ( name.endsWith( ".mp3" ) || name.endsWith( ".wma" )){
           
            ((TranscodeFileImpl)transcode_file).setCopyToFolderOverride( ".." + File.separator + "MUSIC" );
           
            return( true );
          }
        }
      }catch( Throwable e ){
       
        log( "audio compatible check failed", e );
      }
    }
   
    return( false );
  }
 
  protected void
  performCopy()
  {
    if ( !can_copy_to_folder ){
     
      return;
    }
   
    synchronized( this ){

      copy_outstanding = true;
   
      async_dispatcher.dispatch(
        new AERunnable()
        {
          public void
          runSupport()
          {
            setPersistentBooleanProperty( PP_COPY_OUTSTANDING, true );
          }
        });
    }
   
    while( true ){
     
      if ( copy_sem.reserve( 10*1000 )){
       
        while( copy_sem.reserveIfAvailable());
      }
           
      boolean  auto_copy = getAutoCopyToFolder();
     
      boolean  nothing_to_do = false;
     
      synchronized( this ){

        if ( !auto_copy ){
                     
          copy_thread = null;
           
          nothing_to_do = true;
         
        }else{

          copy_outstanding_set = false;
        }
      }
     
      if ( nothing_to_do ){
       
        setError( COPY_ERROR_KEY, null );
       
        int pending = getCopyToFolderPending();
       
        if ( pending == 0 ){
         
          setInfo( COPY_PENDING_KEY, null );
         
        }else{
         
          String str = MessageText.getString( "devices.info.copypending", new String[]{ String.valueOf( pending ) });
         
          setInfo( COPY_PENDING_KEY, str );
        }
        return;
      }
     

      if ( doCopy()){
       
        break;
      }
    }
  }
 
  protected boolean
  doCopy()
  {
    if ( !can_copy_to_folder ){
     
      return( true );
    }
   
    setInfo( COPY_PENDING_KEY, null );
   
    File  copy_to = getCopyToFolder();
   
    List<TranscodeFileImpl>  to_copy = new ArrayList<TranscodeFileImpl>();

    boolean  borked = false;
   
    TranscodeFileImpl[] files = getFiles();
     
    int  pending = 0;
   
    for ( TranscodeFileImpl file: files ){
       
      if ( file.isComplete() && !file.isCopiedToDevice()){
       
        pending++;
       
        if ( file.getCopyToDeviceFails() < 3 ){
       
          to_copy.add( file );
         
        }else{
           
          String info = (String)file.getTransientProperty( COPY_ERROR_KEY );
         
          setError( COPY_ERROR_KEY, MessageText.getString( "device.error.copyfail") + (info==null?"":(" - " + info)));

          borked = true;
        }
      }
    }
   
    boolean  try_copy = false;
   
    if ( to_copy.size() > 0 ){
     
        // handle case where device is auto-detectable and copy-to is missing
     
      if ( isLivenessDetectable() && !isAlive() && ( copy_to == null || !copy_to.exists())){
     
        String str = MessageText.getString( "devices.info.copypending2", new String[]{ String.valueOf( pending ) });
       
        setInfo( COPY_PENDING_KEY, str );
       
        borked = true;
       
      }else{
       
        boolean  sub_borked = false;
       
        if ( copy_to == null ){
       
          setError( COPY_ERROR_KEY, MessageText.getString( "device.error.copytonotset" ));
         
          sub_borked = true;
         
        }else if ( !copy_to.exists()){
         
          // due to the two-phase mount of android devices and the fact that the
          // copy-to location is %root$/videos, the root might exist but the sub-folder
          // not.
         
          File parent = copy_to.getParentFile();
         
          if ( parent != null && parent.canWrite()){
           
            copy_to.mkdir();
          }
         
          if ( !copy_to.exists()){
         
            setError( COPY_ERROR_KEY, MessageText.getString( "device.error.mountrequired", new String[]{copy_to.getAbsolutePath()}));

            sub_borked = true;
          }

          //setError( COPY_ERROR_KEY, MessageText.getString( "device.error.copytomissing", new String[]{copy_to.getAbsolutePath()}));
          //sub_borked = true;
        }
       
        if ( !sub_borked ){
       
          if ( !copy_to.canWrite()){
         
            setError( COPY_ERROR_KEY, MessageText.getString( "device.error.copytonowrite", new String[]{copy_to.getAbsolutePath()}));
         
            sub_borked = true;
         
          }else{
         
            try_copy = true;
         
            setError( COPY_ERROR_KEY, null );
          }
        }
     
        borked = borked | sub_borked;
      }
    }
   
    synchronized( this ){

        // all done, tidy up and exit
     
      if ( to_copy.size() == 0 && !copy_outstanding_set && !borked ){
         
        copy_outstanding = false;
       
        async_dispatcher.dispatch(
          new AERunnable()
          {
            public void
            runSupport()
            {
              setError( COPY_ERROR_KEY, null );

              setPersistentBooleanProperty( PP_COPY_OUTSTANDING, false );
            }
          });
       
        copy_thread = null;
       
        return( true );
      }
    }
   
    if ( try_copy ){
     
      try{
        setBusy( true );
       
        for ( TranscodeFileImpl transcode_file: to_copy ){
         
          try{
            transcode_file.setCopyingToDevice( true );

            File  file = transcode_file.getTargetFile().getFile();
           
            File  target = new File( copy_to, file.getName());
           
            String override_str = transcode_file.getCopyToFolderOverride();
           
            if ( override_str != null ){
             
              File override_dir = new File( copy_to, override_str );
                     
              if ( override_dir.exists()){
                           
                target = new File( override_dir, file.getName());
              }
            }         
           
            try{             
              FileUtil.copyFileWithException( file, target );
                                           
              log( "Copied file '" + file + ": to " + copy_to );
             
              transcode_file.setCopiedToDevice( true );
             
            }catch( Throwable e ){
             
              copy_to.delete();
             
              transcode_file.setCopyToDeviceFailed();
             
              transcode_file.setTransientProperty( COPY_ERROR_KEY, Debug.getNestedExceptionMessage( e ));
             
              log( "Failed to copy file " + file, e );
            }
          }catch( TranscodeException e ){
   
            // file has been deleted
          }
        }
      }finally{
         
        setBusy( false );
      }
    }
   
    return( false );
  }
 
  public boolean
  isExportable()
  {
    return( true );
  }
 
  protected void
  getDisplayProperties(
    List<String[]>  dp )
  {
    super.getDisplayProperties( dp );
   
    addDP( dp, "devices.copy.pending", copy_outstanding );
  }
 
  public void
  generate(
    IndentWriter    writer )
  {
    super.generate( writer );
   
    try{
      writer.indent();
 
      writer.println( "auto_copy=" + getAutoCopyToFolder() + ", copy_to=" + getCopyToFolder() + ", copy_os=" + copy_outstanding );
     
    }finally{
     
      writer.exdent();
    }
  }

  // @see com.aelitis.azureus.core.devices.impl.DeviceImpl#getStatus()
  public String getStatus() {
    String s = super.getStatus();

    if (COConfigurationManager.getIntParameter("User Mode") > 0 && getCopyToFolder() != null) {
      s += " (" + getCopyToFolder().getPath() + ")";
    }

    return s;
  }
}
TOP

Related Classes of com.aelitis.azureus.core.devices.impl.DeviceMediaRendererManual

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.