1.air部署,细节待修改

This commit is contained in:
2022-04-15 13:51:42 +08:00
parent 3b74dfc608
commit 8c6be81f94
440 changed files with 7 additions and 883 deletions

View File

@ -0,0 +1,55 @@
/***************************************************//**
* @file QEProThermoElectricFeature.h
* @date September 2013
* @author Ocean Optics, Inc.
*
* This feature provides an interface to the thermo-
* electric unit (TEC) on the QE-PRO.
*
* LICENSE:
*
* SeaBreeze Copyright (C) 2014, Ocean Optics Inc
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject
* to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*******************************************************/
#ifndef QEPROTHERMOELECTRICFEATURE_H
#define QEPROTHERMOELECTRICFEATURE_H
#include "vendors/OceanOptics/features/thermoelectric/ThermoElectricFeatureBase.h"
namespace seabreeze {
class QEProThermoElectricFeature : public ThermoElectricFeatureBase {
public:
QEProThermoElectricFeature();
virtual ~QEProThermoElectricFeature();
/* Inherited from ThermoElectricFeatureBase where they are pure virtual */
virtual double getDefaultSetPointCelsius(const Protocol &protocol,
const Bus &bus) throw (FeatureException);
virtual bool getDefaultThermoElectricEnable(const Protocol &protocol,
const Bus &bus) throw (FeatureException);
/* Override from Feature */
virtual bool initialize(const Protocol &protocol, const Bus &bus)
throw (FeatureException);
};
}
#endif /* QEPROTHERMOELECTRICFEATURE_H */

View File

@ -0,0 +1,84 @@
/***************************************************//**
* @file ThermoElectricFeatureBase.h
* @date March 2013
* @author Ocean Optics, Inc.
*
* This feature provides an interface to the thermo-
* electric unit for devices with a clean
* protocol implementation. This is an abstract base
* class but it does much of the work needed for most
* implementations that can delegate almost everything
* to the protocol layer.
*
* LICENSE:
*
* SeaBreeze Copyright (C) 2014, Ocean Optics Inc
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject
* to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*******************************************************/
#ifndef THERMOELECTRICFEATUREBASE_H
#define THERMOELECTRICFEATUREBASE_H
#include "common/buses/Bus.h"
#include "common/protocols/Protocol.h"
#include "common/protocols/ProtocolHelper.h"
#include "common/features/FeatureImpl.h"
#include "common/exceptions/FeatureException.h"
#include "common/exceptions/IllegalArgumentException.h"
#include "vendors/OceanOptics/features/thermoelectric/ThermoElectricFeatureInterface.h"
namespace seabreeze {
class ThermoElectricFeatureBase : public FeatureImpl,
public ThermoElectricFeatureInterface {
public:
ThermoElectricFeatureBase();
virtual ~ThermoElectricFeatureBase();
virtual void setThermoElectricEnable(const Protocol &protocol,
const Bus &bus, bool enable) throw (FeatureException);
virtual double getTemperatureCelsius(const Protocol &protocol,
const Bus &bus) throw (FeatureException);
virtual void setTemperatureSetPointCelsius(const Protocol &protocol,
const Bus &bus, double degreesC)
throw (FeatureException, IllegalArgumentException);
/* These remain abstract because the limits of any given device will
* depend on its implementation. They will either need to be hardcoded
* into the implementation or be queried from the device.
*/
virtual double getDefaultSetPointCelsius(const Protocol &protocol,
const Bus &bus) throw (FeatureException) = 0;
virtual bool getDefaultThermoElectricEnable(const Protocol &protocol,
const Bus &bus) throw (FeatureException) = 0;
/* Inherited from Feature */
/* This is still abstract in case the device needs to do anything
* special with regards to defaults when it is initialized.
*/
virtual bool initialize(const Protocol &protocol, const Bus &bus)
throw (FeatureException) = 0;
virtual FeatureFamily getFeatureFamily();
};
}
#endif /* THERMOELECTRICFEATUREBASE_H */

View File

