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
|
/*!
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Copyright(c) 2012 Apogee Imaging Systems, Inc.
* \class AspenIo
* \brief io class for alta-g, aka aspen, aka ??, cameras
*
*/
#include "AspenIo.h"
#include "AspenEthernetIo.h"
#include "AspenUsbIo.h"
#include "apgHelper.h"
#include "ApgLogger.h"
#include <sstream>
#include <cstring> //for memset
////////////////////////////
// CTOR
AspenIo::AspenIo( CamModel::InterfaceType type,
const std::string & deviceAddr ) :
CameraIo( type ),
m_fileName( __BASE_FILE__ )
{
//log that we are trying to connect
std::string msg = "Try to connection to device " + deviceAddr;
ApgLogger::Instance().Write(ApgLogger::LEVEL_RELEASE,"info",
apgHelper::mkMsg ( m_fileName, msg, __LINE__) );
//create the camera interface
switch( m_type )
{
case CamModel::ETHERNET:
m_Interface = std::shared_ptr<ICamIo>( new AspenEthernetIo( deviceAddr ) );
break;
case CamModel::USB:
m_Interface = std::shared_ptr<ICamIo>( new AspenUsbIo( deviceAddr ) );
break;
default:
{
std::string errStr("Undefined camera interface type");
apgHelper::throwRuntimeException( m_fileName, errStr,
__LINE__, Apg::ErrorType_InvalidUsage );
}
break;
}
}
////////////////////////////
// DTOR
AspenIo::~AspenIo()
{
}
////////////////////////////
// PROGRAM
void AspenIo::Program(const std::string & FilenameFpga,
const std::string & FilenameFx2, const std::string & FilenameDescriptor,
const std::string & FilenameWebPage, const std::string & FilenameWebServer,
const std::string & FilenameWebCfg, bool Print2StdOut)
{
if( CamModel::ETHERNET == m_type )
{
std::string errStr("cannot program camera via ethernet");
apgHelper::throwRuntimeException( m_fileName, errStr,
__LINE__, Apg::ErrorType_InvalidOperation );
}
std::dynamic_pointer_cast<AspenUsbIo>(m_Interface)->Program(
FilenameFpga, FilenameFx2, FilenameDescriptor, FilenameWebPage,
FilenameWebServer, FilenameWebCfg, Print2StdOut );
}
////////////////////////////
// GET ID
uint16_t AspenIo::GetId()
{
const uint16_t rawId = GetIdFromReg();
return( rawId & CamModel::GEN2_CAMERA_ID_MASK );
}
////////////////////////////
// GET ID FROM STR DB
uint16_t AspenIo::GetIdFromStrDB()
{
CamInfo::StrDb db = ReadStrDatabase();
if( 0 != db.Id.compare("Not Set") )
{
uint16_t id = 0;
std::stringstream ss( db.Id );
ss >> id;
return id;
}
return 0;
}
////////////////////////////
// GET MAC ADDRESS
std::string AspenIo::GetMacAddress()
{
if( CamModel::ETHERNET != m_type )
{
std::string errStr("cannot read mac address via usb");
apgHelper::throwRuntimeException( m_fileName, errStr,
__LINE__, Apg::ErrorType_InvalidOperation );
}
std::string result;
std::dynamic_pointer_cast<AspenEthernetIo>(
m_Interface)->GetMacAddress( result );
return result;
}
////////////////////////////
// WRITE STR DATA BASE
void AspenIo::WriteStrDatabase( const CamInfo::StrDb & info )
{
if( CamModel::ETHERNET == m_type )
{
std::string errStr("cannot write string db via ethernet");
apgHelper::throwRuntimeException( m_fileName, errStr,
__LINE__, Apg::ErrorType_InvalidOperation );
}
std::dynamic_pointer_cast<AspenUsbIo>(
m_Interface)->WriteStrDatabase(
CamInfo::MkStrVectFromStrDb( info ) );
}
////////////////////////////
// READ STR DATA BASE
CamInfo::StrDb AspenIo::ReadStrDatabase()
{
std::vector<std::string> result;
if( CamModel::ETHERNET == m_type )
{
result = std::dynamic_pointer_cast<AspenEthernetIo>(
m_Interface)->ReadStrDatabase();
}
else
{
result = std::dynamic_pointer_cast<AspenUsbIo>(
m_Interface)->ReadStrDatabase();
}
return( CamInfo::MkStrDbFromStrVect( result ) );
}
std::vector<uint8_t> AspenIo::GetFlashBuffer( const uint32_t StartAddr, const uint32_t numBytes )
{
if( CamModel::ETHERNET == m_type )
{
std::string errStr("cannot read flash ethernet");
apgHelper::throwRuntimeException( m_fileName, errStr,
__LINE__, Apg::ErrorType_InvalidOperation );
}
return std::dynamic_pointer_cast<AspenUsbIo>(
m_Interface)->GetFlashBuffer( StartAddr, numBytes );
}
////////////////////////////
// READ NET DATA BASE
CamInfo::NetDb AspenIo::ReadNetDatabase()
{
CamInfo::NetDb result;
if( CamModel::ETHERNET == m_type )
{ // this can be done, but has not been implemented yet.
std::string errStr("cannot write net db via ethernet");
apgHelper::throwRuntimeException( m_fileName, errStr,
__LINE__, Apg::ErrorType_InvalidOperation );
}
result = std::dynamic_pointer_cast<AspenUsbIo>(
m_Interface)->ReadNetDatabase();
return result;
}
////////////////////////////
// WRITE NET DATA BASE
void AspenIo::WriteNetDatabase( const CamInfo::NetDb & input )
{
if( CamModel::ETHERNET == m_type )
{ // this can be done, but has not been implemented yet.
std::string errStr("cannot write net db via ethernet");
apgHelper::throwRuntimeException( m_fileName, errStr,
__LINE__, Apg::ErrorType_InvalidOperation );
}
std::dynamic_pointer_cast<AspenUsbIo>(
m_Interface)->WriteNetDatabase( input );
}
|