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
|
/*
* libzvbi - Network identification
*
* Copyright (C) 2000, 2001, 2002, 2003, 2004 Michael H. Schimek
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* 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, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: network.c,v 1.9 2006/02/06 18:14:54 mschimek Exp $ */
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdlib.h>
#include <ctype.h> /* isdigit() */
#include <assert.h>
#include "misc.h" /* CLEAR() */
#include "bcd.h" /* vbi3_is_bcd(), vbi3_bcd2bin() */
#include "conv.h" /* _vbi3_strdup_locale_utf8() */
#include "network.h"
#include "network-table.h"
/**
* @param type CNI type.
*
* Returns the name of a CNI type, for example VBI3_CNI_TYPE_PDC_A ->
* "PDC_A". This is mainly intended for debugging.
*
* @return
* Static ASCII string, NULL if @a type is invalid.
*/
const char *
vbi3_cni_type_name (vbi3_cni_type type)
{
switch (type) {
#undef CASE
#define CASE(type) case VBI3_CNI_TYPE_##type : return #type ;
CASE (NONE)
CASE (VPS)
CASE (8301)
CASE (8302)
CASE (PDC_A)
CASE (PDC_B)
}
return NULL;
}
static unsigned int
cni_pdc_a_to_vps (unsigned int cni)
{
unsigned int n;
/* Relation guessed from values observed
in DE and AT. Is this defined anywhere? */
switch (cni >> 12) {
case 0x1A: /* Austria */
case 0x1D: /* Germany */
if (!vbi3_is_bcd ((int) cni & 0xFFF))
return 0;
n = vbi3_bcd2bin ((int) cni & 0xFFF);
switch (n) {
case 100 ... 163:
cni = ((cni >> 4) & 0xF00) + n + 0xC0 - 100;
break;
case 200 ... 263: /* in DE */
cni = ((cni >> 4) & 0xF00) + n + 0x80 - 200;
break;
default:
return 0;
}
break;
default:
return 0;
}
return cni;
}
static unsigned int
cni_vps_to_pdc_a (unsigned int cni)
{
switch (cni >> 8) {
case 0xA: /* Austria */
case 0xD: /* Germany */
switch (cni & 0xFF) {
case 0xC0 ... 0xFF:
cni = ((cni << 4) & 0xF000) + 0x10000
+ vbi3_bin2bcd ((int)(cni & 0xFF) - 0xC0 + 100);
break;
case 0x80 ... 0xBF:
cni = ((cni << 4) & 0xF000) + 0x10000
+ vbi3_bin2bcd ((int)(cni & 0xFF) - 0x80 + 200);
break;
default:
return 0;
}
break;
default:
return 0;
}
return cni;
}
static const struct network *
cni_lookup (vbi3_cni_type type,
unsigned int cni)
{
const struct network *p;
const struct network *network_table_end =
network_table + N_ELEMENTS (network_table);
/* TODO binary search. */
if (0 == cni)
return NULL;
switch (type) {
case VBI3_CNI_TYPE_8301:
for (p = network_table; p < network_table_end; ++p)
if (p->cni_8301 == cni) {
return p;
}
break;
case VBI3_CNI_TYPE_8302:
for (p = network_table; p < network_table_end; ++p)
if (p->cni_8302 == cni) {
return p;
}
cni &= 0x0FFF;
/* fall through */
case VBI3_CNI_TYPE_VPS:
for (p = network_table; p < network_table_end; ++p)
if (p->cni_vps == cni) {
return p;
}
break;
case VBI3_CNI_TYPE_PDC_A:
{
unsigned int cni_vps;
cni_vps = cni_pdc_a_to_vps (cni);
if (0 == cni_vps)
return NULL;
for (p = network_table; p < network_table_end; ++p)
if (p->cni_vps == cni_vps) {
return p;
}
break;
}
case VBI3_CNI_TYPE_PDC_B:
for (p = network_table; p < network_table_end; ++p)
if (p->cni_pdc_b == cni) {
return p;
}
/* try code | 0x0080 & 0x0FFF -> VPS ? */
break;
default:
debug ("Unknown CNI type %u", type);
break;
}
return NULL;
}
/**
* @param to_type Type of CNI to convert to.
* @param from_type Type of CNI to convert from.
* @param cni CNI to convert.
*
* Converts a CNI from one type to another.
*
* @returns
* Converted CNI or 0 if conversion is not possible.
*/
unsigned int
vbi3_convert_cni (vbi3_cni_type to_type,
vbi3_cni_type from_type,
unsigned int cni)
{
const struct network *p;
if (!(p = cni_lookup (from_type, cni)))
return 0;
switch (to_type) {
case VBI3_CNI_TYPE_VPS:
return p->cni_vps;
case VBI3_CNI_TYPE_8301:
return p->cni_8301;
case VBI3_CNI_TYPE_8302:
return p->cni_8302;
case VBI3_CNI_TYPE_PDC_A:
return cni_vps_to_pdc_a (p->cni_vps);
case VBI3_CNI_TYPE_PDC_B:
return p->cni_pdc_b;
default:
debug ("Unknown CNI to_type %u", to_type);
break;
}
return 0;
}
/**
* @internal
*/
void
_vbi3_network_dump (const vbi3_network * nk,
FILE * fp)
{
assert (NULL != nk);
assert (NULL != fp);
fprintf (fp,
"'%s' call_sign=%s cni=%x/%x/%x/%x/%x country=%s",
nk->name ? nk->name : "unknown",
nk->call_sign[0] ? nk->call_sign : "unknown",
nk->cni_vps,
nk->cni_8301,
nk->cni_8302,
nk->cni_pdc_a,
nk->cni_pdc_b,
nk->country_code[0] ? nk->country_code : "unknown");
}
/**
*/
char *
vbi3_network_id_string (const vbi3_network * nk)
{
char buffer[sizeof (nk->call_sign) * 3 + 5 * 9 + 1];
char *s;
unsigned int i;
s = buffer;
for (i = 0; i < sizeof (nk->call_sign); ++i) {
if (isalnum (nk->call_sign[i])) {
*s++ = nk->call_sign[i];
} else {
s += sprintf (s, "%%%02x", nk->call_sign[i]);
}
}
s += sprintf (s, "-%8x", nk->cni_vps);
s += sprintf (s, "-%8x", nk->cni_8301);
s += sprintf (s, "-%8x", nk->cni_8302);
s += sprintf (s, "-%8x", nk->cni_pdc_a);
s += sprintf (s, "-%8x", nk->cni_pdc_b);
return strdup (buffer);
}
/**
*/
vbi3_bool
vbi3_network_set_name (vbi3_network * nk,
const char * name)
{
char *name1;
assert (NULL != nk);
if (!(name1 = strdup (name)))
return FALSE;
vbi3_free (nk->name);
nk->name = name1;
return TRUE;
}
/**
* @internal
*/
vbi3_bool
_vbi3_network_set_name_from_ttx_header
(vbi3_network * nk,
const uint8_t buffer[40])
{
unsigned int i;
assert (NULL != nk);
assert (NULL != buffer);
for (i = 0; i < N_ELEMENTS (ttx_header_table); ++i) {
const uint8_t *s1;
const uint8_t *s2;
uint8_t c1;
uint8_t c2;
char *name;
s1 = (const uint8_t *) ttx_header_table[i].header;
s2 = buffer + 8;
while (0 != (c1 = *s1) && s2 < &buffer[40]) {
switch (c1) {
case '?':
break;
case '#':
if (!isdigit (*s2 & 0x7F))
goto next;
break;
default:
if (((c2 = *s2) & 0x7F) <= 0x20) {
if (0x20 != c1)
goto next;
else
break;
} else if (0 != ((c1 ^ c2) & 0x7F)) {
goto next;
}
break;
}
++s1;
++s2;
}
name = _vbi3_strdup_locale_utf8 (ttx_header_table[i].name);
if (!name)
return FALSE;
vbi3_free (nk->name);
nk->name = name;
return TRUE;
next:
;
}
return FALSE;
}
/**
*/
vbi3_bool
vbi3_network_set_cni (vbi3_network * nk,
vbi3_cni_type type,
unsigned int cni)
{
const struct network *p;
char *name;
assert (NULL != nk);
switch (type) {
case VBI3_CNI_TYPE_VPS:
nk->cni_vps = cni;
break;
case VBI3_CNI_TYPE_8301:
nk->cni_8301 = cni;
break;
case VBI3_CNI_TYPE_8302:
nk->cni_8302 = cni;
break;
case VBI3_CNI_TYPE_PDC_A:
nk->cni_pdc_a = cni;
break;
case VBI3_CNI_TYPE_PDC_B:
nk->cni_pdc_b = cni;
break;
default:
debug ("Unknown CNI type %u", type);
}
if (!(p = cni_lookup (type, cni)))
return FALSE;
/* Keep in mind our table may be wrong. */
if (p->cni_vps && nk->cni_vps
&& p->cni_vps != nk->cni_vps)
return FALSE;
if (p->cni_8301 && nk->cni_8301
&& p->cni_8301 != nk->cni_8301)
return FALSE;
if (p->cni_8302 && nk->cni_8302
&& p->cni_8302 != nk->cni_8302)
return FALSE;
if (!(name = _vbi3_strdup_locale_utf8 (p->name)))
return FALSE;
vbi3_free (nk->name);
nk->name = name;
nk->cni_vps = p->cni_vps;
nk->cni_8301 = p->cni_8301;
nk->cni_8302 = p->cni_8302;
if (0 == nk->cni_pdc_a)
nk->cni_pdc_a = cni_vps_to_pdc_a (p->cni_vps);
if (0 == nk->cni_pdc_b)
nk->cni_pdc_b = p->cni_pdc_b;
if (0 == nk->country_code[0]) {
assert (p->country < N_ELEMENTS (country_table));
_vbi3_strlcpy (nk->country_code,
country_table[p->country].country_code,
sizeof (nk->country_code));
}
return TRUE;
}
/**
*/
vbi3_bool
vbi3_network_set_call_sign (vbi3_network * nk,
const char * call_sign)
{
assert (NULL != nk);
assert (NULL != call_sign);
_vbi3_strlcpy (nk->call_sign, call_sign, sizeof (nk->call_sign));
if (0 == nk->country_code[0]) {
const char *country_code;
country_code = "";
/* See http://www.fcc.gov/cgb/statid.html */
switch (call_sign[0]) {
case 'A':
switch (call_sign[1]) {
case 'A' ... 'F':
country_code = "US";
break;
}
break;
case 'K':
case 'W':
case 'N':
country_code = "US";
break;
case 'C':
switch (call_sign[1]) {
case 'F' ... 'K':
case 'Y' ... 'Z':
country_code = "CA";
break;
}
break;
case 'V':
switch (call_sign[1]) {
case 'A' ... 'G':
case 'O':
case 'X' ... 'Y':
country_code = "CA";
break;
}
break;
case 'X':
switch (call_sign[1]) {
case 'J' ... 'O':
country_code = "CA";
break;
}
break;
}
_vbi3_strlcpy (nk->country_code,
country_code,
sizeof (nk->country_code));
}
return TRUE;
}
/**
* @param nk Initialized vbi3_network structure.
*
* @returns
* @c TRUE if all fields user_data, cni_vps, cni_8301, cni_8302
* and call_sign are unset (zero).
*/
vbi3_bool
vbi3_network_is_anonymous (const vbi3_network * nk)
{
assert (NULL != nk);
return (NULL == nk->user_data
&& 0 == (nk->cni_vps |
nk->cni_8301 |
nk->cni_8302 |
nk->call_sign[0]));
}
/**
* @param nk1 Initialized vbi3_network structure.
* @param nk2 Initialized vbi3_network structure.
*
* Compares two networks for weak equality. Networks are considered
* weak equal if each pair of user_data, cni_vps, cni_8301, cni_8302
* and call_sign is equal or one value is unset (zero).
*
* @returns
* @c TRUE if the networks are weakly equal.
*/
vbi3_bool
vbi3_network_weak_equal (const vbi3_network * nk1,
const vbi3_network * nk2)
{
assert (NULL != nk1);
assert (NULL != nk2);
if (nk1->user_data && nk2->user_data)
if (nk1->user_data != nk2->user_data)
return FALSE;
if (nk1->cni_vps && nk2->cni_vps)
if (nk1->cni_vps != nk2->cni_vps)
return FALSE;
if (nk1->cni_8301 && nk2->cni_8301)
if (nk1->cni_8301 != nk2->cni_8301)
return FALSE;
if (nk1->cni_8302 && nk2->cni_8302)
if (nk1->cni_8302 != nk2->cni_8302)
return FALSE;
if (nk1->call_sign[0] && nk2->call_sign[0])
if (0 != strcmp (nk1->call_sign, nk2->call_sign))
return FALSE;
return TRUE;
}
/**
* @param nk1 Initialized vbi3_network structure.
* @param nk2 Initialized vbi3_network structure.
*
* Compares two networks for equality. Networks are considered equal
* if each pair of user_data, cni_vps, cni_8301, cni_8302 and
* call_sign is equal or both values are unset (zero).
*
* @returns
* @c TRUE if the networks are equal.
*/
vbi3_bool
vbi3_network_equal (const vbi3_network * nk1,
const vbi3_network * nk2)
{
assert (NULL != nk1);
assert (NULL != nk2);
if (nk1->user_data || nk2->user_data)
if (nk1->user_data != nk2->user_data)
return FALSE;
if (0 != ((nk1->cni_vps ^ nk2->cni_vps) |
(nk1->cni_8301 ^ nk2->cni_8301) |
(nk1->cni_8302 ^ nk2->cni_8302)))
return FALSE;
if (nk1->call_sign[0] || nk2->call_sign[0])
if (0 != strcmp (nk1->call_sign, nk2->call_sign))
return FALSE;
return TRUE;
}
/**
* @param nk Initialized vbi3_network structure.
*
* Resets all fields to zero, creating an anonymous network.
*/
void
vbi3_network_reset (vbi3_network * nk)
{
assert (NULL != nk);
vbi3_free (nk->name);
CLEAR (*nk);
}
/**
* @param nk vbi3_network structure initialized with vbi3_network_init()
* or vbi3_network_copy().
*
* Frees all resources associated with @a nk, except the structure itself.
*/
void
vbi3_network_destroy (vbi3_network * nk)
{
vbi3_network_reset (nk);
}
/**
* @param dst Initialized vbi3_network structure.
* @param src Initialized vbi3_network structure, can be @c NULL.
*
* Sets all fields of @a dst by copying from @a src. Does
* nothing if @a dst and @a src are the same.
*
* @returns
* @c FALSE on failure (out of memory), leaving @a dst unmodified.
*/
vbi3_bool
vbi3_network_set (vbi3_network * dst,
const vbi3_network * src)
{
assert (NULL != dst);
if (dst == src)
return TRUE;
if (!src) {
vbi3_network_reset (dst);
} else {
char *name;
name = NULL;
if (src->name && !(name = strdup (src->name)))
return FALSE;
vbi3_free (dst->name);
memcpy (dst, src, sizeof (*dst));
dst->name = name;
}
return TRUE;
}
/**
* @param dst vbi3_network structure to initialize.
* @param src Initialized vbi3_network structure, can be @c NULL.
*
* Initializes all fields of @a dst by copying from @a src.
* Does nothing if @a dst and @a src are the same.
*
* @returns
* @c FALSE on failure (out of memory), with @a dst unmodified.
*/
vbi3_bool
vbi3_network_copy (vbi3_network * dst,
const vbi3_network * src)
{
assert (NULL != dst);
if (dst == src)
return TRUE;
if (!src) {
CLEAR (*dst);
} else if (dst != src) {
char *name;
name = NULL;
if (src->name && !(name = strdup (src->name)))
return FALSE;
memcpy (dst, src, sizeof (*dst));
dst->name = name;
}
return TRUE;
}
/**
* @param nk vbi3_network structure to initialize.
*
* Initializes all fields of @a nk to zero, creating an
* anonymous network.
*
* @returns
* @c TRUE.
*/
vbi3_bool
vbi3_network_init (vbi3_network * nk)
{
return vbi3_network_copy (nk, NULL);
}
/**
* @param nk malloc()ed array of initialized vbi3_network structures,
* can be NULL.
* @param n_elements Number of elements in the array.
*
* Frees an array of vbi3_network structures and all data associated
* with them. Does nothing if @a nk or @a n_elements are zero.
*/
extern void
vbi3_network_array_delete (vbi3_network * nk,
unsigned int n_elements)
{
unsigned int i;
if (NULL == nk || 0 == n_elements)
return;
for (i = 0; i < n_elements; ++i)
vbi3_network_destroy (nk + i);
vbi3_free (nk);
}
|