1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
|
/*
* Copyright (C) 2005-2008 by Daniel Wagner
* Copyright (C) 2005-2008 by Pieter Palmers
*
* This file is part of FFADO
* FFADO = Free Firewire (pro-)audio drivers for linux
*
* FFADO is based upon FreeBoB
*
* 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) version 3 of the License.
*
* 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, see <http://www.gnu.org/licenses/>.
*
*/
#include "ffadodevice.h"
#include "devicemanager.h"
#include "libieee1394/configrom.h"
#include "libieee1394/ieee1394service.h"
#include "libcontrol/Element.h"
#include "libcontrol/ClockSelect.h"
#include "libcontrol/Nickname.h"
#include <iostream>
#include <sstream>
#include <unistd.h>
#include <assert.h>
IMPL_DEBUG_MODULE( FFADODevice, FFADODevice, DEBUG_LEVEL_NORMAL );
FFADODevice::FFADODevice( DeviceManager& d, std::auto_ptr<ConfigRom>( configRom ) )
: Control::Container(&d)
, m_pConfigRom( configRom )
, m_pDeviceManager( d )
{
addOption(Util::OptionContainer::Option("id",m_pConfigRom->getGuidString()));
std::ostringstream nodestr;
nodestr << "node" << getConfigRom().getNodeId();
if (!addElement(&getConfigRom())) {
debugWarning("failed to add ConfigRom to Control::Container\n");
}
m_genericContainer = new Control::Container(this, "Generic");
if(m_genericContainer == NULL) {
debugError("Could not create Control::Container for generic controls\n");
} else {
if (!addElement(m_genericContainer)) {
debugWarning("failed to add generic container to Control::Container\n");
}
// add a generic control for the clock source selection
if(!m_genericContainer->addElement(new Control::ClockSelect(*this))) {
debugWarning("failed to add clock source control to container\n");
}
// add a generic control for the sample rate selection
if(!m_genericContainer->addElement(new Control::SamplerateSelect(*this))) {
debugWarning("failed to add sample rate control to container\n");
}
// add a generic control for the nickname
if(!m_genericContainer->addElement(new Control::Nickname(*this))) {
debugWarning("failed to add Nickname control to container\n");
}
// add a generic control for the streaming status
if(!m_genericContainer->addElement(new Control::StreamingStatus(*this))) {
debugWarning("failed to add StreamingStatus control to container\n");
}
}
}
FFADODevice::~FFADODevice()
{
if (!deleteElement(&getConfigRom())) {
debugWarning("failed to remove ConfigRom from Control::Container\n");
}
// remove generic controls if present
if(m_genericContainer) {
if (!deleteElement(m_genericContainer)) {
debugError("Generic controls present but not registered to the avdevice\n");
}
// remove and delete (as in free) child control elements
m_genericContainer->clearElements(true);
delete m_genericContainer;
}
}
FFADODevice *
FFADODevice::createDevice(std::auto_ptr<ConfigRom>( x ))
{
// re-implement this!!
assert(0);
return NULL;
}
std::string
FFADODevice::getName()
{
return getConfigRom().getGuidString();
}
int
FFADODevice::getNodeId()
{
return getConfigRom().getNodeId();
}
bool FFADODevice::compareGUID( FFADODevice *a, FFADODevice *b ) {
assert(a);
assert(b);
return ConfigRom::compareGUID(a->getConfigRom(), b->getConfigRom());
}
ConfigRom&
FFADODevice::getConfigRom() const
{
return *m_pConfigRom;
}
Ieee1394Service&
FFADODevice::get1394Service()
{
return getConfigRom().get1394Service();
}
bool
FFADODevice::loadFromCache()
{
return false;
}
bool
FFADODevice::saveCache()
{
return false;
}
bool
FFADODevice::needsRediscovery()
{
// require rediscovery by default
return true;
}
enum FFADODevice::eSyncState
FFADODevice::getSyncState( ) {
return eSS_Unknown;
}
enum FFADODevice::eStreamingState
FFADODevice::getStreamingState()
{
return eSS_Idle;
}
bool
FFADODevice::setNickname( std::string name)
{
return false;
}
std::string
FFADODevice::getNickname()
{
return "Unsupported";
}
bool
FFADODevice::canChangeNickname()
{
return false;
}
void
FFADODevice::handleBusReset()
{
debugOutput( DEBUG_LEVEL_VERBOSE, "Handle bus reset...\n");
// update the config rom node id
sleep(1);
Util::MutexLockHelper lock(m_DeviceMutex);
getConfigRom().setVerboseLevel(getDebugLevel());
getConfigRom().updatedNodeId();
}
void
FFADODevice::setVerboseLevel(int l)
{
debugOutput( DEBUG_LEVEL_VERBOSE, "Setting verbose level to %d...\n", l );
setDebugLevel(l);
m_DeviceMutex.setVerboseLevel(l);
getConfigRom().setVerboseLevel(l);
}
void
FFADODevice::showDevice()
{
#ifdef DEBUG
Ieee1394Service& s = getConfigRom().get1394Service();
debugOutput(DEBUG_LEVEL_NORMAL, "Attached to port.......: %d (%s)\n",
s.getPort(), s.getPortName().c_str());
debugOutput(DEBUG_LEVEL_NORMAL, "Node...................: %d\n", getNodeId());
debugOutput(DEBUG_LEVEL_NORMAL, "Vendor name............: %s\n",
getConfigRom().getVendorName().c_str());
debugOutput(DEBUG_LEVEL_NORMAL, "Model name.............: %s\n",
getConfigRom().getModelName().c_str());
debugOutput(DEBUG_LEVEL_NORMAL, "GUID...................: %s\n",
getConfigRom().getGuidString().c_str());
std::string id=std::string("dev? [none]");
getOption("id", id);
debugOutput(DEBUG_LEVEL_NORMAL, "Assigned ID....: %s\n", id.c_str());
flushDebugOutput();
#endif
}
bool
FFADODevice::enableStreaming() {
return true;
}
bool
FFADODevice::disableStreaming() {
return true;
}
const char *
FFADODevice::ClockSourceTypeToString(enum eClockSourceType t)
{
switch(t) {
default: return "Erratic type ";
case eCT_Invalid: return "Invalid ";
case eCT_Internal: return "Internal ";
case eCT_1394Bus: return "1394 Bus ";
case eCT_SytMatch: return "Compound Syt Match";
case eCT_SytStream: return "Sync Syt Match ";
case eCT_WordClock: return "WordClock ";
case eCT_SPDIF: return "SPDIF ";
case eCT_ADAT: return "ADAT ";
case eCT_TDIF: return "TDIF ";
case eCT_AES: return "AES ";
}
}
|