/* * Created on Feb 5, 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.util.*; import com.aelitis.azureus.core.devices.TranscodeException; import com.aelitis.azureus.core.devices.TranscodeProfile; import com.aelitis.azureus.core.devices.TranscodeProvider; public class TranscodeProfileImpl implements TranscodeProfile { private TranscodeManagerImpl manager; private int pid; private String uid; private String name; private Map<String,Object> properties; protected TranscodeProfileImpl( TranscodeManagerImpl _manager, int _provider_id, String _uid, String _name, Map<String,Object> _properties ) { manager = _manager; pid = _provider_id; uid = _uid; name = _name; properties = _properties; } public String getUID() { return( uid ); } public String getName() { String displayName = (String) properties.get("display-name"); return( displayName == null ? name : displayName ); } public TranscodeProvider getProvider() throws TranscodeException { return( manager.getProvider( pid )); } public boolean isStreamable() { String res = (String)properties.get( "streamable" ); return( res != null && res.equalsIgnoreCase( "yes" )); } public String getFileExtension() { return((String)properties.get( "file-ext" )); } public String getDeviceClassification() { return((String)properties.get( "device" )); } public String getDescription() { String res = (String)properties.get( "desc" ); return( res == null?"":res ); } public String getIconURL() { return((String)properties.get( "icon-url" )); } public int getIconIndex() { Object o = properties.get( "icon-index" ); if ( o instanceof Number ){ return(((Number)o).intValue()); } return( 0 ); } }