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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091
|
/*****************************************************************
* 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/>.
* *****************************************************************/
/*
* This is the replacement for the old xml-based media tree. It's used for
* all albums, which are user editable: Favorites and
* "Library" (a completely user defined area)
*
* The implementation is straightforward:
*
* Every item is assigned a GUID. The filename is the same as the GUID
* The database ID will be like:
*
* /favorites/c918035c-1710-487f-a871-560fb63d0321
*
* Or:
* /library/c918035c-1710-487f-a871-560fb63d0321/1a12a147-bae7-4dcc-a362-b34eb24f08fd
*
* Containers are represented as directories (name == GUID) which contain
* the files. The container metadata (label, class, child IDs) are in a file called INDEX
* in the directory
*
* Non-container items are regular files are the gavl track elemenents encoded as xml
*
*
*
*/
#include <config.h>
#include <unistd.h>
#include <string.h>
#include <uuid/uuid.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <gmerlin/mdb.h>
#include <gmerlin/utils.h>
#include <gmerlin/bggavl.h>
#include <mdb_private.h>
#include <gavl/metatags.h>
#include <gmerlin/translation.h>
#include <gmerlin/log.h>
#define LOG_DOMAIN "mdb.xml"
#define META_CHILD_IDS "ChildIDs"
/* Maximum number of children to transmit at once (so clients can update) */
#define MAX_CHILDREN 20
typedef struct
{
gavl_dictionary_t * favorites;
gavl_dictionary_t * library;
const char * favorites_id;
const char * library_id;
} xml_t;
static void save_dir_index(bg_mdb_backend_t * be, const char * dir, gavl_dictionary_t * d);
static gavl_dictionary_t * browse_object(bg_mdb_backend_t * b, const char * id);
static const char * path_to_id(bg_mdb_backend_t * be, const char * path)
{
return path + (strlen(be->db->path) + 4 /* /xml */);
}
static void set_editable(const char * id, gavl_dictionary_t * dict)
{
const char * klass;
gavl_dictionary_t * m;
if(!(m = gavl_track_get_metadata_nc(dict)) ||
!(klass = gavl_dictionary_get_string(m, GAVL_META_CLASS)) ||
!gavl_string_starts_with(klass, "container"))
return;
bg_mdb_set_editable(dict);
if(!strcmp(id, bg_mdb_get_klass_id(GAVL_META_CLASS_ROOT_FAVORITES)))
{
bg_mdb_add_can_add(dict, "item.audio*");
bg_mdb_add_can_add(dict, "item.video*");
bg_mdb_add_can_add(dict, "item.image*");
bg_mdb_add_can_add(dict, GAVL_META_CLASS_LOCATION);
bg_mdb_add_can_add(dict, GAVL_META_CLASS_BROADCAST);
}
else if(!strcmp(klass, GAVL_META_CLASS_CONTAINER_TV))
{
bg_mdb_add_can_add(dict, GAVL_META_CLASS_VIDEO_BROADCAST);
bg_mdb_add_can_add(dict, GAVL_META_CLASS_LOCATION);
bg_mdb_add_can_add(dict, GAVL_META_CLASS_BROADCAST);
}
else if(!strcmp(klass, GAVL_META_CLASS_CONTAINER_RADIO))
{
bg_mdb_add_can_add(dict, GAVL_META_CLASS_AUDIO_BROADCAST);
bg_mdb_add_can_add(dict, GAVL_META_CLASS_LOCATION);
bg_mdb_add_can_add(dict, GAVL_META_CLASS_BROADCAST);
}
else if(!strcmp(klass, GAVL_META_CLASS_PLAYLIST))
{
bg_mdb_add_can_add(dict, GAVL_META_CLASS_SONG);
}
}
static void item_to_storage(bg_mdb_backend_t * b, gavl_dictionary_t * dict)
{
// const char * klass;
gavl_dictionary_t * m;
gavl_dictionary_t * img;
int idx = 0;
gavl_value_t * val;
gavl_dictionary_get_dictionary_create(dict, GAVL_META_METADATA);
bg_mdb_delete_http_uris(dict);
bg_mdb_clear_thumbnail_uris(dict);
bg_mdb_clear_editable(dict);
m = gavl_track_get_metadata_nc(dict);
gavl_dictionary_set(m, GAVL_META_NEXT_ID, NULL);
gavl_dictionary_set(m, GAVL_META_PREVIOUS_ID, NULL);
/* Remove embedded images */
while((val = gavl_dictionary_get_item_nc(dict, GAVL_META_COVER_EMBEDDED, idx)))
{
if((img = gavl_value_get_dictionary_nc(val)))
gavl_dictionary_set(img, GAVL_META_IMAGE_BUFFER, NULL);
idx++;
}
// gavl_dictionary_set(m, GAVL_META_NUM_CHILDREN, NULL);
// gavl_dictionary_set(m, GAVL_META_NUM_ITEM_CHILDREN, NULL);
// gavl_dictionary_set(m, GAVL_META_NUM_CONTAINER_CHILDREN, NULL);
}
static void item_from_storage(bg_mdb_backend_t * b,
gavl_dictionary_t * dict, const char * parent_id)
{
const char * klass;
char * id;
gavl_dictionary_t * m;
/* Might be left from earlier versions */
bg_mdb_clear_editable(dict);
if(!(m = gavl_track_get_metadata_nc(dict)))
return;
if((klass = gavl_dictionary_get_string(m, GAVL_META_CLASS)))
{
/* Set label for song */
if(!strcmp(klass, GAVL_META_CLASS_SONG))
{
char * artist = gavl_metadata_join_arr(m, GAVL_META_ARTIST, ", ");
gavl_dictionary_set_string_nocopy(m, GAVL_META_LABEL,
gavl_sprintf("%s: %s", artist, gavl_dictionary_get_string(m, GAVL_META_TITLE)));
free(artist);
}
}
if(!strcmp(parent_id, "/"))
id = gavl_sprintf("%s%s", parent_id, gavl_dictionary_get_string(m, GAVL_META_ID));
else
id = gavl_sprintf("%s/%s", parent_id, gavl_dictionary_get_string(m, GAVL_META_ID));
set_editable(id, dict);
gavl_dictionary_set_string_nocopy(m, GAVL_META_ID, id);
bg_mdb_add_http_uris(b->db, dict);
// fprintf(stderr, "Added http uris\n");
// gavl_dictionary_dump(dict, 2);
}
static gavl_dictionary_t * load_dir_index(bg_mdb_backend_t * be, const char * dir)
{
gavl_dictionary_t * ret;
char * filename = gavl_sprintf("%s/INDEX", dir);
ret = gavl_dictionary_create();
if(access(filename, R_OK) || !bg_dictionary_load_xml(ret, filename, "INDEX"))
{
gavl_dictionary_destroy(ret);
ret = NULL;
}
if(ret)
{
const char * id;
char * parent_id;
id = path_to_id(be, dir);
parent_id = bg_mdb_get_parent_id(id);
id += strlen(parent_id);
if(*id == '/')
id++;
gavl_track_set_id(ret, id);
item_from_storage(be, ret, parent_id);
/* Update durations automatically */
#if 0
if(!gavl_dictionary_get(metadata, GAVL_META_APPROX_DURATION))
{
// update_container_duration(ret, dir);
save_dir_index(be, dir, ret);
}
#endif
free(parent_id);
}
free(filename);
return ret;
}
static void arr_get_num_children(const gavl_array_t * arr, const char * directory,
int * containers, int * items, gavl_time_t * duration)
{
int i;
char * tmp_string;
struct stat st;
gavl_time_t track_duration;
*duration = 0;
for(i = 0; i < arr->num_entries; i++)
{
tmp_string = gavl_sprintf("%s/%s", directory, gavl_string_array_get(arr, i));
if(!stat(tmp_string, &st))
{
if(S_ISDIR(st.st_mode))
{
(*containers)++;
*duration = GAVL_TIME_UNDEFINED;
}
else if(S_ISREG(st.st_mode))
{
(*items)++;
if(*duration != GAVL_TIME_UNDEFINED)
{
gavl_dictionary_t track;
const gavl_dictionary_t * metadata;
gavl_dictionary_init(&track);
if(!bg_dictionary_load_xml(&track, tmp_string, "TRACK"))
{
gavl_log(GAVL_LOG_ERROR, LOG_DOMAIN, "Couldn't load %s", tmp_string);
}
metadata = gavl_dictionary_get_dictionary_create(&track, GAVL_META_METADATA);
track_duration = GAVL_TIME_UNDEFINED;
if(!gavl_dictionary_get_long(metadata, GAVL_META_APPROX_DURATION, &track_duration) ||
(track_duration == GAVL_TIME_UNDEFINED))
*duration = GAVL_TIME_UNDEFINED;
else
*duration += track_duration;
gavl_dictionary_reset(&track);
}
}
}
free(tmp_string);
}
}
static void get_num_children(const gavl_dictionary_t * dict, const char * directory, int * containers, int * items,
gavl_time_t * duration)
{
const gavl_array_t * arr;
*containers = 0;
*items = 0;
if(!(arr = gavl_dictionary_get_array(dict, META_CHILD_IDS)))
return;
arr_get_num_children(arr, directory, containers, items, duration);
}
static void save_dir_index(bg_mdb_backend_t * be, const char * dir, gavl_dictionary_t * d)
{
char * filename = gavl_sprintf("%s/INDEX", dir);
item_to_storage(be, d);
bg_dictionary_save_xml(d, filename, "INDEX");
free(filename);
}
static char * id_to_path(bg_mdb_backend_t * be, const char * id)
{
return gavl_sprintf("%s/xml%s", be->db->path, id);
}
static int do_add(bg_mdb_backend_t * b,
gavl_dictionary_t * dir_idx,
int idx,
gavl_dictionary_t * add,
const char * parent_id)
{
gavl_array_t * child_ids;
const char * klass;
char * filename;
gavl_dictionary_t * m;
char uuid_str[37];
uuid_t uuid;
char * dir = NULL;
int no_duplicates = 0;
dir = id_to_path(b, parent_id);
if(!strcmp(parent_id, bg_mdb_get_klass_id(GAVL_META_CLASS_ROOT_FAVORITES)))
{
const char * uri;
const gavl_dictionary_t * m;
no_duplicates = 1;
if((m = gavl_track_get_metadata(add)) &&
gavl_metadata_get_src(m, GAVL_META_SRC, 0, NULL, &uri))
{
bg_get_filename_hash(uri, uuid_str);
}
else
{
uuid_generate(uuid);
uuid_unparse(uuid, uuid_str);
}
}
else
{
uuid_generate(uuid);
uuid_unparse(uuid, uuid_str);
}
item_to_storage(b, add);
gavl_track_set_id(add, uuid_str);
child_ids = gavl_dictionary_get_array_nc(dir_idx, META_CHILD_IDS);
m = gavl_track_get_metadata_nc(add);
if(!(klass = gavl_dictionary_get_string(m, GAVL_META_CLASS)) ||
!bg_mdb_can_add(dir_idx, klass))
{
gavl_log(GAVL_LOG_WARNING, LOG_DOMAIN, "Cannot add item, unknown or unsupported media class (%s)",
klass);
return 0;
}
if(no_duplicates && gavl_string_array_indexof(child_ids, uuid_str) >= 0)
{
gavl_log(GAVL_LOG_WARNING, LOG_DOMAIN, "Skipping duplicate entry for %s", parent_id);
return 0;
}
gavl_string_array_insert_at(child_ids, idx, uuid_str);
if(gavl_string_starts_with(klass, "container"))
{
gavl_value_t val;
gavl_dictionary_t * tmp_dict;
char * id;
id = gavl_sprintf("%s/%s", parent_id, uuid_str);
filename = gavl_sprintf("%s/%s", dir, uuid_str);
gavl_ensure_directory(filename, 0);
free(filename);
tmp_dict = gavl_dictionary_create();
gavl_dictionary_copy(tmp_dict, add);
gavl_value_init(&val);
gavl_value_set_array(&val);
gavl_dictionary_set_nocopy(tmp_dict, META_CHILD_IDS, &val);
set_editable(id, tmp_dict);
free(id);
filename = gavl_sprintf("%s/%s/INDEX", dir, uuid_str);
bg_dictionary_save_xml(tmp_dict, filename, "INDEX");
gavl_dictionary_destroy(tmp_dict);
free(filename);
}
else
{
filename = gavl_sprintf("%s/%s", dir, uuid_str);
bg_dictionary_save_xml(add, filename, "TRACK");
free(filename);
}
free(dir);
/* Need to set the correct stuff for BG_MSG_DB_SPLICE_CHILDREN */
item_from_storage(b, add, parent_id);
return 1;
}
static int splice(bg_mdb_backend_t * b, const char * ctx_id, int last, int idx, int del, gavl_array_t * add_arr)
{
int i;
gavl_dictionary_t * dir_idx = NULL;
char * parent_directory = NULL;
int ret = 0;
gavl_value_t val;
gavl_array_t * child_ids;
char * tmp_string;
gavl_msg_t * res;
int idx_res;
gavl_dictionary_t dict;
gavl_dictionary_t * root_dict = NULL ;
xml_t * xml = b->priv;
const char * klass;
int num_added = 0;
int containers = 0;
int items = 0;
gavl_time_t duration;
gavl_dictionary_t * metadata;
gavl_dictionary_t * track;
gavl_dictionary_init(&dict);
if(!ctx_id)
goto fail;
// fprintf(stderr, "splice: %s\n", ctx_id);
parent_directory = id_to_path(b, ctx_id);
if((klass = bg_mdb_get_klass_from_id(ctx_id)))
{
if(!strcmp(klass, GAVL_META_CLASS_ROOT_LIBRARY))
{
root_dict = xml->library;
}
else if(!strcmp(klass, GAVL_META_CLASS_ROOT_FAVORITES))
{
root_dict = xml->favorites;
}
}
if((dir_idx = load_dir_index(b, parent_directory)))
{
child_ids = gavl_dictionary_get_array_nc(dir_idx, META_CHILD_IDS);
}
else
{
gavl_value_init(&val);
dir_idx = gavl_dictionary_create();
gavl_dictionary_get_dictionary_create(dir_idx, GAVL_META_METADATA);
child_ids = gavl_value_set_array(&val);
gavl_dictionary_set_nocopy(dir_idx, META_CHILD_IDS, &val);
}
/* Set Media class */
if(root_dict)
{
// fprintf(stderr, "Root dict:\n");
// gavl_dictionary_dump(root_dict, 2);
gavl_dictionary_merge2(gavl_track_get_metadata_nc(dir_idx),
gavl_track_get_metadata(root_dict));
}
set_editable(ctx_id, dir_idx);
if((idx < 0) || (idx > child_ids->num_entries)) // Append
idx = child_ids->num_entries;
if(del)
{
if(del < 0)
del = child_ids->num_entries - idx;
if(idx + del > child_ids->num_entries)
del = child_ids->num_entries - idx;
}
idx_res = idx;
/* Delete entries, folders are deleted recursively */
if(del > 0)
{
for(i = 0; i < del; i++)
{
tmp_string = gavl_sprintf("%s/%s", parent_directory,
gavl_value_get_string(&child_ids->entries[idx + i]));
bg_remove_file(tmp_string);
free(tmp_string);
}
gavl_array_splice_val(child_ids, idx, del, NULL);
}
for(i = 0; i < add_arr->num_entries; i++)
{
if((track = gavl_value_get_dictionary_nc(&add_arr->entries[i])))
{
if(do_add(b, dir_idx, idx, track, ctx_id))
{
idx++;
num_added++;
}
}
}
/* Send splice event */
/* TODO: Don't send this when an error occurred */
if(!num_added && !del)
goto fail;
res = bg_msg_sink_get(b->ctrl.evt_sink);
gavl_msg_set_id_ns(res, BG_MSG_DB_SPLICE_CHILDREN, BG_MSG_NS_DB);
gavl_dictionary_set_string(&res->header, GAVL_MSG_CONTEXT_ID, ctx_id);
gavl_msg_set_last(res, 1);
gavl_msg_set_arg_int(res, 0, idx_res); // idx
gavl_msg_set_arg_int(res, 1, del); // del
if(!num_added)
gavl_msg_set_arg(res, 2, NULL);
else
gavl_msg_set_arg_array(res, 2, add_arr);
bg_msg_sink_put(b->ctrl.evt_sink);
/* Send update event for parent */
res = bg_msg_sink_get(b->ctrl.evt_sink);
gavl_msg_set_id_ns(res, BG_MSG_DB_OBJECT_CHANGED, BG_MSG_NS_DB);
gavl_dictionary_set_string(&res->header, GAVL_MSG_CONTEXT_ID, ctx_id);
metadata = gavl_dictionary_get_dictionary_create(&dict, GAVL_META_METADATA);
duration = GAVL_TIME_UNDEFINED;
arr_get_num_children(child_ids, parent_directory, &containers, &items, &duration);
if(duration != GAVL_TIME_UNDEFINED)
gavl_dictionary_set_long(metadata, GAVL_META_APPROX_DURATION, duration);
gavl_track_set_num_children(&dict, containers, items);
gavl_dictionary_update_fields(gavl_track_get_metadata_nc(dir_idx), metadata);
gavl_track_set_num_children(dir_idx, containers, items);
gavl_msg_set_arg_dictionary(res, 0, &dict);
bg_msg_sink_put(b->ctrl.evt_sink);
ret = 1;
fail:
if(num_added || del)
save_dir_index(b, parent_directory, dir_idx);
if(parent_directory)
free(parent_directory);
gavl_dictionary_free(&dict);
if(dir_idx)
gavl_dictionary_destroy(dir_idx);
return ret;
}
static void destroy_xml(bg_mdb_backend_t * b)
{
xml_t * p = b->priv;
free(p);
}
static gavl_dictionary_t * browse_object(bg_mdb_backend_t * b, const char * id)
{
int ret = 0;
char * path = NULL;
struct stat st;
char * parent_id = NULL;
gavl_dictionary_t * dict = NULL;
path = id_to_path(b, id);
if(stat(path, &st))
{
gavl_log(GAVL_LOG_ERROR, LOG_DOMAIN, "Couldn't stat %s: %s", path, strerror(errno));
goto fail;
}
if(S_ISDIR(st.st_mode))
{
if(!(dict = load_dir_index(b, path)))
goto fail;
gavl_dictionary_set(dict, META_CHILD_IDS, NULL);
}
else
{
const char * pos;
dict = gavl_dictionary_create();
if(!bg_dictionary_load_xml(dict, path, "TRACK"))
{
gavl_log(GAVL_LOG_ERROR, LOG_DOMAIN, "Couldn't load %s", path);
goto fail;
}
if((pos = strrchr(id, '/')))
gavl_track_set_id(dict, pos+1);
parent_id = bg_mdb_get_parent_id(id);
item_from_storage(b, dict, parent_id);
}
ret = 1;
fail:
if(path)
free(path);
if(parent_id)
free(parent_id);
if(!ret && dict)
{
gavl_dictionary_destroy(dict);
dict = NULL;
}
return dict;
}
static int browse_children(bg_mdb_backend_t * b, const char * id, gavl_array_t * ret,
int start, int num, int * total)
{
int result = 0;
int i;
gavl_array_t * child_ids;
char * path = NULL;
const char * str;
char * child_id;
int changed = 0;
gavl_dictionary_t * child_dict = NULL;
gavl_dictionary_t * child_m = NULL;
gavl_dictionary_t * parent_dict = NULL;
path = id_to_path(b, id);
// fprintf(stderr, "XML Browse children %s\n", id);
if(!(parent_dict = load_dir_index(b, path)) ||
!(child_ids = gavl_dictionary_get_array_nc(parent_dict, META_CHILD_IDS)))
goto fail;
if(total)
*total = child_ids->num_entries;
if(!bg_mdb_adjust_num(start, &num, child_ids->num_entries))
goto fail;
i = 0;
while(i < num)
// for(i = 0; i < num; i++)
{
gavl_value_t val;
// gavl_dictionary_t * last_child_m = NULL;
// char * last_id = NULL;
if((str = gavl_value_get_string(&child_ids->entries[i + start])))
{
child_id = gavl_sprintf("%s/%s", id, str);
if(!(child_dict = browse_object(b, child_id)))
{
changed++;
gavl_array_splice_val(child_ids, i, 1, NULL);
num--;
continue;
}
#if 0
if(last_child_m)
gavl_dictionary_set_string(last_child_m, GAVL_META_NEXT_ID, child_id);
if(last_id)
{
gavl_dictionary_set_string_nocopy(child_m, GAVL_META_PREVIOUS_ID, last_id);
last_id = NULL;
}
fprintf(stderr, "browse_children xml\n");
gavl_dictionary_dump(child_dict, 2);
fprintf(stderr, "\n");
#endif
gavl_value_init(&val);
gavl_value_set_dictionary_nocopy(&val, child_dict);
gavl_array_splice_val_nocopy(ret, -1, 0, &val);
child_id = NULL;
}
i++;
}
/* Set next and previous */
for(i = 0; i < ret->num_entries; i++)
{
child_dict = gavl_value_get_dictionary_nc(&ret->entries[i]);
child_m = gavl_track_get_metadata_nc(child_dict);
if(i + start > 0)
{
gavl_dictionary_set_string_nocopy(child_m, GAVL_META_PREVIOUS_ID,
gavl_sprintf("%s/%s", id, gavl_string_array_get(child_ids, i-1)));
}
if(i + start < ret->num_entries - 1)
{
gavl_dictionary_set_string_nocopy(child_m, GAVL_META_NEXT_ID,
gavl_sprintf("%s/%s", id, gavl_string_array_get(child_ids, i+1)));
}
}
result = 1;
if(changed)
save_dir_index(b, path, parent_dict);
fail:
if(parent_dict)
gavl_dictionary_destroy(parent_dict);
if(path)
free(path);
return result;
}
static int handle_msg_xml(void * priv, gavl_msg_t * msg)
{
bg_mdb_backend_t * b = priv;
// fprintf(stderr, "handle_msg_xml %d %d\n", msg->ID, msg->NS);
switch(msg->NS)
{
case BG_MSG_NS_DB:
{
switch(msg->ID)
{
case BG_FUNC_DB_BROWSE_OBJECT:
{
const char * pos;
const char * ctx_id;
gavl_dictionary_t * dict;
gavl_dictionary_t * m;
gavl_msg_t * res;
gavl_value_t val;
int ix;
char * parent_id = NULL;
char * parent_path = NULL;
int item_idx = -1, total = -1;
ctx_id = gavl_dictionary_get_string(&msg->header, GAVL_MSG_CONTEXT_ID);
dict = browse_object(b, ctx_id);
m = gavl_track_get_metadata_nc(dict);
/* Set next and previous */
parent_id = bg_mdb_get_parent_id(ctx_id);
if(strcmp(parent_id, "/"))
{
gavl_dictionary_t * idx;
const gavl_array_t * child_ids;
parent_path = id_to_path(b, parent_id);
idx = load_dir_index(b, parent_path);
pos = strrchr(ctx_id, '/');
if((child_ids = gavl_dictionary_get_array_nc(idx, META_CHILD_IDS)) &&
((ix = gavl_string_array_indexof(child_ids, pos + 1)) >= 0))
{
if(ix > 0)
{
gavl_dictionary_set_string_nocopy(m, GAVL_META_PREVIOUS_ID,
gavl_sprintf("%s/%s", parent_id, gavl_string_array_get(child_ids, ix-1)));
}
if(ix < child_ids->num_entries - 1)
{
gavl_dictionary_set_string_nocopy(m, GAVL_META_NEXT_ID,
gavl_sprintf("%s/%s", parent_id, gavl_string_array_get(child_ids, ix+1)));
}
item_idx = ix;
total = child_ids->num_entries;
}
gavl_dictionary_destroy(idx);
if(parent_path)
free(parent_path);
}
if(parent_id)
free(parent_id);
// fprintf(stderr, "Browse object:\n");
// gavl_dictionary_dump(dict, 2);
gavl_value_init(&val);
gavl_value_set_dictionary_nocopy(&val, dict);
res = bg_msg_sink_get(b->ctrl.evt_sink);
bg_mdb_set_browse_obj_response(res, dict, msg, item_idx, total);
bg_msg_sink_put(b->ctrl.evt_sink);
}
break;
case BG_FUNC_DB_BROWSE_CHILDREN:
{
gavl_array_t arr;
/* Flush messages */
gavl_msg_t * res;
const char * ctx_id;
int start, num, total = 0;
int one_answer;
gavl_array_init(&arr);
ctx_id = gavl_dictionary_get_string(&msg->header, GAVL_MSG_CONTEXT_ID);
bg_mdb_get_browse_children_request(msg, &ctx_id, &start, &num, &one_answer);
// fprintf(stderr, "XML Browse children %s %d %d %d\n", ctx_id, start, num, one_answer);
if(browse_children(b, ctx_id, &arr, start, num, &total))
{
if(one_answer)
{
res = bg_msg_sink_get(b->ctrl.evt_sink);
bg_mdb_set_browse_children_response(res, &arr, msg, &start, 1, total);
bg_msg_sink_put(b->ctrl.evt_sink);
}
else
{
int end, last = 0;
gavl_array_t arr_sub;
int start1 = start;
end = start + arr.num_entries;
gavl_array_init(&arr_sub);
while(!last)
{
gavl_array_copy_sub(&arr_sub, &arr, start - start1, MAX_CHILDREN);
//fprintf(stderr, "XML Browse children 1 %d %d\n", start, arr_sub.num_entries);
if(start + arr_sub.num_entries == end)
last = 1;
res = bg_msg_sink_get(b->ctrl.evt_sink);
bg_mdb_set_browse_children_response(res, &arr_sub, msg, &start, last, total);
bg_msg_sink_put(b->ctrl.evt_sink);
gavl_array_reset(&arr_sub);
}
}
}
gavl_array_free(&arr);
}
break;
case BG_CMD_DB_SPLICE_CHILDREN:
{
int last = 0;
int idx = 0;
int del = 0;
gavl_value_t add;
gavl_array_t add_arr;
gavl_value_init(&add);
gavl_array_init(&add_arr);
gavl_msg_get_splice_children(msg, &last, &idx, &del, &add);
bg_tracks_resolve_locations(&add, &add_arr, BG_INPUT_FLAG_GET_FORMAT);
// fprintf(stderr, "Resolve children\n");
// gavl_array_dump(&add_arr, 2 );
splice(b, gavl_dictionary_get_string(&msg->header, GAVL_MSG_CONTEXT_ID), last, idx, del, &add_arr);
gavl_value_free(&add);
gavl_array_free(&add_arr);
}
break;
case BG_CMD_DB_SORT:
{
const char * ctx_id;
gavl_dictionary_t * dir_idx = NULL;
gavl_array_t * child_ids;
char * parent_directory = NULL;
ctx_id = gavl_dictionary_get_string(&msg->header, GAVL_MSG_CONTEXT_ID);
// fprintf(stderr, "xml sort %s\n", ctx_id);
parent_directory = id_to_path(b, ctx_id);
if((dir_idx = load_dir_index(b, parent_directory)) &&
(child_ids = gavl_dictionary_get_array_nc(dir_idx, META_CHILD_IDS)))
{
int i;
gavl_msg_t * msg;
const gavl_dictionary_t * dict;
const char * id;
const char * pos;
gavl_array_t children;
// fprintf(stderr, "xml sort 1\n");
gavl_array_init(&children);
browse_children(b, ctx_id, &children, 0, -1, NULL);
/* We use the dir_idx as parent for sorting the tracks */
bg_mdb_tracks_sort(&children);
/* Extract child IDs */
gavl_array_splice_val(child_ids, 0, -1, NULL);
for(i = 0; i < children.num_entries; i++)
{
if((dict = gavl_value_get_dictionary(&children.entries[i])) &&
(id = gavl_track_get_id(dict)))
{
if((pos = strrchr(id, '/')))
pos++;
else
pos = id;
gavl_string_array_add(child_ids, pos);
}
}
save_dir_index(b, parent_directory, dir_idx);
msg = bg_msg_sink_get(b->ctrl.evt_sink);
gavl_msg_set_id_ns(msg, BG_MSG_DB_SPLICE_CHILDREN, BG_MSG_NS_DB);
gavl_dictionary_set_string(&msg->header, GAVL_MSG_CONTEXT_ID, ctx_id);
gavl_msg_set_last(msg, 1);
gavl_msg_set_arg_int(msg, 0, 0); // idx
gavl_msg_set_arg_int(msg, 1, children.num_entries); // del
gavl_msg_set_arg_array(msg, 2, &children);
bg_msg_sink_put(b->ctrl.evt_sink);
gavl_array_free(&children);
}
}
break;
}
break;
}
case GAVL_MSG_NS_GENERIC:
switch(msg->ID)
{
case GAVL_CMD_QUIT:
return 0;
}
break;
}
return 1;
}
static gavl_dictionary_t * create_root_folder(bg_mdb_backend_t * b, const char * media_class,
const char ** id)
{
char * directory;
gavl_dictionary_t * container;
gavl_dictionary_t * m;
gavl_dictionary_t * idx;
int num_items = 0;
int num_containers = 0;
gavl_time_t duration = GAVL_TIME_UNDEFINED;
container = bg_mdb_get_root_container(b->db, media_class);
bg_mdb_container_set_backend(container, MDB_BACKEND_XML);
m = gavl_track_get_metadata_nc(container);
*id = gavl_dictionary_get_string(m, GAVL_META_ID);
directory = id_to_path(b, *id);
gavl_ensure_directory(directory, 0);
if((idx = load_dir_index(b, directory)))
get_num_children(idx, directory, &num_containers, &num_items, &duration);
gavl_track_set_num_children(container, num_containers, num_items);
if(idx)
gavl_dictionary_destroy(idx);
free(directory);
set_editable(*id, container);
return container;
}
void bg_mdb_create_xml(bg_mdb_backend_t * b)
{
xml_t * priv;
priv = calloc(1, sizeof(*priv));
priv->favorites = create_root_folder(b, GAVL_META_CLASS_ROOT_FAVORITES, &priv->favorites_id);
// fprintf(stderr, "Created favorites: %p\n", priv->favorites);
priv->library = create_root_folder(b, GAVL_META_CLASS_ROOT_LIBRARY, &priv->library_id);
bg_controllable_init(&b->ctrl,
bg_msg_sink_create(handle_msg_xml, b, 0),
bg_msg_hub_create(1));
b->destroy = destroy_xml;
b->priv = priv;
}
|