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 108
|
/*****************************************************************
* 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 <gmerlin/resourcemanager.h>
#include <gmerlin/utils.h>
#include <gmerlin/pluginregistry.h>
static int handle_msg(void * data, gavl_msg_t * msg)
{
switch(msg->NS)
{
case GAVL_MSG_NS_GENERIC:
switch(msg->ID)
{
case GAVL_MSG_RESOURCE_ADDED:
{
const char * id;
gavl_dictionary_t dict;
gavl_dictionary_init(&dict);
id = gavl_dictionary_get_string(&msg->header, GAVL_MSG_CONTEXT_ID);
gavl_msg_get_arg_dictionary_c(msg, 0, &dict);
fprintf(stderr, "** Resource added: %s\n", id);
// fprintf(stderr, "%s\n", gavl_dictionary_get_string(&dict, GAVL_META_URI));
gavl_dictionary_dump(&dict, 2);
fprintf(stderr, "\n");
gavl_dictionary_free(&dict);
}
break;
case GAVL_MSG_RESOURCE_DELETED:
{
const char * id;
id = gavl_dictionary_get_string(&msg->header, GAVL_MSG_CONTEXT_ID);
fprintf(stderr, "** Resource deleted %s\n", id);
}
break;
}
break;
}
return 1;
}
int main(int argc, char ** argv)
{
static gavl_dictionary_t local_res;
bg_controllable_t * ctrl;
bg_msg_sink_t * sink = NULL;
gavl_time_t t = GAVL_TIME_SCALE/10;
gavl_time_t t1 = 5*GAVL_TIME_SCALE;
gavl_dictionary_init(&local_res);
gavl_dictionary_set_string(&local_res, GAVL_META_LABEL, "Test resource");
gavl_dictionary_set_string(&local_res, GAVL_META_URI, "gmerlin-renderer://192.168.2.140:5405/some-cool-stuff");
gavl_dictionary_set_string(&local_res, GAVL_META_CLASS, GAVL_META_CLASS_BACKEND_RENDERER);
bg_handle_sigint();
bg_plugins_init();
sink = bg_msg_sink_create(handle_msg, NULL, 1);
/* This creates the resource manager */
ctrl = bg_resourcemanager_get_controllable();
bg_msg_hub_connect_sink(ctrl->evt_hub, sink);
bg_resourcemanager_publish(gavl_dictionary_get_string(&local_res, GAVL_META_URI), &local_res);
while(1)
{
gavl_time_delay(&t);
if(bg_got_sigint())
break;
}
bg_resourcemanager_unpublish(gavl_dictionary_get_string(&local_res, GAVL_META_URI));
gavl_time_delay(&t1);
bg_msg_hub_disconnect_sink(ctrl->evt_hub, sink);
bg_msg_sink_destroy(sink);
}
|