telldus/driver/TellUsbD101/TellUsbD101.cpp
2008-09-16 19:05:04 +00:00

482 lines
11 KiB
C++

/**
* @defgroup core telldus-core
* Telldus Core is the base module used to interface a Telldus TellStick.
* @{
*/
#ifdef _WINDOWS
#include "stdafx.h"
#include <ole2.h>
#endif
#include "TellUsbD101.h"
#include "settings/TelldusSettings.h"
#include "Device.h"
#include <vector>
#include <iostream>
#include <fstream>
#include <string.h>
#include <stdlib.h>
void handleException(std::exception e);
using namespace std;
/**
* @def TELLSTICK_TURNON
* Device-flag for devices supporting the devTurnOn() call.
*
* @def TELLSTICK_TURNOFF
* Device-flag for devices supporting the devTurnOff() call.
*
* @def TELLSTICK_BELL
* Device-flag for devices supporting the devBell() call.
*
* @def TELLSTICK_TOGGLE
* This method is currently unimplemented.
*
* @def TELLSTICK_DIM
* Device-flag for devices supporting the devDim() call.
*
* @def TELLSTICK_SUCCESS
* Error code. Returned when the command succeeded.
*
* @def TELLSTICK_ERROR_NOT_FOUND
* Error code. Returned if a TellStick was not found on the system.
*
* @def TELLSTICK_ERROR_PERMISSION_DENIED
* Error code. Returned if the user doesn't have privileges to open
* the TellStick device.
*
* @def TELLSTICK_ERROR_DEVICE_NOT_FOUND
* Error code. The supplied device id was not found.
*
* @def TELLSTICK_ERROR_METHOD_NOT_SUPPORTED
* Error code. The requested method is not supported device.
* This should be avoided by a call to devMethods().
*
* @def TELLSTICK_ERROR_UNKNOWN
* Error code. An unkown error has occurred.
*/
#define MAX_LOADSTRING 100
//TODO:
//delete on created objects
//comment (just copy from the called methods)
/**
* Turns a device on.
* Make sure the device supports this by calling devMethods() before any
* call to this function.
* @param intDeviceId The device id to turn on.
**/
int WINAPI devTurnOn(int intDeviceId){
try{
TelldusSettings ts;
Device* dev = ts.getDevice(intDeviceId);
if(dev != NULL){
int methods = dev->methods( ts.getModel( intDeviceId ) );
int retval = 0;
if ( !(methods & TELLSTICK_TURNON) ) {
retval = TELLSTICK_ERROR_METHOD_NOT_SUPPORTED;
} else {
retval = dev->turnOn();
}
delete(dev);
return retval;
}
else{
return TELLSTICK_ERROR_DEVICE_NOT_FOUND;
}
}
catch(exception e){
handleException(e);
}
return TELLSTICK_ERROR_UNKNOWN;
}
/**
* Turns a device off.
* Make sure the device supports this by calling devMethods() before any
* call to this function.
* @param intDeviceId The device id to turn off.
*/
int WINAPI devTurnOff(int intDeviceId){
try{
TelldusSettings ts;
Device* dev = ts.getDevice(intDeviceId);
if(dev != NULL){
int methods = dev->methods( ts.getModel( intDeviceId ) );
int retval = 0;
if ( !(methods & TELLSTICK_TURNOFF) ) {
retval = TELLSTICK_ERROR_METHOD_NOT_SUPPORTED;
} else {
retval = dev->turnOff();
}
delete(dev);
return retval;
}
else{
return TELLSTICK_ERROR_DEVICE_NOT_FOUND;
}
}
catch(exception e){
handleException(e);
}
return TELLSTICK_ERROR_UNKNOWN;
}
/**
* Sends bell command to devices supporting this.
* Make sure the device supports this by calling devMethods() before any
* call to this function.
* @param intDeviceId The device id to send bell to
*/
int WINAPI devBell(int intDeviceId){
try{
TelldusSettings ts;
Device* dev = ts.getDevice(intDeviceId);
if(dev != NULL){
int methods = dev->methods( ts.getModel( intDeviceId ) );
int retval = 0;
if ( !(methods & TELLSTICK_BELL) ) {
retval = TELLSTICK_ERROR_METHOD_NOT_SUPPORTED;
} else {
retval = dev->bell();
}
delete(dev);
return retval;
}
else{
return TELLSTICK_ERROR_DEVICE_NOT_FOUND;
}
}
catch(exception e){
handleException(e);
}
return TELLSTICK_ERROR_UNKNOWN;
}
/**
* Dims a device.
* Make sure the device supports this by calling devMethods() before any
* call to this function.
* @param intDeviceId The device id to dim
* @param level The level the device should dim to. This value should be 0-255
*/
int WINAPI devDim(int intDeviceId, unsigned char level){
try{
TelldusSettings ts;
Device* dev = ts.getDevice(intDeviceId);
if(dev != NULL){
int methods = dev->methods( ts.getModel( intDeviceId ) );
int retval = 0;
if ( !(methods & TELLSTICK_DIM) ) {
retval = TELLSTICK_ERROR_METHOD_NOT_SUPPORTED;
} else {
if (level == 0) {
retval = dev->turnOff();
} else if (level == 255) {
retval = dev->turnOn();
} else {
retval = dev->dim(level);
}
}
delete(dev);
return retval;
}
else{
return TELLSTICK_ERROR_DEVICE_NOT_FOUND;
}
}
catch(exception e){
handleException(e);
}
return TELLSTICK_ERROR_UNKNOWN;
}
/**
* This function returns the number of devices configured
* @returns an integer of the total number of devices configured
*/
int WINAPI devGetNumberOfDevices(void){
int intReturn = -1;
try{
TelldusSettings ts;
intReturn = ts.getNumberOfDevices();
}
catch(exception e){
intReturn = -1;
handleException(e);
}
return intReturn;
}
/**
* This function returns the unique id of a device with a specific index.
* To get all the id numbers you should loop over all the devices:
* \code
* int intNumberOfDevices = devGetNumberOfDevices();
* for (int i = 0; i < intNumberOfDevices; i++) {
* int id = devGetDeviceId( i );
* // id now contains the id number of the device with index of i
* }
* \endcode
* @param intDeviceIndex The device index to query. The index starts from 0.
* @returns the unique id for the device or -1 if the device is not found.
*/
int WINAPI devGetDeviceId(int intDeviceIndex){
int intReturn = -1;
try{
TelldusSettings ts;
intReturn = ts.getDeviceId(intDeviceIndex);
}
catch(exception e){
intReturn = -1;
handleException(e);
}
return intReturn;
}
/**
* Query a device for it's name.
* @param intDeviceId The unique id of the device to query
* @returns The name of the device or an empty string if the device is not found.
*/
char * WINAPI devGetName(int intDeviceId){
char* strReturn;
try{
TelldusSettings ts;
strReturn = ts.getName(intDeviceId);
#ifdef _WINDOWS
strReturn = (char *)SysAllocStringByteLen (strReturn, lstrlen(strReturn));
#endif
}
catch(exception e){
strReturn = "";
handleException(e);
}
return strReturn;
}
bool WINAPI devSetName(int intDeviceId, const char* strNewName){
bool blnSuccess = false;
try{
TelldusSettings ts;
blnSuccess = ts.setName(intDeviceId, strNewName);
}
catch(exception e){
blnSuccess = false;
handleException(e);
}
return blnSuccess;
}
char* WINAPI devGetVendor(int intDeviceId){
char* strReturn = "";
try{
TelldusSettings ts;
strReturn = ts.getVendor(intDeviceId);
#ifdef _WINDOWS
strReturn = (char *)SysAllocStringByteLen (strReturn, lstrlen(strReturn));
#endif
}
catch(exception e){
strReturn = "";
handleException(e);
}
return strReturn;
}
bool WINAPI devSetVendor(int intDeviceId, const char* strVendor){
bool blnSuccess = false;
try{
TelldusSettings ts;
blnSuccess = ts.setVendor(intDeviceId, strVendor);
}
catch(exception e){
blnSuccess = false;
handleException(e);
}
return blnSuccess;
}
char* WINAPI devGetModel(int intDeviceId){
char* strReturn = "";
try{
TelldusSettings ts;
strReturn = ts.getModel(intDeviceId);
#ifdef _WINDOWS
strReturn = (char *)SysAllocStringByteLen (strReturn, lstrlen(strReturn));
#endif
}
catch(exception e){
strReturn = "";
handleException(e);
}
return strReturn;
}
bool WINAPI devSetModel(int intDeviceId, const char* strNewModel){
bool blnSuccess = false;
try{
TelldusSettings ts;
blnSuccess = ts.setModel(intDeviceId, strNewModel);
}
catch(exception e){
blnSuccess = false;
handleException(e);
}
return blnSuccess;
}
bool WINAPI devSetArgument(int intDeviceId, const char *strName, const char *strValue){
try{
TelldusSettings ts;
return ts.setArgument(intDeviceId, strName, strValue);
}
catch(exception e){
handleException(e);
}
return false;
}
const char * WINAPI devGetArgument(int intDeviceId, const char *strName, const char *defaultValue){
char *strReturn = "";
try{
TelldusSettings ts;
strReturn = ts.getArgument(intDeviceId, strName);
if (strReturn == NULL) {
return defaultValue;
}
#ifdef _WINDOWS
strReturn = (char *)SysAllocStringByteLen (strReturn, lstrlen(strReturn));
#endif
}
catch(exception e){
handleException(e);
}
return strReturn;
}
int WINAPI devAddDevice(){
int intNewDeviceId = -1;
try{
TelldusSettings ts;
intNewDeviceId = ts.addDevice();
}
catch(exception e){
intNewDeviceId = -1;
handleException(e);
}
return intNewDeviceId;
}
bool WINAPI devRemoveDevice(int intDeviceId){
bool blnSuccess = false;
try{
TelldusSettings ts;
blnSuccess = ts.removeDevice(intDeviceId);
}
catch(exception e){
blnSuccess = false;
handleException(e);
}
return blnSuccess;
}
/**
* Query a device for which methods it supports.
* @param id The device id to query
* @returns The method-flags OR'ed into an integer.
* @sa TELLSTICK_TURNON
* @sa TELLSTICK_TURNOFF
* @sa TELLSTICK_BELL
* @sa TELLSTICK_TOGGLE
* @sa TELLSTICK_DIM
*/
int WINAPI devMethods(int id){
int intMethods = 0;
try{
TelldusSettings ts;
char* strModel = ts.getModel(id);
Device* dev = ts.getDevice(id);
if (dev != NULL) {
intMethods = dev->methods(strModel);
}
}
catch(exception e){
intMethods = 0;
handleException(e);
}
return intMethods;
}
/**
* Get a human readable string from an error code returned
* from a function in telldus-core.
* @param intErrorNo The error code to translate.
* @returns a string ready to show to the user.
* @sa TELLSTICK_SUCCESS
* @sa TELLSTICK_ERROR_NOT_FOUND
* @sa TELLSTICK_ERROR_PERMISSION_DENIED
* @sa TELLSTICK_ERROR_DEVICE_NOT_FOUND
* @sa TELLSTICK_ERROR_METHOD_NOT_SUPPORTED
* @sa TELLSTICK_ERROR_UNKNOWN
*/
char * WINAPI devGetErrorString(int intErrorNo) {
const int numResponses = 5;
const char *responses[numResponses] = {
"Success",
"TellStick not found",
"Permission denied",
"Device not found",
"The method you tried to use is not supported by the device"
};
char *strReturn;
intErrorNo = abs(intErrorNo); //We don't use negative values here.
if (intErrorNo >= numResponses) {
strReturn = "Unknown error";
} else {
// Copy the error string to strReturn
strReturn = (char *)malloc( sizeof(char) * strlen(responses[intErrorNo]) );
strcpy( strReturn, responses[intErrorNo] );
}
#ifdef _WINDOWS
strReturn = (char *)SysAllocStringByteLen (strReturn, lstrlen(strReturn));
#endif
return strReturn;
}
//********
//* Error management, set strLogName to "" to turn off
//*
void handleException(exception e){
char* strLogName = "errorlog.txt";
//char* strLogName = "";
if(strlen(strLogName) > 0){
ofstream errorfile(strLogName, ios::app);
if(errorfile){
errorfile << e.what() << endl;
errorfile.close();
}
}
}
/*\@}*/