@ -0,0 +1,64 @@
/***************************************************//**
* @file ThermoElectricFeatureInterface.h
* @date February 2011
* @author Ocean Optics, Inc.
*
* This feature provides an interface to the thermo-
* electric cooler (TEC) feature.
*
* LICENSE:
*
* SeaBreeze Copyright (C) 2014, Ocean Optics Inc
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject
* to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*******************************************************/
#ifndef THERMOELECTRICFEATUREINTERFACE_H
#define THERMOELECTRICFEATUREINTERFACE_H
#include "common/buses/Bus.h"
#include "common/protocols/Protocol.h"
#include "common/exceptions/FeatureException.h"
#include "common/exceptions/IllegalArgumentException.h"
namespace seabreeze {
class ThermoElectricFeatureInterface {
public:
virtual ~ThermoElectricFeatureInterface() = 0;
virtual void setThermoElectricEnable(const Protocol &protocol,
const Bus &bus, bool enable) throw (FeatureException) = 0;
virtual double getTemperatureCelsius(const Protocol &protocol,
const Bus &bus) throw (FeatureException) = 0;
virtual void setTemperatureSetPointCelsius(const Protocol &protocol,
const Bus &bus, double degreesC)
throw (FeatureException, IllegalArgumentException) = 0;
virtual double getDefaultSetPointCelsius(const Protocol &protocol,
const Bus &bus) throw (FeatureException) = 0;
virtual bool getDefaultThermoElectricEnable(const Protocol &protocol,
const Bus &bus) throw (FeatureException) = 0;
};
/* Default implementation for (otherwise) pure virtual destructor */
inline ThermoElectricFeatureInterface::~ThermoElectricFeatureInterface() {}
}
#endif /* THERMOELECTRICFEATUREINTERFACE_H */

View File

@ -0,0 +1,68 @@
/***************************************************//**
* @file ThermoElectricQEFeature.h
* @date February 2009
* @author Ocean Optics, Inc.
*
* This feature provides an interface to the thermo-
* electric cooler (TEC) on the QE65000 and similar
* spectrometers (including the NIRQuest).
*
* LICENSE:
*
* SeaBreeze Copyright (C) 2014, Ocean Optics Inc
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject
* to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*******************************************************/
#ifndef THERMOELECTRICQEFEATURE_H
#define THERMOELECTRICQEFEATURE_H
#include "common/buses/Bus.h"
#include "common/protocols/Protocol.h"
#include "common/features/Feature.h"
#include "common/exceptions/FeatureException.h"
#include "common/exceptions/IllegalArgumentException.h"
#include "vendors/OceanOptics/features/thermoelectric/ThermoElectricFeatureBase.h"
namespace seabreeze {
class ThermoElectricQEFeature : public ThermoElectricFeatureBase {
public:
ThermoElectricQEFeature();
virtual ~ThermoElectricQEFeature();
/* Inherited from ThermoElectricFeatureBase where they are pure virtual */
double getDefaultSetPointCelsius(const Protocol &protocol,
const Bus &bus) throw (FeatureException);
bool getDefaultThermoElectricEnable(const Protocol &protocol,
const Bus &bus) throw (FeatureException);
/* Override from Feature */
virtual bool initialize(const Protocol &protocol, const Bus &bus)
throw (FeatureException);
private:
std::vector<byte> *readTECDefaults(const Protocol &protocol,
const Bus &bus) throw (FeatureException);
};
}
#endif /* THERMOELECTRICQEFEATURE_H */

View File

@ -0,0 +1,63 @@
/***************************************************//**
* @file VentanaThermoElectricFeature.h
* @date March 2013
* @author Ocean Optics, Inc.
*
* This feature provides an interface to the thermo-
* electric unit (TEC) on the Ventana.
*
* LICENSE:
*
* SeaBreeze Copyright (C) 2014, Ocean Optics Inc
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject
* to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*******************************************************/
#ifndef VENTANATHERMOELECTRICFEATURE_H
#define VENTANATHERMOELECTRICFEATURE_H
#include "common/buses/Bus.h"
#include "common/protocols/Protocol.h"
#include "common/features/Feature.h"
#include "common/exceptions/FeatureException.h"
#include "common/exceptions/IllegalArgumentException.h"
#include "vendors/OceanOptics/features/thermoelectric/ThermoElectricFeatureBase.h"
namespace seabreeze {
class VentanaThermoElectricFeature : public ThermoElectricFeatureBase {
public:
VentanaThermoElectricFeature();
virtual ~VentanaThermoElectricFeature();
/* Inherited from ThermoElectricFeatureBase where they are pure virtual */
virtual double getDefaultSetPointCelsius(const Protocol &protocol,
const Bus &bus) throw (FeatureException);
virtual bool getDefaultThermoElectricEnable(const Protocol &protocol,
const Bus &bus) throw (FeatureException);
/* Override from Feature, used to detect whether capability is present */
virtual bool initialize(const Protocol &protocol, const Bus &bus)
throw (FeatureException);
};
}
#endif /* VENTANATHERMOELECTRICFEATURE_H */