1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
/*****************************************************************
* gmerlin - a general purpose multimedia framework and applications
*
* Copyright (c) 2001 - 2024 Members of the Gmerlin project
* http://github.com/bplaum
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* *****************************************************************/
#include <config.h>
#include <string.h>
#include <pthread.h>
#include <unistd.h>
#include <errno.h>
#include <uuid/uuid.h>
#include <gavl/gavlsocket.h>
#include <gmerlin/parameter.h>
#include <gmerlin/bgmsg.h>
#include <gmerlin/state.h>
#include <gmerlin/translation.h>
#include <gmerlin/log.h>
#define LOG_DOMAIN "msgconn"
#include <msgconn.h>
/* */
void bg_msg_add_function_tag(gavl_msg_t * msg)
{
char uuid_str[37];
uuid_t uuid;
if(gavl_dictionary_get(&msg->header, BG_FUNCTION_TAG))
return;
uuid_generate(uuid);
uuid_unparse(uuid, uuid_str);
gavl_dictionary_set_string(&msg->header, BG_FUNCTION_TAG, uuid_str);
}
gavl_dictionary_t *
bg_function_push(gavl_array_t * arr, gavl_msg_t * msg)
{
gavl_value_t val;
gavl_dictionary_t * ret;
gavl_dictionary_t * dict;
bg_msg_add_function_tag(msg);
gavl_value_init(&val);
dict = gavl_value_set_dictionary(&val);
gavl_dictionary_set_string(dict, BG_FUNCTION_TAG, gavl_dictionary_get_string(&msg->header, BG_FUNCTION_TAG) );
ret = gavl_dictionary_get_dictionary_create(dict, "data");
gavl_array_splice_val_nocopy(arr, -1, 0, &val);
return ret;
}
gavl_dictionary_t *
bg_function_get(gavl_array_t * arr, const gavl_msg_t * msg, int * idxp)
{
int i;
gavl_dictionary_t * func;
const char * ft;
const char * functag = gavl_dictionary_get_string(&msg->header, BG_FUNCTION_TAG);
if(!functag)
return NULL;
for(i = 0; i < arr->num_entries; i++)
{
if((func = gavl_value_get_dictionary_nc(&arr->entries[i])))
{
if(!(ft = gavl_dictionary_get_string(func, BG_FUNCTION_TAG)) ||
strcmp(ft, functag))
continue;
if(idxp)
*idxp = i;
return gavl_dictionary_get_dictionary_nc(func, "data");
}
}
if(idxp)
*idxp = -1;
return NULL;
}
|