libcm/cmDevCfg.h

142 lines
4.7 KiB
C
Raw Normal View History

2013-03-25 22:59:49 +00:00
#ifndef cmDevCfg_h
#define cmDevCfg_h
#ifdef __cplusplus
extern "C" {
#endif
/*
IMPLEMENTATION:
1) A 'cfg' record is a device reference with a 'cfg label'.
There are three kinds of cfg records MIDI,Audio,Net.
The device record identifies a particlar device
end-point or pre-configured setup. The 'cfg label'
associated with this setup allows an application
to refer to the setup by name. This releives the
application from having to handle the details of
forming, storing, and maintaining device configurations.
2) A 'map' record is a record which links an
application and reference id to a cfg record.
The goal of this is to allow applications to refer to
pre-configured device setups by name and then to
associate a numeric id with this setup.
The application can then send data to the device using
only the numeric id. Likewise data arriving from the
device to the application is tagged with
id of the of the device.
NOTES:
1) usrAppId's must be unique among all app.s'.
2) usrDevId's must be unique among all usrDevId's for particular app.
In other words the same 'usrDevId' may not be used by devices
of different types.
3) The usrAppId's and usrDevIds' are used internally as index
locations. They should therefore be low numbers and
densely packed.
*/
struct cmAudioSysArgs_str;
2013-03-25 22:59:49 +00:00
enum
{
kOkDcRC = cmOkRC,
cmLabelNotFoundDcRC,
cmIdNotFoundDcRC,
kInvalidDevArgDcRC,
kEmptyLabelDcRC,
kLocNotFoundDcRC
2013-03-25 22:59:49 +00:00
};
typedef enum
{
kInvalidDcmTId,
kMidiDcmTId,
kAudioDcmTId,
kNetDcmTId
} cmTypeDcmId_t;
typedef cmRC_t cmDcRC_t;
typedef cmHandle_t cmDevCfgH_t;
extern cmDevCfgH_t cmDevCfgNullHandle;
cmDcRC_t cmDevCfgMgrAlloc( cmCtx_t* c, cmDevCfgH_t* hp );
2013-03-25 22:59:49 +00:00
cmDcRC_t cmDevCfgMgrFree( cmDevCfgH_t* hp );
cmDcRC_t cmDevCfgIsValid( cmDevCfgH_t h );
// Return the count of cfg records for the given type.
unsigned cmDevCfgCount( cmDevCfgH_t h, cmTypeDcmId_t typeId );
// Return the label for a each cfg record of a given type.
const cmChar_t* cmDevCfgLabel( cmDevCfgH_t h, cmTypeDcmId_t typeId, unsigned index );
// Return the cfg index assoc'd with a given label.
unsigned cmDevCfgLabelToIndex( cmDevCfgH_t h, cmTypeDcmId_t typeId, const cmChar_t* label );
2013-03-25 22:59:49 +00:00
// Delete a cfg record created by cmDevCfgNameMidiPort(), cmDevCfgNameAudioPort(), etc.
cmDcRC_t cmDevCfgDeleteCfg( cmDevCfgH_t h, cmTypeDcmId_t typeId, const cmChar_t* dcLabelStr );
// Create a map record to associate a app/dev id with a cfg. record.
// Note that multiple app/dev id's may be assoc'd with the same cfg. record.
cmDcRC_t cmDevCfgCreateMap( cmDevCfgH_t h, cmTypeDcmId_t typeId, const cmChar_t* dcLabelStr, unsigned usrAppId, unsigned usrDevId );
// Delete a map record created by cmDevCfgCreateMap().
cmDcRC_t cmDevCfgDeleteMap( cmDevCfgH_t h, cmTypeDcmId_t typeId, unsigned usrAppId, unsigned usrDevId );
2013-03-25 22:59:49 +00:00
// Create a MIDI cfg. record.
cmDcRC_t cmDevCfgNameMidiPort(
cmDevCfgH_t h,
const cmChar_t* dcLabelStr,
const cmChar_t* devNameStr,
const cmChar_t* portNameStr,
bool inputFl );
cmDcRC_t cmDevCfgMidiDevIdx( cmDevCfgH_t h, unsigned usrAppId, unsigned usrDevId, unsigned* midiDevIdxRef, unsigned* midiPortIdxRef );
cmDcRC_t cmDevCfgNameAudioPort(
cmDevCfgH_t h,
const cmChar_t* dcLabelStr,
const cmChar_t* inDevNameStr,
const cmChar_t* outDevNameStr,
bool syncInputFl,
unsigned msgQueueByteCnt,
unsigned devFramesPerCycle,
unsigned dspFramesPerCycle,
unsigned audioBufCnt,
double srate );
const struct cmAudioSysArgs_str* cmDevCfgAudioSysArgs( cmDevCfgH_t h, unsigned usrAppId, unsigned usrDevId );
cmDcRC_t cmDevCfgNetPort(
cmDevCfgH_t h,
const cmChar_t* dcLabelStr,
const cmChar_t* sockAddr,
unsigned portNumber );
unsigned cmDevCfgNetNodeId( cmDevCfgH_t h, unsigned usrAppId, unsigned usrDevId );
// Location Management Functions:
2013-03-25 22:59:49 +00:00
// Store and recall groups cfg records.
unsigned cmDevCfgLocCount( cmDevCfgH_t h );
const cmChar_t* cmDevCfgLocLabel( cmDevCfgH_t h, unsigned locIdx );
cmDcRC_t cmDevCfgLocStore( cmDevCfgH_t h, const cmChar_t* locLabelStr );
cmDcRC_t cmDevCfgLocRecall( cmDevCfgH_t h, const cmChar_t* locLabelStr );
cmDcRC_t cmDevCfgLocDelete( cmDevCfgH_t h, const cmChar_t* locLabelStr );
// Return the current location index
unsigned cmDevCfgLocIndex( cmDevCfgH_t h );
2013-03-25 22:59:49 +00:00
cmDcRC_t cmDevCfgWrite( cmDevCfgH_t h );
#ifdef __cplusplus
}
#endif
#endif