GNUnet 0.22.2
microphone.c File Reference

API to access an audio microphone; provides access to hardware microphones; actually just wraps the gnunet-helper-audio-record. More...

#include "platform.h"
#include "gnunet_microphone_lib.h"
#include "conversation.h"
Include dependency graph for microphone.c:

Go to the source code of this file.

Data Structures

struct  Microphone
 Internal data structures for the microphone. More...
 

Functions

static int process_record_messages (void *cls, const struct GNUNET_MessageHeader *msg)
 Function to process the audio from the record helper. More...
 
static int enable (void *cls, GNUNET_MICROPHONE_RecordedDataCallback rdc, void *rdc_cls)
 Enable a microphone. More...
 
static void disable (void *cls)
 Function that disables a microphone. More...
 
static void destroy (void *cls)
 Function to destroy a microphone. More...
 
struct GNUNET_MICROPHONE_HandleGNUNET_MICROPHONE_create_from_hardware (const struct GNUNET_CONFIGURATION_Handle *cfg)
 Create a microphone that corresponds to the microphone hardware of our system. More...
 
void GNUNET_MICROPHONE_destroy (struct GNUNET_MICROPHONE_Handle *microphone)
 Destroy a microphone. More...
 

Detailed Description

API to access an audio microphone; provides access to hardware microphones; actually just wraps the gnunet-helper-audio-record.

Author
Simon Dieterle
Andreas Fuchs
Christian Grothoff

Definition in file microphone.c.

Function Documentation

◆ process_record_messages()

static int process_record_messages ( void *  cls,
const struct GNUNET_MessageHeader msg 
)
static

Function to process the audio from the record helper.

Parameters
clsclsoure with our struct Microphone
msgthe message from the helper
Returns
GNUNET_OK on success, GNUNET_NO to stop further processing (no error) GNUNET_SYSERR to stop further processing with error

Definition at line 72 of file microphone.c.

74{
75 struct Microphone *mic = cls;
76 const struct AudioMessage *am;
77
79 {
80 GNUNET_break (0);
81 return GNUNET_SYSERR;
82 }
83 am = (const struct AudioMessage *) msg;
84 mic->rdc (mic->rdc_cls,
85 ntohs (msg->size) - sizeof(struct AudioMessage),
86 &am[1]);
87 return GNUNET_OK;
88}
struct GNUNET_MessageHeader * msg
Definition: 005.c:2
static struct GNUNET_MICROPHONE_Handle * mic
Our microphone.
uint16_t type
The type of the message (GNUNET_MESSAGE_TYPE_XXXX), in big-endian format.
uint16_t size
The length of the struct (in bytes, including the length field itself), in big-endian format.
@ GNUNET_OK
@ GNUNET_SYSERR
#define GNUNET_break(cond)
Use this for internal assertion violations that are not fatal (can be handled) but should not occur.
#define GNUNET_MESSAGE_TYPE_CONVERSATION_AUDIO
Message to transmit the audio between helper and speaker/microphone library.
Message to transmit the audio (between client and helpers).
Definition: conversation.h:59
Internal data structures for the microphone.
Definition: microphone.c:39

References GNUNET_break, GNUNET_MESSAGE_TYPE_CONVERSATION_AUDIO, GNUNET_OK, GNUNET_SYSERR, mic, msg, GNUNET_MessageHeader::size, and GNUNET_MessageHeader::type.

Referenced by enable().

Here is the caller graph for this function:

◆ enable()

static int enable ( void *  cls,
GNUNET_MICROPHONE_RecordedDataCallback  rdc,
void *  rdc_cls 
)
static

Enable a microphone.

Parameters
clsclsoure with our struct Microphone
rdcfunction to call with recorded data
rdc_clsclosure for dc

Definition at line 99 of file microphone.c.

102{
103 struct Microphone *mic = cls;
104 static char *const record_helper_argv[] = {
105 (char*) "gnunet-helper-audio-record",
106 NULL
107 };
108
109 mic->rdc = rdc;
110 mic->rdc_cls = rdc_cls;
112 GNUNET_NO,
113 "gnunet-helper-audio-record",
114 record_helper_argv,
116 NULL, mic);
117 if (NULL == mic->record_helper)
118 {
120 _ ("Could not start record audio helper\n"));
121 return GNUNET_SYSERR;
122 }
123 return GNUNET_OK;
124}
struct GNUNET_HELPER_Handle * GNUNET_HELPER_start(const struct GNUNET_OS_ProjectData *pd, int with_control_pipe, const char *binary_name, char *const binary_argv[], GNUNET_MessageTokenizerCallback cb, GNUNET_HELPER_ExceptionCallback exp_cb, void *cb_cls)
Starts a helper and begins reading from it.
Definition: helper.c:460
#define GNUNET_log(kind,...)
@ GNUNET_NO
@ GNUNET_ERROR_TYPE_ERROR
const struct GNUNET_OS_ProjectData * GNUNET_OS_project_data_gnunet(void)
Return default project data used by 'libgnunetutil' for GNUnet.
static int process_record_messages(void *cls, const struct GNUNET_MessageHeader *msg)
Function to process the audio from the record helper.
Definition: microphone.c:72
#define _(String)
GNU gettext support macro.
Definition: platform.h:178
void * rdc_cls
Closure for rdc.
Definition: microphone.c:58
GNUNET_MICROPHONE_RecordedDataCallback rdc
Function to call with audio data (if we are enabled).
Definition: microphone.c:53

References _, GNUNET_ERROR_TYPE_ERROR, GNUNET_HELPER_start(), GNUNET_log, GNUNET_NO, GNUNET_OK, GNUNET_OS_project_data_gnunet(), GNUNET_SYSERR, mic, process_record_messages(), Microphone::rdc, and Microphone::rdc_cls.

Referenced by GNUNET_MICROPHONE_create_from_hardware().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ disable()

static void disable ( void *  cls)
static

Function that disables a microphone.

Parameters
clsclsoure

Definition at line 133 of file microphone.c.

134{
135 struct Microphone *mic = cls;
136
137 if (NULL == mic->record_helper)
138 {
139 GNUNET_break (0);
140 return;
141 }
143 GNUNET_HELPER_kill (mic->record_helper, GNUNET_NO));
144 GNUNET_HELPER_destroy (mic->record_helper);
145 mic->record_helper = NULL;
146}
enum GNUNET_GenericReturnValue GNUNET_HELPER_kill(struct GNUNET_HELPER_Handle *h, int soft_kill)
Sends termination signal to the helper process.
Definition: helper.c:166
void GNUNET_HELPER_destroy(struct GNUNET_HELPER_Handle *h)
Free's the resources occupied by the helper handle.
Definition: helper.c:501

References GNUNET_break, GNUNET_HELPER_destroy(), GNUNET_HELPER_kill(), GNUNET_NO, GNUNET_OK, and mic.

Referenced by destroy(), and GNUNET_MICROPHONE_create_from_hardware().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ destroy()

static void destroy ( void *  cls)
static

Function to destroy a microphone.

Parameters
clsclsoure

Definition at line 155 of file microphone.c.

156{
157 struct Microphone *mic = cls;
158
159 if (NULL != mic->record_helper)
160 disable (mic);
161}
static void disable(void *cls)
Function that disables a microphone.
Definition: microphone.c:133

References disable(), and mic.

Referenced by GNUNET_MICROPHONE_create_from_hardware(), and GNUNET_MQ_queue_for_callbacks().

Here is the call graph for this function:
Here is the caller graph for this function: