462505ff62
Trying to keep platform dependency on the headers and clean the main code a little bit.
218 lines
6.5 KiB
C
218 lines
6.5 KiB
C
#ifndef UPNP_TV_CTRLPT_H
|
|
#define UPNP_TV_CTRLPT_H
|
|
|
|
/**************************************************************************
|
|
*
|
|
* Copyright (c) 2000-2003 Intel Corporation
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
*
|
|
* - Redistributions of source code must retain the above copyright notice,
|
|
* this list of conditions and the following disclaimer.
|
|
* - Redistributions in binary form must reproduce the above copyright notice,
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
* and/or other materials provided with the distribution.
|
|
* - Neither name of Intel Corporation nor the names of its contributors
|
|
* may be used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL OR
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
|
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
**************************************************************************/
|
|
|
|
/*!
|
|
* \file
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "sample_util.h"
|
|
|
|
#include "ithread.h"
|
|
#include "upnp.h"
|
|
#include "UpnpString.h"
|
|
#include "upnptools.h"
|
|
#include "UpnpUniStd.h" /* for close() */
|
|
|
|
#include <signal.h>
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#define TV_SERVICE_SERVCOUNT 2
|
|
#define TV_SERVICE_CONTROL 0
|
|
#define TV_SERVICE_PICTURE 1
|
|
|
|
#define TV_CONTROL_VARCOUNT 3
|
|
#define TV_CONTROL_POWER 0
|
|
#define TV_CONTROL_CHANNEL 1
|
|
#define TV_CONTROL_VOLUME 2
|
|
|
|
#define TV_PICTURE_VARCOUNT 4
|
|
#define TV_PICTURE_COLOR 0
|
|
#define TV_PICTURE_TINT 1
|
|
#define TV_PICTURE_CONTRAST 2
|
|
#define TV_PICTURE_BRIGHTNESS 3
|
|
|
|
#define TV_MAX_VAL_LEN 5
|
|
|
|
#define TV_SUCCESS 0
|
|
#define TV_ERROR (-1)
|
|
#define TV_WARNING 1
|
|
|
|
/* This should be the maximum VARCOUNT from above */
|
|
#define TV_MAXVARS TV_PICTURE_VARCOUNT
|
|
|
|
extern const char *TvServiceName[];
|
|
extern const char *TvVarName[TV_SERVICE_SERVCOUNT][TV_MAXVARS];
|
|
extern char TvVarCount[];
|
|
|
|
struct tv_service {
|
|
char ServiceId[NAME_SIZE];
|
|
char ServiceType[NAME_SIZE];
|
|
char *VariableStrVal[TV_MAXVARS];
|
|
char EventURL[NAME_SIZE];
|
|
char ControlURL[NAME_SIZE];
|
|
char SID[NAME_SIZE];
|
|
};
|
|
|
|
extern struct TvDeviceNode *GlobalDeviceList;
|
|
|
|
struct TvDevice {
|
|
char UDN[250];
|
|
char DescDocURL[250];
|
|
char FriendlyName[250];
|
|
char PresURL[250];
|
|
int AdvrTimeOut;
|
|
struct tv_service TvService[TV_SERVICE_SERVCOUNT];
|
|
};
|
|
|
|
struct TvDeviceNode {
|
|
struct TvDevice device;
|
|
struct TvDeviceNode *next;
|
|
};
|
|
|
|
extern ithread_mutex_t DeviceListMutex;
|
|
|
|
extern UpnpClient_Handle ctrlpt_handle;
|
|
|
|
void TvCtrlPointPrintHelp(void);
|
|
int TvCtrlPointDeleteNode(struct TvDeviceNode *);
|
|
int TvCtrlPointRemoveDevice(const char *);
|
|
int TvCtrlPointRemoveAll(void);
|
|
int TvCtrlPointRefresh(void);
|
|
|
|
int TvCtrlPointSendAction(int, int, const char *, const char **, char **, int);
|
|
int TvCtrlPointSendActionNumericArg(int devnum, int service, const char *actionName, const char *paramName, int paramValue);
|
|
int TvCtrlPointSendPowerOn(int devnum);
|
|
int TvCtrlPointSendPowerOff(int devnum);
|
|
int TvCtrlPointSendSetChannel(int, int);
|
|
int TvCtrlPointSendSetVolume(int, int);
|
|
int TvCtrlPointSendSetColor(int, int);
|
|
int TvCtrlPointSendSetTint(int, int);
|
|
int TvCtrlPointSendSetContrast(int, int);
|
|
int TvCtrlPointSendSetBrightness(int, int);
|
|
|
|
int TvCtrlPointGetVar(int, int, const char *);
|
|
int TvCtrlPointGetPower(int devnum);
|
|
int TvCtrlPointGetChannel(int);
|
|
int TvCtrlPointGetVolume(int);
|
|
int TvCtrlPointGetColor(int);
|
|
int TvCtrlPointGetTint(int);
|
|
int TvCtrlPointGetContrast(int);
|
|
int TvCtrlPointGetBrightness(int);
|
|
|
|
int TvCtrlPointGetDevice(int, struct TvDeviceNode **);
|
|
int TvCtrlPointPrintList(void);
|
|
int TvCtrlPointPrintDevice(int);
|
|
void TvCtrlPointAddDevice(IXML_Document *, const char *, int);
|
|
void TvCtrlPointHandleGetVar(const char *, const char *, const DOMString);
|
|
|
|
/*!
|
|
* \brief Update a Tv state table. Called when an event is received.
|
|
*
|
|
* Note: this function is NOT thread save. It must be called from another
|
|
* function that has locked the global device list.
|
|
**/
|
|
void TvStateUpdate(
|
|
/*! [in] The UDN of the parent device. */
|
|
char *UDN,
|
|
/*! [in] The service state table to update. */
|
|
int Service,
|
|
/*! [out] DOM document representing the XML received with the event. */
|
|
IXML_Document *ChangedVariables,
|
|
/*! [out] pointer to the state table for the Tv service to update. */
|
|
char **State);
|
|
|
|
void TvCtrlPointHandleEvent(const char *, int, IXML_Document *);
|
|
void TvCtrlPointHandleSubscribeUpdate(const char *, const Upnp_SID, int);
|
|
int TvCtrlPointCallbackEventHandler(Upnp_EventType, void *, void *);
|
|
|
|
/*!
|
|
* \brief Checks the advertisement each device in the global device list.
|
|
*
|
|
* If an advertisement expires, the device is removed from the list.
|
|
*
|
|
* If an advertisement is about to expire, a search request is sent for that
|
|
* device.
|
|
*/
|
|
void TvCtrlPointVerifyTimeouts(
|
|
/*! [in] The increment to subtract from the timeouts each time the
|
|
* function is called. */
|
|
int incr);
|
|
|
|
void TvCtrlPointPrintCommands(void);
|
|
void* TvCtrlPointCommandLoop(void *);
|
|
int TvCtrlPointStart(print_string printFunctionPtr, state_update updateFunctionPtr, int combo);
|
|
int TvCtrlPointStop(void);
|
|
int TvCtrlPointProcessCommand(char *cmdline);
|
|
|
|
/*!
|
|
* \brief Print help info for this application.
|
|
*/
|
|
void TvCtrlPointPrintShortHelp(void);
|
|
|
|
/*!
|
|
* \brief Print long help info for this application.
|
|
*/
|
|
void TvCtrlPointPrintLongHelp(void);
|
|
|
|
/*!
|
|
* \briefPrint the list of valid command line commands to the user
|
|
*/
|
|
void TvCtrlPointPrintCommands(void);
|
|
|
|
/*!
|
|
* \brief Function that receives commands from the user at the command prompt
|
|
* during the lifetime of the device, and calls the appropriate
|
|
* functions for those commands.
|
|
*/
|
|
void *TvCtrlPointCommandLoop(void *args);
|
|
|
|
/*!
|
|
* \brief
|
|
*/
|
|
int TvCtrlPointProcessCommand(char *cmdline);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif /* UPNP_TV_CTRLPT_H */
|
|
|