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 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961
|
/*===========================================================================*
* parallel.c *
* *
* Procedures to make encoder run in parallel *
* *
* EXPORTED PROCEDURES: *
* StartIOServer *
* StartCombineServer *
* StartDecodeServer *
* SendRemoteFrame *
* GetRemoteFrame *
* StartMasterServer *
* NotifyMasterDone *
* *
*===========================================================================*/
/*
* Copyright (c) 1995 The Regents of the University of California.
* All rights reserved.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purpose, without fee, and without written agreement is
* hereby granted, provided that the above copyright notice and the following
* two paragraphs appear in all copies of this software.
*
* IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
* OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
* CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
* ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
*/
/*
* $Header: /n/picasso/project/mpeg/mpeg_dist/mpeg_encode/RCS/parallel.c,v 1.9 1995/08/16 18:22:08 smoot Exp $
* $Log: parallel.c,v $
* Revision 1.9 1995/08/16 18:22:08 smoot
* indents
*
* Revision 1.8 1995/08/14 22:30:20 smoot
* added safe_fork to allow us to kill kids when we die.
*
* Revision 1.7 1995/08/07 21:46:14 smoot
* spawns the same encoder as it is for combine, etc.
* uses new pattern tables to determine frame types
*
* Revision 1.6 1995/06/21 18:32:14 smoot
* Defined SOMAXCONN when not (LINUX)
* added binary r/w (DOsS!)
* ANSIified bcopy call
*
* Revision 1.5 1995/01/19 23:09:00 eyhung
* Changed copyrights
*
* Revision 1.4 1994/03/15 00:27:11 keving
* nothing
*
* Revision 1.3 1993/12/22 19:19:01 keving
* nothing
*
* Revision 1.2 1993/07/22 22:23:43 keving
* nothing
*
* Revision 1.1 1993/06/30 20:06:09 keving
* nothing
*
*/
/*==============*
* HEADER FILES *
*==============*/
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/times.h>
#include <time.h>
#include <netinet/in.h>
#include <unistd.h>
#include <netdb.h>
#include <errno.h>
#include <string.h>
#include <signal.h>
#include "all.h"
#include "param.h"
#include "mpeg.h"
#include "prototypes.h"
#include "parallel.h"
#include "readframe.h"
#include "fsize.h"
#include "combine.h"
#include "frames.h"
#define MAX_IO_SERVERS 10
#ifndef SOMAXCONN
#define SOMAXCONN 5
#endif
/*==================*
* CONSTANTS *
*==================*/
#define TERMINATE_PID_SIGNAL SIGTERM /* signal used to terminate forked childs */
#ifndef MAXARGS
#define MAXARGS 1024 /* Max Number of arguments in safe_fork command */
#endif
/*==================*
* STATIC VARIABLES *
*==================*/
static int32 diffTime;
static char rsh[256];
static struct hostent *hostEntry = NULL;
static boolean *frameDone;
static int outputServerSocket;
static int decodeServerSocket;
static boolean parallelPerfect = FALSE;
static int current_max_forked_pid=0;
/*==================*
* GLOBAL VARIABLES *
*==================*/
extern int yuvHeight, yuvWidth;
extern time_t timeStart, timeEnd;
extern char statFileName[256];
extern FILE *statFile;
extern boolean debugMachines;
extern boolean debugSockets;
int parallelTestFrames = 10;
int parallelTimeChunks = 60;
char *IOhostName;
int ioPortNumber;
int combinePortNumber;
int decodePortNumber;
boolean niceProcesses = FALSE;
boolean forceIalign = FALSE;
int machineNumber = -1;
boolean remoteIO = FALSE;
boolean separateConversion;
time_t IOtime = 0;
extern char encoder_name[];
int ClientPid[MAX_MACHINES+4];
/*===============================*
* INTERNAL PROCEDURE prototypes *
*===============================*/
static void TransmitPortNum _ANSI_ARGS_((char *hostName, int portNum,
int ioPortNum));
static void EndIOServer _ANSI_ARGS_((void));
static void SafeRead _ANSI_ARGS_((int fd, char *buf, int nbyte));
static void SafeWrite _ANSI_ARGS_((int fd, char *buf, int nbyte));
static int CreateListeningSocket _ANSI_ARGS_((int *portNumber));
static int ConnectToSocket _ANSI_ARGS_((char *machineName, int portNum,
struct hostent **hostEnt));
static int safe_fork _ANSI_ARGS_((char *command));
void cleanup_fork _ANSI_ARGS_ ((int dummy));
/*=====================*
* EXPORTED PROCEDURES *
*=====================*/
/*=================*
* IO SERVER STUFF *
*=================*/
/*===========================================================================*
*
* SetIOConvert
*
* sets the IO conversion to be separate or not. If separate, then
* some post-processing is done at slave end
*
* RETURNS: nothing
*
* SIDE EFFECTS: none
*
*===========================================================================*/
void
SetIOConvert(separate)
boolean separate;
{
separateConversion = separate;
}
/*===========================================================================*
*
* SetParallelPerfect
*
* If this is called, then frames will be divided up completely, and
* evenly (modulo rounding) between all the processors
*
* RETURNS: nothing
*
* SIDE EFFECTS: Sets parallelPerfect ....
*
*===========================================================================*/
void
SetParallelPerfect(val)
boolean val;
{
parallelPerfect = val;
}
/*===========================================================================*
*
* SetRemoteShell
*
* sets the remote shell program (usually rsh, but different on some
* machines)
*
* RETURNS: nothing
*
* SIDE EFFECTS: none
*
*===========================================================================*/
void
SetRemoteShell(shell)
char *shell;
{
strcpy(rsh, shell);
}
/*===========================================================================*
*
* StartIOServer
*
* start-up the IOServer with this process
* handles slave requests for frames, and exits when master tells it to
*
* RETURNS: nothing
*
* SIDE EFFECTS: none
*
*===========================================================================*/
void
StartIOServer(numInputFiles, parallelHostName, portNum)
int numInputFiles;
char *parallelHostName;
int portNum;
{
int ioPortNum;
int serverSocket;
int otherSock, otherSize;
struct sockaddr otherSocket;
int32 buffer[8];
boolean done = FALSE;
int frameNumber;
MpegFrame *frame;
register int y;
int numBytes;
unsigned char *bigBuffer;
unsigned char smallBuffer[1000];
int bigBufferSize;
FILE *filePtr;
uint32 data;
char inputFileName[1024];
char fileName[1024];
bigBufferSize = 0;
bigBuffer = NULL;
/* once we get IO port num, should transmit it to parallel server */
serverSocket = CreateListeningSocket(&ioPortNum);
if ( debugSockets ) {
fprintf(stdout, "====I/O USING PORT %d\n", ioPortNum);
}
TransmitPortNum(parallelHostName, portNum, ioPortNum);
otherSize = sizeof(otherSocket);
if ( separateConversion ) {
SetFileType(ioConversion); /* for reading */
} else {
SetFileType(inputConversion);
}
/* now, wait until get done signal */
while ( ! done ) {
otherSock = accept(serverSocket, &otherSocket, &otherSize);
if ( otherSock == -1 ) {
fprintf(stderr, "ERROR: I/O SERVER accept returned error %d\n", errno);
exit(1);
}
SafeRead(otherSock, (char *)buffer, 4);
frameNumber = ntohl(buffer[0]);
if ( frameNumber == -1 ) {
done = TRUE;
} else if ( frameNumber == -2 ) {
/* decoded frame to be output to disk */
SafeRead(otherSock, (char *)buffer, 4);
frameNumber = ntohl(buffer[0]);
if ( debugSockets ) {
fprintf(stdout, "INPUT SERVER: GETTING DECODED FRAME %d\n", frameNumber);
fflush(stdout);
}
/* should read frame from socket, then write to disk */
frame = Frame_New(frameNumber, 'i');
Frame_AllocDecoded(frame, TRUE);
for ( y = 0; y < Fsize_y; y++ ) {
SafeRead(otherSock, (char *)frame->decoded_y[y], Fsize_x);
}
for (y = 0; y < (Fsize_y >> 1); y++) { /* U */
SafeRead(otherSock, (char *)frame->decoded_cb[y], (Fsize_x >> 1));
}
for (y = 0; y < (Fsize_y >> 1); y++) { /* V */
SafeRead(otherSock, (char *)frame->decoded_cr[y], (Fsize_x >> 1));
}
/* now output to disk */
WriteDecodedFrame(frame);
Frame_Free(frame);
} else if ( frameNumber == -3 ) {
/* request for decoded frame from disk */
SafeRead(otherSock, (char *)buffer, 4);
frameNumber = ntohl(buffer[0]);
if ( debugSockets ) {
fprintf(stdout, "INPUT SERVER: READING DECODED FRAME %d from DISK\n", frameNumber);
fflush(stdout);
}
/* should read frame from disk, then write to socket */
frame = Frame_New(frameNumber, 'i');
Frame_AllocDecoded(frame, TRUE);
ReadDecodedRefFrame(frame, frameNumber);
/* now write to socket */
for ( y = 0; y < Fsize_y; y++ ) {
SafeWrite(otherSock, (char *)frame->decoded_y[y], Fsize_x);
}
for (y = 0; y < (Fsize_y >> 1); y++) { /* U */
SafeWrite(otherSock, (char *)frame->decoded_cb[y], (Fsize_x >> 1));
}
for (y = 0; y < (Fsize_y >> 1); y++) { /* V */
SafeWrite(otherSock, (char *)frame->decoded_cr[y], (Fsize_x >> 1));
}
Frame_Free(frame);
} else if ( frameNumber == -4 ) {
/* routing output frame from socket to disk */
SafeRead(otherSock, (char *)buffer, 8);
frameNumber = buffer[0];
frameNumber = ntohl(frameNumber);
/* read in number of bytes */
numBytes = buffer[1];
numBytes = ntohl(numBytes);
/* make sure buffer is big enough for data */
if ( numBytes > bigBufferSize ) {
bigBufferSize = numBytes;
if ( bigBuffer != NULL ) {
free(bigBuffer);
}
bigBuffer = (unsigned char *) malloc(bigBufferSize*
sizeof(unsigned char));
}
/* now read in the bytes */
SafeRead(otherSock, (char *) bigBuffer, numBytes);
/* open file to output this stuff to */
sprintf(fileName, "%s.frame.%d", outputFileName, frameNumber);
if ( (filePtr = fopen(fileName, "wb")) == NULL ) {
fprintf(stderr, "ERROR: Could not open output file(3): %s\n",
fileName);
exit(1);
}
/* now write the bytes here */
fwrite(bigBuffer, sizeof(char), numBytes, filePtr);
fclose(filePtr);
if ( debugSockets ) {
fprintf(stdout, "====I/O SERVER: WROTE FRAME %d to disk\n",
frameNumber);
fflush(stdout);
}
} else {
if ( debugSockets ) {
fprintf(stdout, "I/O SERVER GETTING FRAME %d\n", frameNumber);
fflush(stdout);
}
/* should read in frame, then write to socket */
frame = Frame_New(frameNumber, 'i');
if ( separateConversion ) {
GetNthInputFileName(inputFileName, frameNumber);
/* do conversion and send right to the socket */
filePtr = ReadIOConvert(inputFileName);
do {
numBytes = fread(smallBuffer, 1, 1000, filePtr);
if ( numBytes > 0 ) {
data = numBytes;
data = htonl(data);
SafeWrite(otherSock, (char *)&data, 4);
SafeWrite(otherSock, (char *)smallBuffer, numBytes);
}
}
while ( numBytes == 1000 );
if ( strcmp(ioConversion, "*") == 0 ) {
fclose(filePtr);
} else {
pclose(filePtr);
}
} else {
GetNthInputFileName(inputFileName, frameNumber);
ReadFrame(frame, inputFileName, inputConversion, TRUE);
/* should now transmit yuv values */
for (y = 0; y < yuvHeight; y++) { /* Y */
SafeWrite(otherSock, (char *)frame->orig_y[y], yuvWidth);
}
for (y = 0; y < (yuvHeight >> 1); y++) { /* U */
SafeWrite(otherSock, (char *)frame->orig_cb[y], yuvWidth >> 1);
}
for (y = 0; y < (yuvHeight >> 1); y++) { /* V */
SafeWrite(otherSock, (char *)frame->orig_cr[y], yuvWidth >> 1);
}
/* now, make sure we don't leave until other processor read everything */
SafeRead(otherSock, (char *)buffer, 4);
/* should = 0 */
}
if ( debugSockets ) {
fprintf(stdout, "====I/O SERVER: READ FRAME %d\n",
frameNumber);
}
Frame_Free(frame);
}
close(otherSock);
}
close(serverSocket);
if ( debugSockets ) {
fprintf(stdout, "====I/O SERVER: Shutting Down\n");
}
}
/*===========================================================================*
*
* SendRemoteFrame
*
* called by a slave to the I/O server; sends an encoded frame
* to the server to be sent to disk
*
* RETURNS: nothing
*
* SIDE EFFECTS: none
*
*===========================================================================*/
void
SendRemoteFrame(frameNumber, bb)
int frameNumber;
BitBucket *bb;
{
int clientSocket;
u_long data;
int negativeFour = -4;
time_t tempTimeStart, tempTimeEnd;
time(&tempTimeStart);
clientSocket = ConnectToSocket(IOhostName, ioPortNumber, &hostEntry);
data = htonl(negativeFour);
SafeWrite(clientSocket, (char *)&data, 4);
data = htonl(frameNumber);
SafeWrite(clientSocket, (char *)&data, 4);
if ( frameNumber != -1 ) {
/* send number of bytes */
data = (bb->totalbits+7)>>3;
data = htonl(data);
SafeWrite(clientSocket, (char *)&data, 4);
/* now send the bytes themselves */
Bitio_WriteToSocket(bb, clientSocket);
}
close(clientSocket);
time(&tempTimeEnd);
IOtime += (tempTimeEnd-tempTimeStart);
}
/*===========================================================================*
*
* NoteFrameDone
*
* called by slave to the Combine server; tells it these frames are
* done
*
* RETURNS: nothing
*
* SIDE EFFECTS: none
*
*===========================================================================*/
void
NoteFrameDone(frameStart, frameEnd)
int frameStart;
int frameEnd;
{
int clientSocket;
u_long data;
int negativeTwo = -2;
time_t tempTimeStart, tempTimeEnd;
time(&tempTimeStart);
clientSocket = ConnectToSocket(IOhostName, combinePortNumber, &hostEntry);
data = negativeTwo;
data = htonl(negativeTwo);
SafeWrite(clientSocket, (char *)&data, 4);
data = htonl(frameStart);
SafeWrite(clientSocket, (char *)&data, 4);
data = htonl(frameEnd);
SafeWrite(clientSocket, (char *)&data, 4);
close(clientSocket);
time(&tempTimeEnd);
IOtime += (tempTimeEnd-tempTimeStart);
}
/*===========================================================================*
*
* GetRemoteFrame
*
* called by a slave; gets a remote frame from the I/O server
*
* RETURNS: nothing
*
* SIDE EFFECTS: none
*
*===========================================================================*/
void
GetRemoteFrame(frame, frameNumber)
MpegFrame *frame;
int frameNumber;
{
FILE *filePtr;
int clientSocket;
unsigned char smallBuffer[1000];
register int y;
int numBytes;
u_long data;
char fileName[256];
Fsize_Note(frameNumber, yuvWidth, yuvHeight);
if ( debugSockets ) {
fprintf(stdout, "MACHINE %s REQUESTING connection for FRAME %d\n",
getenv("HOST"), frameNumber);
fflush(stdout);
}
clientSocket = ConnectToSocket(IOhostName, ioPortNumber, &hostEntry);
data = frameNumber;
data = htonl(data);
SafeWrite(clientSocket, (char *)&data, 4);
if ( frameNumber != -1 ) {
if ( separateConversion ) {
sprintf(fileName, "/tmp/foobar%d", machineNumber);
filePtr = fopen(fileName, "wb");
/* read in stuff, SafeWrite to file, perform local conversion */
do {
SafeRead(clientSocket, (char *)&numBytes, 4);
numBytes = ntohl(numBytes);
SafeRead(clientSocket, (char *)smallBuffer, numBytes);
fwrite(smallBuffer, 1, numBytes, filePtr);
} while ( numBytes == 1000 );
fflush(filePtr);
fclose(filePtr);
/* now do slave conversion */
ReadFrame(frame, fileName, slaveConversion, FALSE);
} else {
Frame_AllocYCC(frame);
if ( debugSockets ) {
fprintf(stdout, "MACHINE %s allocated YCC FRAME %d\n",
getenv("HOST"), frameNumber);
fflush(stdout);
}
/* should now read yuv values */
for (y = 0; y < yuvHeight; y++) { /* Y */
SafeRead(clientSocket, (char *)frame->orig_y[y], yuvWidth);
}
for (y = 0; y < (yuvHeight >> 1); y++) { /* U */
SafeRead(clientSocket, (char *)frame->orig_cb[y], yuvWidth>>1);
}
for (y = 0; y < (yuvHeight >> 1); y++) { /* V */
SafeRead(clientSocket, (char *)frame->orig_cr[y], yuvWidth>>1);
}
}
}
data = 0;
data = htonl(data);
SafeWrite(clientSocket, (char *)&data, 4);
close(clientSocket);
if ( debugSockets ) {
fprintf(stdout, "MACHINE %s READ COMPLETELY FRAME %d\n",
getenv("HOST"), frameNumber);
fflush(stdout);
}
}
/*===========================================================================*
*
* StartCombineServer
*
* start-up the CombineServer with this process
* handles combination of frames, and tells the
* master when it's done
*
* RETURNS: nothing
*
* SIDE EFFECTS: none
*
*===========================================================================*/
void
StartCombineServer(numInputFiles, outputFileName, parallelHostName, portNum)
int numInputFiles;
char *outputFileName;
char *parallelHostName;
int portNum;
{
int combinePortNum;
FILE *ofp;
/* once we get Combine port num, should transmit it to parallel server */
outputServerSocket = CreateListeningSocket(&combinePortNum);
if ( debugSockets ) {
fprintf(stdout, "====OUTPUT USING PORT %d\n", combinePortNum);
}
TransmitPortNum(parallelHostName, portNum, combinePortNum);
frameDone = (boolean *) malloc(numInputFiles*sizeof(boolean));
memset((char *)frameDone, 0, numInputFiles*sizeof(boolean));
if ( (ofp = fopen(outputFileName, "wb")) == NULL ) {
fprintf(stderr, "ERROR: Could not open output file!!\n");
fflush(stderr);
exit(1);
}
FramesToMPEG(numInputFiles, outputFileName, ofp, TRUE);
if ( debugSockets ) {
fprintf(stdout, "====COMBINE SERVER: Shutting Down\n");
fflush(stdout);
}
/* tell Master server we are done */
TransmitPortNum(parallelHostName, portNum, combinePortNum);
close(outputServerSocket);
}
/*===========================================================================*
*
* WaitForOutputFile
*
* keep handling output events until we get the specified frame
* number
*
* RETURNS: nothing
*
* SIDE EFFECTS: none
*
*===========================================================================*/
void
WaitForOutputFile(number)
int number;
{
int otherSock;
static int otherSize = sizeof(struct sockaddr);
struct sockaddr otherSocket;
int frameNumber;
int32 buffer[8];
int frameStart, frameEnd;
while ( ! frameDone[number] ) {
otherSock = accept(outputServerSocket, &otherSocket, &otherSize);
if ( otherSock == -1 ) {
fprintf(stderr, "ERROR: Combine SERVER accept returned error %d\n", errno);
exit(1);
}
SafeRead(otherSock, (char *)buffer, 4);
frameNumber = ntohl(buffer[0]);
if ( frameNumber == -2 ) {
/* this is notification from non-remote process that a frame is done */
SafeRead(otherSock, (char *)buffer, 8);
frameStart = buffer[0];
frameStart = ntohl(frameStart);
frameEnd = buffer[1];
frameEnd = ntohl(frameEnd);
for ( frameNumber = frameStart; frameNumber <= frameEnd;
frameNumber++ ) {
frameDone[frameNumber] = TRUE;
}
}
close(otherSock);
}
if ( debugSockets ) {
fprintf(stdout, "WAIT FOR FRAME %d over\n", number);
fflush(stdout);
}
}
/*=====================*
* MASTER SERVER STUFF *
*=====================*/
/*===========================================================================*
*
* StartMasterServer
*
* start the master server with this process
*
* RETURNS: nothing
*
* SIDE EFFECTS: none
*
*===========================================================================*/
void
StartMasterServer(numInputFiles, paramFile, outputFileName)
int numInputFiles;
char *paramFile;
char *outputFileName;
{
FILE *filePtr;
register int ind, ind2;
int framesPerMachine;
char command[1024];
char *hostName;
int portNum;
int serverSocket;
boolean finished[MAX_MACHINES];
int numFinished;
int otherSock, otherSize;
struct sockaddr otherSocket;
int seconds;
int32 buffer[8];
int ioPortNum[MAX_IO_SERVERS];
int combinePortNum, decodePortNum;
int nextFrame;
int startFrames[MAX_MACHINES];
int numFrames[MAX_MACHINES];
int lastNumFrames[MAX_MACHINES];
int numSeconds[MAX_MACHINES];
float fps[MAX_MACHINES];
int numMachinesToEstimate;
float framesPerSecond;
float totalFPS, localFPS;
int framesDone;
float avgFPS;
char niceNess[256];
int32 startFrame, endFrame;
int numInputPorts = 0;
int numRemote = SOMAXCONN;
int totalRemote = 0;
time_t startUpBegin, startUpEnd;
time_t shutDownBegin, shutDownEnd;
float timeChunk;
time(&startUpBegin);
if ( niceProcesses ) {
sprintf(niceNess, "nice");
} else {
niceNess[0] = '\0';
}
time(&timeStart);
PrintStartStats(-1, 0);
/* create a server socket */
hostName = getenv("HOST");
if ( hostName == NULL ) {
fprintf(stderr, "ERROR: Set HOST environment variable\n");
exit(1);
}
hostEntry = gethostbyname(hostName);
if ( hostEntry == NULL ) {
fprintf(stderr, "ERROR: Could not find host %s in database\n",
hostName);
exit(1);
}
hostName = hostEntry->h_name;
serverSocket = CreateListeningSocket(&portNum);
if ( debugSockets ) {
fprintf(stdout, "---USING PORT %d\n", portNum);
}
/* START COMBINE SERVER */
sprintf(command, "%s -max_machines %d -output_server %s %d %d %s",
encoder_name, numMachines, hostName, portNum, numInputFiles, paramFile);
safe_fork(command);
/* should now listen for connection from Combine server */
otherSize = sizeof(otherSocket);
otherSock = accept(serverSocket, &otherSocket, &otherSize);
if ( otherSock == -1 ) {
fprintf(stderr, "ERROR: MASTER SERVER accept returned error %d\n", errno);
exit(1);
}
SafeRead(otherSock, (char *)(&combinePortNum), 4);
combinePortNum = ntohl(combinePortNum);
combinePortNumber = combinePortNum;
close(otherSock);
if ( debugSockets ) {
fprintf(stdout, "---MASTER SERVER: Combine port number = %d\n",
combinePortNum);
}
/* START DECODE SERVER if necessary */
if ( referenceFrame == DECODED_FRAME ) {
sprintf(command, "%s -max_machines %d -decode_server %s %d %d %s",
encoder_name, numMachines, hostName, portNum, numInputFiles, paramFile);
safe_fork(command);
/* should now listen for connection from Decode server */
otherSize = sizeof(otherSocket);
otherSock = accept(serverSocket, &otherSocket, &otherSize);
if ( otherSock == -1 ) {
fprintf(stderr, "ERROR: MASTER SERVER accept returned error %d\n", errno);
exit(1);
}
SafeRead(otherSock, (char *)(&decodePortNum), 4);
decodePortNum = ntohl(decodePortNum);
close(otherSock);
if ( debugSockets ) {
fprintf(stdout, "---MASTER SERVER: Decode port number = %d\n",
decodePortNum);
}
}
/* we are doing whole thing (if not, see above) */
framesPerMachine = numInputFiles/numMachines;
numFinished = 0;
/* count number of remote machines */
for ( ind = 0; ind < numMachines; ind++ ) {
fps[ind] = -1.0; /* illegal value as flag */
if ( remote[ind] ) {
totalRemote++;
}
}
/* DO INITIAL TIME TESTS */
nextFrame = 0;
for ( ind = 0; ind < numMachines; ind++ ) {
if ( (totalRemote != 0) && (numRemote == SOMAXCONN) ) {
/* Create an I/O server */
sprintf(command, "%s -max_machines %d -io_server %s %d %s",
encoder_name, numMachines, hostName, portNum, paramFile);
safe_fork(command);
/* should now listen for connection from I/O server */
otherSize = sizeof(otherSocket);
otherSock = accept(serverSocket, &otherSocket, &otherSize);
if ( otherSock == -1 ) {
fprintf(stderr, "ERROR: MASTER SERVER accept returned error %d\n", errno);
exit(1);
}
SafeRead(otherSock, (char *)(&ioPortNum[numInputPorts]), 4);
ioPortNum[numInputPorts] = ntohl(ioPortNum[numInputPorts]);
close(otherSock);
if ( debugSockets ) {
fprintf(stdout, "---MASTER SERVER: I/O port number = %d\n",
ioPortNum[numInputPorts]);
}
numInputPorts++;
numRemote = 0;
}
finished[ind] = FALSE;
numSeconds[ind] = 0;
startFrame = nextFrame;
if ( parallelPerfect ) {
endFrame = startFrame+((numInputFiles-startFrame)/
(numMachines-ind)) -1;
if ( forceIalign ) {
while (FType_Type(endFrame) != 'i') {endFrame++;}
}
/* always give at least 1 frame */
if ( endFrame < startFrame ) {
endFrame = startFrame;
}
/* make sure not out of bounds */
if ( endFrame >= numInputFiles ) {
endFrame = numInputFiles-1;
}
} else if ( forceIalign ) {
endFrame = startFrame+framePatternLen-1;
while (FType_Type(endFrame) != 'i') {endFrame++;}
} else {
endFrame = startFrame+parallelTestFrames-1;
}
if ( remote[ind] ) {
sprintf(command, "%s %s -l %s %s %s -child %s %d %d %d %d %d %d -frames %d %d %s",
rsh,
machineName[ind], userName[ind], niceNess,
executable[ind],
hostName, portNum, ioPortNum[numInputPorts-1],
combinePortNum, decodePortNum, ind,
remote[ind],
startFrame, endFrame,
remoteParamFile[ind]);
numRemote++;
totalRemote--;
} else {
sprintf(command, "%s %s -l %s %s %s -child %s %d %d %d %d %d %d -frames %d %d %s",
rsh,
machineName[ind], userName[ind], niceNess,
executable[ind],
hostName, portNum, ioPortNum[numInputPorts-1],
combinePortNum, decodePortNum, ind,
remote[ind],
startFrame, endFrame,
paramFile);
}
if ( debugMachines ) {
fprintf(stdout, "---%s: frames %d to %d\n",
machineName[ind],
startFrame, endFrame);
}
safe_fork(command);
nextFrame = endFrame+1;
startFrames[ind] = startFrame;
numFrames[ind] = endFrame-startFrame+1;
lastNumFrames[ind] = endFrame-startFrame+1;
}
framesDone = 0;
time(&startUpEnd);
/* now, wait for other processes to finish and boss them around */
while ( numFinished != numMachines ) {
otherSize = sizeof(otherSocket);
otherSock = accept(serverSocket, &otherSocket, &otherSize);
if ( otherSock == -1 ) {
fprintf(stderr, "ERROR: MASTER SERVER 2 accept returned error %d\n", errno);
exit(1);
}
SafeRead(otherSock, (char *)buffer, 8);
ind = ntohl(buffer[0]);
seconds = ntohl(buffer[1]);
NoteFrameDone(startFrames[ind],
startFrames[ind]+lastNumFrames[ind]-1);
numSeconds[ind] += seconds;
fps[ind] = (float)numFrames[ind]/(float)numSeconds[ind];
if ( seconds != 0 )
framesPerSecond = (float)lastNumFrames[ind]/(float)seconds;
else
framesPerSecond = (float)lastNumFrames[ind]*2.0;
framesDone += lastNumFrames[ind];
if ( nextFrame >= numInputFiles ) {
buffer[0] = htonl(-1);
buffer[1] = htonl(0);
SafeWrite(otherSock, (char *)buffer, 8);
numFinished++;
if ( debugMachines ) {
fprintf(stdout, "---%s FINISHED job (%f fps) (%d/%d done): DONE\n",
machineName[ind], framesPerSecond, numFinished,
numMachines);
}
} else {
if (numSeconds[ind] != 0) {
avgFPS = (float)numFrames[ind]/(float)numSeconds[ind];
} else {
avgFPS = 0.1; /* arbitrary small value */
}
startFrame = nextFrame;
if ( parallelTimeChunks == -1 ) { /* TAPER STUFF */
/* estimate time left */
/* frames left = numInputFiles-nextFrame */
totalFPS = 0.0;
numMachinesToEstimate = 0;
for ( ind2 = 0; ind2 < numMachines; ind2++ ) {
if ( fps[ind2] < 0.0 ) {
numMachinesToEstimate++;
} else {
totalFPS += fps[ind2];
}
}
totalFPS = (float)numMachines*
(totalFPS/(float)(numMachines-numMachinesToEstimate));
timeChunk = (float)(numInputFiles-nextFrame)/totalFPS;
fprintf(stdout, "ASSIGNING %s %.2f seconds of work\n",
machineName[ind], timeChunk);
fflush(stdout);
endFrame = nextFrame +
(int)((float)timeChunk*avgFPS) - 1;
} else {
endFrame = nextFrame +
(int)((float)parallelTimeChunks*avgFPS) - 1;
}
if ( forceIalign ) {
while (FType_Type(endFrame) != 'i') {endFrame++;}
}
if ( endFrame < startFrame ) { /* always give at least 1 frame */
endFrame = startFrame;
}
if ( endFrame >= numInputFiles ) {
endFrame = numInputFiles-1;
}
nextFrame = endFrame+1;
startFrames[ind] = startFrame;
numFrames[ind] += (endFrame-startFrame+1);
lastNumFrames[ind] = (endFrame-startFrame+1);
if ( debugMachines ) {
fprintf(stdout, "---%s FINISHED job (%f fps) (%d/%d done): next: %d to %d\n",
machineName[ind], framesPerSecond, numFinished,
numMachines, startFrame, endFrame);
}
buffer[0] = htonl(startFrame);
buffer[1] = htonl(endFrame);
SafeWrite(otherSock, (char *)buffer, 8);
}
close(otherSock);
if ( debugMachines ) {
fprintf(stdout, "---FRAMES DONE: %d\tFARMED OUT: %d\tLEFT: %d\n",
framesDone, nextFrame-framesDone, numInputFiles-nextFrame);
}
}
time(&shutDownBegin);
/* end all input servers */
IOhostName = hostName;
for ( ind = 0; ind < numInputPorts; ind++ ) {
ioPortNumber = ioPortNum[ind];
EndIOServer();
}
/* now wait for CombineServer to tell us they're done */
otherSize = sizeof(otherSocket);
otherSock = accept(serverSocket, &otherSocket, &otherSize);
if ( otherSock == -1 ) {
fprintf(stderr, "ERROR: MASTER SERVER accept returned error %d\n", errno);
exit(1);
}
SafeRead(otherSock, (char *)buffer, 4);
close(otherSock);
close(serverSocket);
time(&timeEnd);
diffTime = (int32)(timeEnd-timeStart);
time(&shutDownEnd);
for ( ind2 = 0; ind2 < 2; ind2++ ) {
if ( ind2 == 0 ) {
filePtr = stdout;
} else if ( statFile != NULL ) {
filePtr = statFile;
} else {
continue;
}
fprintf(filePtr, "\n\n");
fprintf(filePtr, "PARALLEL SUMMARY\n");
fprintf(filePtr, "----------------\n");
fprintf(filePtr, "\n");
fprintf(filePtr, "START UP TIME: %d seconds\n",
(int)startUpEnd-(int)startUpBegin);
fprintf(filePtr, "SHUT DOWN TIME: %d seconds\n",
(int)shutDownEnd-(int)shutDownBegin);
fprintf(filePtr, "%14s\tFrames\tSeconds\tFrames Per Second\tSelf Time\n",
"MACHINE");
fprintf(filePtr, "--------------\t------\t-------\t-----------------\t---------\n");
totalFPS = 0.0;
for ( ind = 0; ind < numMachines; ind++ ) {
localFPS = (float)numFrames[ind]/(float)numSeconds[ind];
fprintf(filePtr, "%14s\t%d\t%d\t%f\t\t%d\n",
machineName[ind], numFrames[ind], numSeconds[ind],
localFPS, (int)((float)numInputFiles/localFPS));
totalFPS += localFPS;
}
fprintf(filePtr, "--------------\t------\t-------\t-----------------\t---------\n");
fprintf(filePtr, "%14s\t\t%d\t%f\n", "OPTIMAL",
(int)((float)numInputFiles/totalFPS),
totalFPS);
fprintf(filePtr, "%14s\t\t%d\t%f\n", "ACTUAL", diffTime,
(float)numInputFiles/(float)diffTime);
fprintf(filePtr, "\n\n");
}
if ( statFile != NULL ) {
fclose(statFile);
}
}
/*===========================================================================*
*
* NotifyMasterDone
*
* called by a slave process; tells the master process it is done
*
* RETURNS: nothing
*
* SIDE EFFECTS: none
*
*===========================================================================*/
boolean
NotifyMasterDone(hostName, portNum, machineNumber, seconds, frameStart,
frameEnd)
char *hostName;
int portNum;
int machineNumber;
int seconds;
int *frameStart;
int *frameEnd;
{
int clientSocket;
int32 buffer[8];
time_t tempTimeStart, tempTimeEnd;
time(&tempTimeStart);
clientSocket = ConnectToSocket(hostName, portNum, &hostEntry);
buffer[0] = htonl(machineNumber);
buffer[1] = htonl(seconds);
SafeWrite(clientSocket, (char *)buffer, 8);
SafeRead(clientSocket, (char *)buffer, 8);
*frameStart = ntohl(buffer[0]);
*frameEnd = ntohl(buffer[1]);
close(clientSocket);
time(&tempTimeEnd);
IOtime += (tempTimeEnd-tempTimeStart);
return ((*frameStart) >= 0);
}
/*===========================================================================*
*
* StartDecodeServer
*
* start-up the DecodeServer with this process
* handles transfer of decoded frames to/from processes, and exits
* when master tells it to
* this is necessary only if referenceFrame == DECODED_FRAME
*
* RETURNS: nothing
*
* SIDE EFFECTS: none
*
*===========================================================================*/
void
StartDecodeServer(numInputFiles, decodeFileName, parallelHostName, portNum)
int numInputFiles;
char *decodeFileName;
char *parallelHostName;
int portNum;
{
int otherSock, otherSize;
struct sockaddr otherSocket;
int decodePortNum;
int32 buffer[8];
int frameReady;
boolean *ready;
int *waitMachine;
int *waitPort;
int *waitList;
int slaveNumber;
int slavePort;
int waitPtr;
struct hostent *nullHost = NULL;
int clientSocket;
/* should keep list of port numbers to notify when frames become ready */
ready = (boolean *) calloc(numInputFiles, sizeof(boolean));
waitMachine = (int *) calloc(numInputFiles, sizeof(int));
waitPort = (int *) malloc(numMachines*sizeof(int));
waitList = (int *) calloc(numMachines, sizeof(int));
/* once we get Decode port num, should transmit it to parallel server */
decodeServerSocket = CreateListeningSocket(&decodePortNum);
if ( debugSockets ) {
fprintf(stdout, "====DECODE USING PORT %d\n", decodePortNum);
}
TransmitPortNum(parallelHostName, portNum, decodePortNum);
frameDone = (boolean *) malloc(numInputFiles*sizeof(boolean));
memset((char *)frameDone, 0, numInputFiles*sizeof(boolean));
/* wait for ready signals and requests */
while ( TRUE ) {
otherSize = sizeof(otherSocket);
otherSock = accept(decodeServerSocket, &otherSocket, &otherSize);
if ( otherSock == -1 ) {
fprintf(stderr, "ERROR: DECODE SERVER accept returned error %d\n", errno);
exit(1);
}
SafeRead(otherSock, (char *)buffer, 4);
frameReady = buffer[0];
frameReady = ntohl(frameReady);
if ( frameReady == -2 ) {
SafeRead(otherSock, (char *)buffer, 4);
frameReady = buffer[0];
frameReady = ntohl(frameReady);
if ( debugSockets ) {
fprintf(stdout, "====DECODE SERVER: REQUEST FOR %d\n", frameReady);
fflush(stdout);
}
/* now respond if it's ready yet */
buffer[0] = frameDone[frameReady];
buffer[0] = htonl(buffer[0]);
SafeWrite(otherSock, (char *)buffer, 4);
if ( ! frameDone[frameReady] ) {
/* read machine number, port number */
SafeRead(otherSock, (char *)buffer, 8);
slaveNumber = buffer[0];
slaveNumber = ntohl(slaveNumber);
slavePort = buffer[1];
slavePort = ntohl(slavePort);
if ( debugSockets ) {
fprintf(stdout, "WAITING: SLAVE %d, PORT %d\n",
slaveNumber, slavePort);
}
waitPort[slaveNumber] = slavePort;
if ( waitMachine[frameReady] == 0 ) {
waitMachine[frameReady] = slaveNumber+1;
} else {
/* someone already waiting for this frame */
/* follow list of waiters to the end */
waitPtr = waitMachine[frameReady]-1;
while ( waitList[waitPtr] != 0 ) {
waitPtr = waitList[waitPtr]-1;
}
waitList[waitPtr] = slaveNumber+1;
waitList[slaveNumber] = 0;
}
}
} else {
frameDone[frameReady] = TRUE;
if ( debugSockets ) {
fprintf(stdout, "====DECODE SERVER: FRAME %d READY\n", frameReady);
fflush(stdout);
}
if ( waitMachine[frameReady] ) {
/* need to notify one or more machines it's ready */
waitPtr = waitMachine[frameReady]-1;
while ( waitPtr >= 0 ) {
clientSocket = ConnectToSocket(machineName[waitPtr],
waitPort[waitPtr],
&nullHost);
close(clientSocket);
waitPtr = waitList[waitPtr]-1;
}
}
}
close(otherSock);
}
if ( debugSockets ) {
fprintf(stdout, "====DECODE SERVER: Shutting Down\n");
fflush(stdout);
}
/* tell Master server we are done */
TransmitPortNum(parallelHostName, portNum, decodePortNum);
close(decodeServerSocket);
}
/*=====================*
* INTERNAL PROCEDURES *
*=====================*/
/*===========================================================================*
*
* TransmitPortNum
*
* called by the I/O or Combine server; transmits the appropriate
* port number to the master
*
* RETURNS: nothing
*
* SIDE EFFECTS: none
*
*===========================================================================*/
static void
TransmitPortNum(hostName, portNum, newPortNum)
char *hostName;
int portNum;
int newPortNum;
{
int clientSocket;
u_long data;
clientSocket = ConnectToSocket(hostName, portNum, &hostEntry);
data = htonl(newPortNum);
SafeWrite(clientSocket, (char *) &data, 4);
close(clientSocket);
}
/*===========================================================================*
*
* SafeRead
*
* safely read from the given socket; the procedure keeps reading until
* it gets the number of bytes specified
*
* RETURNS: nothing
*
* SIDE EFFECTS: none
*
*===========================================================================*/
static void
SafeRead(fd, buf, nbyte)
int fd;
char *buf;
int nbyte;
{
int numRead;
int result;
numRead = 0;
while ( numRead != nbyte ) {
result = read(fd, &buf[numRead], nbyte-numRead);
if ( result == -1 ) {
fprintf(stderr, "ERROR: read (of %d bytes (total %d) ) returned error %d\n",
nbyte-numRead, nbyte, errno);
exit(1);
}
numRead += result;
}
}
/*===========================================================================*
*
* SafeWrite
*
* safely write to the given socket; the procedure keeps writing until
* it sends the number of bytes specified
*
* RETURNS: nothing
*
* SIDE EFFECTS: none
*
*===========================================================================*/
static void
SafeWrite(fd, buf, nbyte)
int fd;
char *buf;
int nbyte;
{
int numWritten;
int result;
numWritten = 0;
while ( numWritten != nbyte ) {
result = write(fd, &buf[numWritten], nbyte-numWritten);
if ( result == -1 ) {
fprintf(stderr, "ERROR: read (of %d bytes (total %d) ) returned error %d\n",
nbyte-numWritten, nbyte, errno);
exit(1);
}
numWritten += result;
}
}
/*===========================================================================*
*
* EndIOServer
*
* called by the master process -- tells the I/O server to commit
* suicide
*
* RETURNS: nothing
*
* SIDE EFFECTS: none
*
*===========================================================================*/
static void
EndIOServer()
{
/* send signal to IO server: -1 as frame number */
GetRemoteFrame(NULL, -1);
}
/*===========================================================================*
*
* NotifyDecodeServerReady
*
* called by a slave to the Decode Server to tell it a decoded frame
* is ready and waiting
*
* RETURNS: nothing
*
* SIDE EFFECTS: none
*
*===========================================================================*/
void
NotifyDecodeServerReady(id)
int id;
{
int clientSocket;
u_long data;
time_t tempTimeStart, tempTimeEnd;
time(&tempTimeStart);
clientSocket = ConnectToSocket(IOhostName, decodePortNumber, &hostEntry);
data = htonl(id);
SafeWrite(clientSocket, (char *)&data, 4);
close(clientSocket);
time(&tempTimeEnd);
IOtime += (tempTimeEnd-tempTimeStart);
}
/*===========================================================================*
*
* WaitForDecodedFrame
*
* blah blah blah
*
* RETURNS: nothing
*
* SIDE EFFECTS: none
*
*===========================================================================*/
void
WaitForDecodedFrame(id)
int id;
{
int clientSocket;
u_long data;
int negativeTwo = -2;
int ready;
/* wait for a decoded frame */
if ( debugSockets ) {
fprintf(stdout, "WAITING FOR DECODED FRAME %d\n", id);
}
clientSocket = ConnectToSocket(IOhostName, decodePortNumber, &hostEntry);
/* first, tell DecodeServer we're waiting for this frame */
data = negativeTwo;
data = htonl(negativeTwo);
SafeWrite(clientSocket, (char *)&data, 4);
data = htonl(id);
SafeWrite(clientSocket, (char *)&data, 4);
SafeRead(clientSocket, (char *)&data, 4);
ready = data;
ready = ntohl(ready);
if ( ! ready ) {
int waitSocket;
int waitPort;
int otherSock, otherSize;
struct sockaddr otherSocket;
/* it's not ready; set up a connection and wait for decode server */
waitSocket = CreateListeningSocket(&waitPort);
/* tell decode server where we are */
data = machineNumber;
data = ntohl(data);
SafeWrite(clientSocket, (char *)&data, 4);
data = waitPort;
data = ntohl(data);
SafeWrite(clientSocket, (char *)&data, 4);
close(clientSocket);
if ( debugSockets ) {
fprintf(stdout, "SLAVE: WAITING ON SOCKET %d\n", waitPort);
fflush(stdout);
}
otherSize = sizeof(otherSocket);
otherSock = accept(waitSocket, &otherSocket, &otherSize);
if ( otherSock == -1 ) {
fprintf(stderr, "ERROR: I/O SERVER accept returned error %d\n", errno);
exit(1);
}
/* should we verify this is decode server? */
/* for now, we won't */
close(otherSock);
close(waitSocket);
} else {
close(clientSocket);
}
if ( debugSockets ) {
fprintf(stdout, "YE-HA FRAME %d IS NOW READY\n", id);
}
}
/*===========================================================================*
*
* CreateListeningSocket
*
* create a socket, using the first unused port number we can find
*
* RETURNS: the socket; portNumber is modified appropriately
*
* SIDE EFFECTS: none
*
*===========================================================================*/
static int
CreateListeningSocket(portNumber)
int *portNumber;
{
int resultSocket;
u_short tempShort;
int result;
struct sockaddr_in nameEntry;
resultSocket = socket(AF_INET, SOCK_STREAM, 0);
if ( resultSocket == -1 ) {
fprintf(stderr, "ERROR: Call to socket() gave error %d\n", errno);
exit(1);
}
memset((char *) &nameEntry, 0, sizeof(nameEntry));
nameEntry.sin_family = AF_INET;
/* find a port number that isn't used */
(*portNumber) = 2048;
do {
(*portNumber)++;
tempShort = (*portNumber);
nameEntry.sin_port = htons(tempShort);
result = bind(resultSocket, (struct sockaddr *) &nameEntry,
sizeof(struct sockaddr));
}
while ( result == -1 );
/* would really like to wait for 1+numMachines machines, but this is max
* allowable, unfortunately
*/
result = listen(resultSocket, SOMAXCONN);
if ( result == -1 ) {
fprintf(stderr, "ERROR: call to listen() gave error %d\n", errno);
exit(1);
}
return resultSocket;
}
/*===========================================================================*
*
* ConnectToSocket
*
* creates a socket and connects it to the specified socket
* hostEnt either is the host entry, or is NULL and needs to be
* found by using machineName
*
* RETURNS: the socket
*
* SIDE EFFECTS: none
*
*===========================================================================*/
static int
ConnectToSocket(machineName, portNum, hostEnt)
char *machineName;
int portNum;
struct hostent **hostEnt;
{
int resultSocket;
int result;
u_short tempShort;
struct sockaddr_in nameEntry;
if ( (*hostEnt) == NULL ) {
(*hostEnt) = gethostbyname(machineName);
if ( (*hostEnt) == NULL ) {
fprintf(stderr, "ERROR: Couldn't get host by name (%s)\n",
machineName);
exit(1);
}
}
resultSocket = socket(AF_INET, SOCK_STREAM, 0);
if ( resultSocket == -1 ) {
fprintf(stderr, "ERROR: socket returned error %d\n", errno);
exit(1);
}
nameEntry.sin_family = AF_INET;
memset((void *) nameEntry.sin_zero, 0, 8);
memcpy((void *) &(nameEntry.sin_addr.s_addr),
(void *) (*hostEnt)->h_addr_list[0],
(size_t) (*hostEnt)->h_length);
tempShort = portNum;
nameEntry.sin_port = htons(tempShort);
result = connect(resultSocket, (struct sockaddr *) &nameEntry,
sizeof(struct sockaddr));
if ( result == -1 ) {
fprintf(stderr, "ERROR: connect (ConnectToSocket, port %d) from machine %s returned error %d\n",
portNum, getenv("HOST"), errno);
exit(1);
}
return resultSocket;
}
/*===========================================================================*
*
* SendDecodedFrame
*
* Send the frame to the decode server.
*
* RETURNS: nothing
*
* SIDE EFFECTS: none
*
*===========================================================================*/
void
SendDecodedFrame(frame)
MpegFrame *frame;
{
int clientSocket;
register int y;
int negativeTwo = -2;
uint32 data;
/* send to IOServer */
clientSocket = ConnectToSocket(IOhostName, ioPortNumber, &hostEntry);
data = negativeTwo;
data = htonl(data);
SafeWrite(clientSocket, (char *)&data, 4);
data = frame->id;
data = htonl(data);
SafeWrite(clientSocket, (char *)&data, 4);
for ( y = 0; y < Fsize_y; y++ ) {
SafeWrite(clientSocket, (char *)frame->decoded_y[y], Fsize_x);
}
for (y = 0; y < (Fsize_y >> 1); y++) { /* U */
SafeWrite(clientSocket, (char *)frame->decoded_cb[y], (Fsize_x >> 1));
}
for (y = 0; y < (Fsize_y >> 1); y++) { /* V */
SafeWrite(clientSocket, (char *)frame->decoded_cr[y], (Fsize_x >> 1));
}
close(clientSocket);
}
/*===========================================================================*
*
* GetRemoteDecodedFrame
*
* get the decoded frame from the decode server.
*
* RETURNS: nothing
*
* SIDE EFFECTS:
*
*===========================================================================*/
void
GetRemoteDecodedRefFrame(frame, frameNumber)
MpegFrame *frame;
int frameNumber;
{
int clientSocket;
register int y;
int negativeThree = -3;
uint32 data;
/* send to IOServer */
clientSocket = ConnectToSocket(IOhostName, ioPortNumber, &hostEntry);
/* ask IOServer for decoded frame */
data = negativeThree;
data = htonl(data);
SafeWrite(clientSocket, (char *)&data, 4);
data = frame->id;
data = htonl(data);
SafeWrite(clientSocket, (char *)&data, 4);
for ( y = 0; y < Fsize_y; y++ ) {
SafeRead(clientSocket, (char *)frame->decoded_y[y], Fsize_x);
}
for (y = 0; y < (Fsize_y >> 1); y++) { /* U */
SafeRead(clientSocket, (char *)frame->decoded_cb[y], (Fsize_x >> 1));
}
for (y = 0; y < (Fsize_y >> 1); y++) { /* V */
SafeRead(clientSocket, (char *)frame->decoded_cr[y], (Fsize_x >> 1));
}
close(clientSocket);
}
/*********
routines handling forks, execs, PIDs and signals
save, system-style forks
apian@ise.fhg.de
*******/
/*===========================================================================*
*
* cleanup_fork
*
* Kill all the children, to be used when we get killed
*
* RETURNS: nothing
*
* SIDE EFFECTS: kills other processes
*
*===========================================================================*/
void cleanup_fork( dummy ) /* try to kill all child processes */
int dummy;
{
register int i;
for (i = 0; i < current_max_forked_pid; ++i ) {
#ifdef DEBUG_FORK
fprintf(stderr, "cleanup_fork: killing PID %d\n", ClientPid[i]);
#endif
if (kill(ClientPid[i], TERMINATE_PID_SIGNAL)) {
fprintf(stderr, "cleanup_fork: killed PID=%d failed (errno %d)\n",
ClientPid[i], errno);
}
}
}
/*===========================================================================*
*
* safe_fork
*
* fork a command
*
* RETURNS: success/failure
*
* SIDE EFFECTS: Fork the command, and save to PID so you can kil it later!
*
*===========================================================================*/
static int safe_fork(command) /* fork child process and remember its PID */
char *command;
{
static int init=0;
char *argis[MAXARGS];
register int i=1;
if (!(argis[0] = strtok(command, " \t"))) return(0); /* tokenize */
while ((argis[i] = strtok(NULL, " \t")) && i < MAXARGS) ++i;
argis[i] = NULL;
#ifdef DEBUG_FORK
{register int i=0;
fprintf(stderr, "Command %s becomes:\n", command);
while(argis[i]) {fprintf(stderr, "--%s--\n", argis[i]); ++i;} }
#endif
if (!init) { /* register clean-up routine */
signal (SIGQUIT, cleanup_fork);
signal (SIGTERM, cleanup_fork);
signal (SIGINT , cleanup_fork);
init=1;
}
if (-1 == (ClientPid[current_max_forked_pid] = fork()) ) {
perror("safe_fork: fork failed ");
return(-1);
}
if( !ClientPid[current_max_forked_pid]) { /* we are in child process */
execvp(argis[0], argis );
perror("safe_fork child: exec failed ");
exit(1);
}
#ifdef DEBUG_FORK
fprintf(stderr, "parallel: forked PID=%d\n", ClientPid[current_max_forked_pid]);
#endif
current_max_forked_pid++;
return(0);
}
|