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
|
/*
* Copyright 1999-2006 University of Chicago
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef GLOBUS_DONT_DOCUMENT_INTERNAL
/**
* @file globus_ftp_client_data.c
* @brief Read/Write functions
*/
#include "globus_i_ftp_client.h"
#include <string.h>
/**
* Data callback information structure.
*
* This structure is used to hold the data associated with a read or
* write operation. This structure will be stored in one of the
* stalled_blocks or active_blocks members of the control handle.
*
*/
typedef struct
{
/** The data buffer to be sent. */
globus_byte_t * buffer;
/** The size of the buffer. */
globus_size_t buffer_length;
/** The offset of the data block with respect to the entire file. */
globus_off_t offset;
/** Is this block the end-of-file? */
globus_bool_t eof;
/** The user's callback. */
globus_ftp_client_data_callback_t callback;
/** The user-supplied parameter to the callback. */
void * callback_arg;
/** handle this buffer is associated with (used for faking callbacks) */
globus_i_ftp_client_handle_t * i_handle;
}
globus_l_ftp_client_data_t;
static
void
globus_l_ftp_client_data_callback(
void * user_arg,
globus_ftp_control_handle_t * handle,
globus_object_t * error,
globus_byte_t * buffer,
globus_size_t length,
globus_off_t offset,
globus_bool_t eof);
static
void
globus_l_ftp_client_read_all_callback(
void * callback_arg,
globus_ftp_control_handle_t * handle,
globus_object_t * error,
globus_byte_t * buffer,
globus_size_t bytes_read,
globus_off_t offset_read,
globus_bool_t eof);
static
globus_l_ftp_client_data_t *
globus_l_ftp_client_data_new(
globus_byte_t * buffer,
globus_size_t buffer_length,
globus_off_t offset,
globus_bool_t eof,
globus_ftp_client_data_callback_t callback,
void * callback_arg);
static
void
globus_l_ftp_client_data_delete(
globus_l_ftp_client_data_t * data);
static
globus_size_t
globus_l_ftp_client_count_lf(const globus_byte_t * buf,
globus_size_t length);
#endif
/**
* Register a data buffer to handle a part of the FTP data transfer.
* @ingroup globus_ftp_client_data
*
* The data buffer will be associated with the current get being
* performed on this client handle.
*
* @param handle
* A pointer to a FTP Client handle which contains state information
* about the get operation.
* @param buffer
* A user-supplied buffer into which data from the FTP server
* will be stored.
* @param buffer_length
* The maximum amount of data that can be stored into the buffer.
* @param callback
* The function to be called once the data has been read.
* @param callback_arg
* Argument passed to the callback function
*
* @see globus_ftp_client_operationattr_set_read_all()
*/
globus_result_t
globus_ftp_client_register_read(
globus_ftp_client_handle_t * handle,
globus_byte_t * buffer,
globus_size_t buffer_length,
globus_ftp_client_data_callback_t callback,
void * callback_arg)
{
globus_object_t * err;
globus_l_ftp_client_data_t * data;
globus_result_t result;
globus_i_ftp_client_handle_t * i_handle;
GlobusFuncName(globus_ftp_client_register_read);
globus_i_ftp_client_debug_printf(3,
(stderr, "globus_ftp_client_register_read() entering\n"));
if(handle == GLOBUS_NULL)
{
err = GLOBUS_I_FTP_CLIENT_ERROR_NULL_PARAMETER("handle");
goto error;
}
if(buffer == GLOBUS_NULL)
{
err = GLOBUS_I_FTP_CLIENT_ERROR_NULL_PARAMETER("buffer");
goto error;
}
if(callback == GLOBUS_NULL)
{
err = GLOBUS_I_FTP_CLIENT_ERROR_NULL_PARAMETER("callback");
goto error;
}
if(GLOBUS_I_FTP_CLIENT_BAD_MAGIC(handle))
{
err = GLOBUS_I_FTP_CLIENT_ERROR_INVALID_PARAMETER("handle");
goto error;
}
i_handle = *handle;
globus_i_ftp_client_handle_lock(i_handle);
if(i_handle->op != GLOBUS_FTP_CLIENT_GET &&
i_handle->op != GLOBUS_FTP_CLIENT_LIST &&
i_handle->op != GLOBUS_FTP_CLIENT_NLST &&
i_handle->op != GLOBUS_FTP_CLIENT_MLSD &&
i_handle->op != GLOBUS_FTP_CLIENT_MLSR)
{
err = GLOBUS_I_FTP_CLIENT_ERROR_INVALID_OPERATION(i_handle->op);
goto unlock_error;
}
if(((i_handle->state == GLOBUS_FTP_CLIENT_HANDLE_SOURCE_RETR_OR_ERET ||
i_handle->state == GLOBUS_FTP_CLIENT_HANDLE_SOURCE_LIST ||
i_handle->state == GLOBUS_FTP_CLIENT_HANDLE_FAILURE) &&
!(i_handle->source->state == GLOBUS_FTP_CLIENT_TARGET_READY_FOR_DATA ||
i_handle->source->state == GLOBUS_FTP_CLIENT_TARGET_NEED_LAST_BLOCK) &&
!(i_handle->source->state == GLOBUS_FTP_CLIENT_TARGET_RETR ||
i_handle->source->state == GLOBUS_FTP_CLIENT_TARGET_LIST ||
i_handle->source->state == GLOBUS_FTP_CLIENT_TARGET_GETPUT_PASV_GET)) ||
i_handle->state == GLOBUS_FTP_CLIENT_HANDLE_FINALIZE)
{
/* We've already hit EOF on the data channel. We'll just
* return that information to the user.
*/
err = GLOBUS_I_FTP_CLIENT_ERROR_EOF();
goto unlock_error;
}
data = globus_l_ftp_client_data_new(buffer,
buffer_length,
0,
GLOBUS_FALSE,
callback,
callback_arg);
if(data == GLOBUS_NULL)
{
err = GLOBUS_I_FTP_CLIENT_ERROR_OUT_OF_MEMORY();
goto unlock_error;
}
if((i_handle->state == GLOBUS_FTP_CLIENT_HANDLE_SOURCE_RETR_OR_ERET ||
i_handle->state == GLOBUS_FTP_CLIENT_HANDLE_SOURCE_LIST) &&
(i_handle->source->state == GLOBUS_FTP_CLIENT_TARGET_READY_FOR_DATA ||
i_handle->source->state == GLOBUS_FTP_CLIENT_TARGET_NEED_LAST_BLOCK)
&& globus_priority_q_empty(&i_handle->stalled_blocks))
{
/*
* The data block can be sent to the control library immediately if there is
* nothing left in the stalled queue and we're in the proper state.
*/
globus_hashtable_insert(&i_handle->active_blocks,
data->buffer,
data);
i_handle->num_active_blocks++;
globus_i_ftp_client_plugin_notify_read(i_handle,
data->buffer,
data->buffer_length);
result = globus_ftp_control_data_read(
i_handle->source->control_handle,
data->buffer,
data->buffer_length,
globus_l_ftp_client_data_callback,
i_handle);
if(result != GLOBUS_SUCCESS)
{
err = globus_error_get(result);
globus_hashtable_remove(&i_handle->active_blocks,
buffer);
i_handle->num_active_blocks--;
globus_l_ftp_client_data_delete(data);
/*
* Our block may have caused the "complete" callback to
* happen, as the data callback may have assumed that our
* data block was successfully registered
*/
if(i_handle->num_active_blocks == 0 &&
(i_handle->state == GLOBUS_FTP_CLIENT_HANDLE_SOURCE_RETR_OR_ERET ||
i_handle->state == GLOBUS_FTP_CLIENT_HANDLE_SOURCE_LIST ||
i_handle->state == GLOBUS_FTP_CLIENT_HANDLE_FAILURE))
{
if(i_handle->source->state ==
GLOBUS_FTP_CLIENT_TARGET_NEED_EMPTY_QUEUE)
{
/* We are finished, kick out a complete callback */
globus_reltime_t reltime;
i_handle->source->state =
GLOBUS_FTP_CLIENT_TARGET_COMPLETED_OPERATION;
GlobusTimeReltimeSet(reltime, 0, 0);
globus_callback_register_oneshot(
GLOBUS_NULL,
&reltime,
globus_l_ftp_client_complete_kickout,
(void *) i_handle);
}
else if(i_handle->source->state ==
GLOBUS_FTP_CLIENT_TARGET_NEED_EMPTY_AND_COMPLETE)
{
i_handle->source->state =
GLOBUS_FTP_CLIENT_TARGET_NEED_COMPLETE;
}
}
goto unlock_error;
}
}
else
{
/*
* Otherwise, enqueue the data in the block priority queue to
* be processed when the data channel is ready for it
*/
globus_priority_q_enqueue(&i_handle->stalled_blocks,
data,
&data->offset);
}
globus_i_ftp_client_handle_unlock(i_handle);
globus_i_ftp_client_debug_printf(3,
(stderr, "globus_ftp_client_register_read() exiting\n"));
return GLOBUS_SUCCESS;
unlock_error:
globus_i_ftp_client_handle_unlock(i_handle);
error:
globus_i_ftp_client_debug_printf(3,
(stderr, "globus_ftp_client_register_read() exiting with error\n"));
return globus_error_put(err);
}
/* globus_ftp_client_register_read() */
/**
* Register a data buffer to handle a part of the FTP data transfer.
* @ingroup globus_ftp_client_data
*
* The data buffer will be associated with the current "put" being
* performed on this client handle. Multiple data buffers may be
* registered on a handle at once. There is no guaranteed ordering of
* the data callbacks in extended block mode.
*
* @param handle
* A pointer to a FTP Client handle which contains state information
* about the put operation.
* @param buffer
* A user-supplied buffer containing the data to write to the server.
* @param buffer_length
* The size of the buffer to be written.
* @param offset
* The offset of the buffer to be written. In extended-block
* mode, the data does not need to be sent in order. In stream
* mode (the default), data must be sent in sequential
* order. The behavior is undefined if multiple writes overlap.
* @param eof
* @param callback
* The function to be called once the data has been written.
* @param callback_arg
* Argument passed to the callback function
*/
globus_result_t
globus_ftp_client_register_write(
globus_ftp_client_handle_t * handle,
globus_byte_t * buffer,
globus_size_t buffer_length,
globus_off_t offset,
globus_bool_t eof,
globus_ftp_client_data_callback_t callback,
void * callback_arg)
{
globus_object_t * err;
globus_l_ftp_client_data_t * data;
globus_result_t result;
globus_i_ftp_client_handle_t * i_handle;
GlobusFuncName(globus_ftp_client_register_write);
globus_i_ftp_client_debug_printf(3,
(stderr, "globus_ftp_client_register_write() entering\n"));
if(handle == GLOBUS_NULL)
{
err = GLOBUS_I_FTP_CLIENT_ERROR_NULL_PARAMETER("handle");
goto error;
}
if(buffer == GLOBUS_NULL)
{
err = GLOBUS_I_FTP_CLIENT_ERROR_NULL_PARAMETER("buffer");
goto error;
}
if(callback == GLOBUS_NULL)
{
err = GLOBUS_I_FTP_CLIENT_ERROR_NULL_PARAMETER("callback");
goto error;
}
if(GLOBUS_I_FTP_CLIENT_BAD_MAGIC(handle))
{
err = GLOBUS_I_FTP_CLIENT_ERROR_INVALID_PARAMETER("handle");
goto error;
}
i_handle = *(globus_i_ftp_client_handle_t **) handle;
globus_i_ftp_client_handle_lock(i_handle);
if(i_handle->op != GLOBUS_FTP_CLIENT_PUT)
{
err = GLOBUS_I_FTP_CLIENT_ERROR_INVALID_OPERATION(i_handle->op);
goto unlock_error;
}
if((i_handle->state == GLOBUS_FTP_CLIENT_HANDLE_DEST_STOR_OR_ESTO &&
!(i_handle->dest->state == GLOBUS_FTP_CLIENT_TARGET_READY_FOR_DATA ||
i_handle->dest->state == GLOBUS_FTP_CLIENT_TARGET_NEED_LAST_BLOCK) &&
i_handle->dest->state != GLOBUS_FTP_CLIENT_TARGET_STOR &&
i_handle->dest->state != GLOBUS_FTP_CLIENT_TARGET_GETPUT_PASV_PUT) ||
i_handle->state == GLOBUS_FTP_CLIENT_HANDLE_FINALIZE)
{
/* We've already sent EOF. We'll just return that information
* to the user.
*/
err = GLOBUS_I_FTP_CLIENT_ERROR_EOF();
goto unlock_error;
}
if(i_handle->partial_offset != -1)
{
offset -= i_handle->partial_offset;
}
data = globus_l_ftp_client_data_new(buffer,
buffer_length,
offset,
eof,
callback,
callback_arg);
if(data == GLOBUS_NULL)
{
err = GLOBUS_I_FTP_CLIENT_ERROR_OUT_OF_MEMORY();
goto unlock_error;
}
if(i_handle->state == GLOBUS_FTP_CLIENT_HANDLE_DEST_STOR_OR_ESTO &&
i_handle->dest->state == GLOBUS_FTP_CLIENT_TARGET_READY_FOR_DATA &&
globus_priority_q_empty(&i_handle->stalled_blocks))
{
/*
* The data block can be processed immediately if there is
* nothing left in the stalled queue and we're in the proper state.
*/
globus_hashtable_insert(&i_handle->active_blocks,
data->buffer,
data);
i_handle->num_active_blocks++;
globus_i_ftp_client_plugin_notify_write(i_handle,
data->buffer,
data->buffer_length,
data->offset,
data->eof);
/* We don't check for state changes here. Because we've
* already added this block to the hashtable and num_blocks,
* we don't need to, because the transfer can't finish without
* us.
*/
result = globus_ftp_control_data_write(
i_handle->dest->control_handle,
data->buffer,
data->buffer_length,
data->offset,
data->eof,
globus_l_ftp_client_data_callback,
i_handle);
if(result != GLOBUS_SUCCESS)
{
err = globus_error_get(result);
globus_hashtable_remove(&i_handle->active_blocks,
buffer);
i_handle->num_active_blocks--;
globus_l_ftp_client_data_delete(data);
/*
* Our block may have caused the "complete" callback to
* happen, as the data callback may have assumed that our
* data block was successfully registered
*/
if(i_handle->num_active_blocks == 0 &&
(i_handle->state == GLOBUS_FTP_CLIENT_HANDLE_DEST_STOR_OR_ESTO ||
i_handle->state == GLOBUS_FTP_CLIENT_HANDLE_FAILURE))
{
if(i_handle->dest->state ==
GLOBUS_FTP_CLIENT_TARGET_NEED_EMPTY_QUEUE)
{
/* We are finished, kick out a complete callback */
globus_reltime_t reltime;
i_handle->dest->state =
GLOBUS_FTP_CLIENT_TARGET_COMPLETED_OPERATION;
GlobusTimeReltimeSet(reltime, 0, 0);
globus_callback_register_oneshot(
GLOBUS_NULL,
&reltime,
globus_l_ftp_client_complete_kickout,
(void *) i_handle);
}
else if(i_handle->dest->state ==
GLOBUS_FTP_CLIENT_TARGET_NEED_EMPTY_AND_COMPLETE)
{
i_handle->dest->state =
GLOBUS_FTP_CLIENT_TARGET_NEED_COMPLETE;
}
}
goto unlock_error;
}
}
else
{
/*
* Otherwise, enqueue the data in the block priority queue to
* be processed when the data channel is ready for it
*/
globus_priority_q_enqueue(&i_handle->stalled_blocks,
data,
&data->offset);
}
globus_i_ftp_client_handle_unlock(i_handle);
globus_i_ftp_client_debug_printf(3,
(stderr, "globus_ftp_client_register_write() exiting\n"));
return GLOBUS_SUCCESS;
unlock_error:
globus_i_ftp_client_handle_unlock(i_handle);
error:
globus_i_ftp_client_debug_printf(3,
(stderr, "globus_ftp_client_register_write() exiting with error\n"));
return globus_error_put(err);
}
/* globus_ftp_client_register_write() */
#ifndef GLOBUS_DONT_DOCUMENT_INTERNAL
/*-----------------------------------------------------------------------------
* Local/Internal Functions.
*-----------------------------------------------------------------------------
*/
/**
* Priority queue comparison function.
*
* This function is called to decide where in the stalled_blocks
* priority queue to insert a data block.
*
* @param priority_1
* @param priority_2
*/
int
globus_i_ftp_client_data_cmp(
void * priority_1,
void * priority_2)
{
globus_off_t * offset1;
globus_off_t * offset2;
offset1 = (globus_off_t *) priority_1;
offset2 = (globus_off_t *) priority_2;
return ((*offset1) > (*offset2));
}
/* globus_i_ftp_client_data_cmp() */
/**
* Allocation and initialize a globus_l_ftp_client_data_t.
*
* @param buffer
* @param buffer_length
* @param offset
* @param eof
* @param callback
* User-supplied callback function.
* @param callback_arg
* User-supplied callback argument.
*/
static
globus_l_ftp_client_data_t *
globus_l_ftp_client_data_new(
globus_byte_t * buffer,
globus_size_t buffer_length,
globus_off_t offset,
globus_bool_t eof,
globus_ftp_client_data_callback_t callback,
void * callback_arg)
{
globus_l_ftp_client_data_t * d;
d = globus_libc_malloc(sizeof(globus_l_ftp_client_data_t));
if(!d)
{
return GLOBUS_NULL;
}
d->buffer = buffer;
d->buffer_length = buffer_length;
d->offset = offset;
d->callback = callback;
d->callback_arg = callback_arg;
d->eof = eof;
return d;
}
/* globus_l_ftp_client_data_new() */
/**
* Delete a globus_l_ftp_client_data_t.
*
* @param data
* The object to delete.
*/
static
void
globus_l_ftp_client_data_delete(
globus_l_ftp_client_data_t * data)
{
globus_libc_free(data);
}
/* globus_l_ftp_client_data_delete() */
/**
* Internal callback function to handle a data callback from the
* control library. This function notifies the plugins that the data
* block has been handled, and then calls the user callback
* associated with this data block.
*
* If any error occurs during data block handling in the control
* library, the data channels will be destroyed, so we should consider
* any error passed to this function as moving the handle into the
* failure state.
*
*/
static
void
globus_l_ftp_client_data_callback(
void * user_arg,
globus_ftp_control_handle_t * handle,
globus_object_t * error,
globus_byte_t * buffer,
globus_size_t length,
globus_off_t offset,
globus_bool_t eof)
{
globus_i_ftp_client_handle_t * client_handle;
globus_l_ftp_client_data_t * data;
globus_bool_t dispatch_final = GLOBUS_FALSE;
globus_i_ftp_client_target_t * target;
globus_i_ftp_client_target_t ** ptarget;
globus_off_t user_offset;
globus_bool_t user_eof;
globus_i_ftp_client_debug_printf(3, (stderr,
"globus_l_ftp_client_data_callback() entering\n"));
client_handle = (globus_i_ftp_client_handle_t *) user_arg;
globus_assert(!GLOBUS_I_FTP_CLIENT_BAD_MAGIC((&client_handle)));
globus_i_ftp_client_handle_lock(client_handle);
if(client_handle->op == GLOBUS_FTP_CLIENT_GET ||
client_handle->op == GLOBUS_FTP_CLIENT_LIST ||
client_handle->op == GLOBUS_FTP_CLIENT_NLST ||
client_handle->op == GLOBUS_FTP_CLIENT_MLSD ||
client_handle->op == GLOBUS_FTP_CLIENT_MLSR)
{
ptarget = &client_handle->source;
}
else
{
ptarget = &client_handle->dest;
}
target = *ptarget;
globus_i_ftp_client_debug_states(4, client_handle);
if(target->mode == GLOBUS_FTP_CONTROL_MODE_STREAM)
{
offset += client_handle->base_offset;
}
user_offset = (client_handle->partial_offset != -1)
? offset + client_handle->partial_offset
: offset;
/* Don't update the stream_offset on 0 length buffers; these may come in
* with an offset of 0 when an error occurs or during restart,
* which will clobber what we've already seen
*/
if(target->mode == GLOBUS_FTP_CONTROL_MODE_STREAM &&
target->type == GLOBUS_FTP_CONTROL_TYPE_ASCII && length != 0)
{
(void) globus_ftp_client_restart_marker_set_ascii_offset(
&client_handle->restart_marker,
offset+length,
offset+length+globus_l_ftp_client_count_lf(buffer, length));
}
else if(target->mode == GLOBUS_FTP_CONTROL_MODE_EXTENDED_BLOCK &&
length != 0)
{
(void) globus_ftp_client_restart_marker_insert_range(
&client_handle->restart_marker,
offset,
offset+length);
}
/* Notify plugins that this data block has been processed. The plugin
* gets the same (adjusted) view of the offset that the user gets. */
globus_i_ftp_client_plugin_notify_data(client_handle,
error,
buffer,
length,
user_offset,
eof);
data = (globus_l_ftp_client_data_t *)
globus_hashtable_remove(&client_handle->active_blocks,
buffer);
globus_assert(data);
/*
* Figure out if this was a fatal error.
* The plugins had a chance to restart when we notified them of the failure.
*/
if(error &&
(client_handle->state == GLOBUS_FTP_CLIENT_HANDLE_SOURCE_RETR_OR_ERET ||
client_handle->state == GLOBUS_FTP_CLIENT_HANDLE_DEST_STOR_OR_ESTO))
{
if(!client_handle->err)
{
client_handle->err = globus_object_copy(error);
}
client_handle->state = GLOBUS_FTP_CLIENT_HANDLE_FAILURE;
}
if(client_handle->state == GLOBUS_FTP_CLIENT_HANDLE_RESTART &&
(client_handle->op == GLOBUS_FTP_CLIENT_GET ||
client_handle->op == GLOBUS_FTP_CLIENT_LIST ||
client_handle->op == GLOBUS_FTP_CLIENT_NLST ||
client_handle->op == GLOBUS_FTP_CLIENT_MLSD ||
client_handle->op == GLOBUS_FTP_CLIENT_MLSR ))
{
user_eof = GLOBUS_FALSE;
}
else
{
user_eof = eof;
}
/* Call back to the user */
globus_i_ftp_client_handle_unlock(client_handle);
data->callback(
data->callback_arg,
client_handle->handle,
error,
buffer,
length,
user_offset,
user_eof);
globus_l_ftp_client_data_delete(data);
globus_i_ftp_client_handle_lock(client_handle);
/* gave up lock, target could have gone bad, reload */
target = *ptarget;
/*
* Figure out if we need to call the completion function
* once this block's callback has been done
*/
client_handle->num_active_blocks--;
/* if eof now, or eof was received before */
if(eof ||
(target && (target->state == GLOBUS_FTP_CLIENT_TARGET_NEED_EMPTY_QUEUE ||
target->state == GLOBUS_FTP_CLIENT_TARGET_NEED_EMPTY_AND_COMPLETE ||
target->state == GLOBUS_FTP_CLIENT_TARGET_FAULT)))
{
if(client_handle->state == GLOBUS_FTP_CLIENT_HANDLE_SOURCE_RETR_OR_ERET ||
client_handle->state == GLOBUS_FTP_CLIENT_HANDLE_DEST_STOR_OR_ESTO ||
client_handle->state == GLOBUS_FTP_CLIENT_HANDLE_SOURCE_LIST ||
client_handle->state == GLOBUS_FTP_CLIENT_HANDLE_FAILURE)
{
if(target->state == GLOBUS_FTP_CLIENT_TARGET_READY_FOR_DATA ||
target->state ==
GLOBUS_FTP_CLIENT_TARGET_NEED_EMPTY_AND_COMPLETE)
{
if(client_handle->num_active_blocks == 0)
{
/*
* This is the last data block, and the response to the RETR,
* ERET, STOR, or ESTO operation has not been received,
* change state to prevent any subsequent data blocks being
* queued.
*/
target->state =
GLOBUS_FTP_CLIENT_TARGET_NEED_COMPLETE;
}
else
{
target->state =
GLOBUS_FTP_CLIENT_TARGET_NEED_EMPTY_AND_COMPLETE;
}
}
else if(target->state == GLOBUS_FTP_CLIENT_TARGET_NEED_LAST_BLOCK ||
target->state == GLOBUS_FTP_CLIENT_TARGET_NEED_EMPTY_QUEUE ||
target->state == GLOBUS_FTP_CLIENT_TARGET_FAULT)
{
/*
* If this is the last data block, and the response to the RETR,
* ERET, STOR, or ESTO operation has been received, then we
* must clean up after dispatching this callback.
*/
if(client_handle->num_active_blocks == 0)
{
dispatch_final = GLOBUS_TRUE;
target->state = GLOBUS_FTP_CLIENT_TARGET_COMPLETED_OPERATION;
}
else if(target->state != GLOBUS_FTP_CLIENT_TARGET_FAULT)
{
target->state = GLOBUS_FTP_CLIENT_TARGET_NEED_EMPTY_QUEUE;
}
}
}
}
if(dispatch_final)
{
/*
* This is the end of the transfer. We call into the transfer
* code to clean up things and call back to the user.
*
* This function is a bit weird in that you call it locked,
* and it returns unlocked.
*/
globus_i_ftp_client_transfer_complete(client_handle);
}
else
{
globus_i_ftp_client_handle_unlock(client_handle);
}
globus_i_ftp_client_debug_printf(3, (stderr,
"globus_l_ftp_client_data_callback() exiting\n"));
globus_i_ftp_client_debug_states(4, client_handle);
return;
}
/* globus_l_ftp_client_data_callback() */
/**
* Internal callback function to handle a read_all data callback from the
* control library. This function notifies the plugins that the data
* block has been handled, and then calls the user callback
* associated with this data block.
*
* When processing a read_all, intermediate callbacks may be issued if the
* user has requested it by setting the callback for the read_all attribute.
*
* If any error occurs during data block handling in the control
* library, the data channels will be destroyed, so we should consider
* any error passed to this function as moving the handle into the
* failure state.
*
*/
static
void
globus_l_ftp_client_read_all_callback(
void * callback_arg,
globus_ftp_control_handle_t * handle,
globus_object_t * error,
globus_byte_t * buffer,
globus_size_t bytes_read,
globus_off_t offset_read,
globus_bool_t eof)
{
globus_i_ftp_client_handle_t * client_handle;
globus_l_ftp_client_data_t * data;
globus_bool_t dispatch_final = GLOBUS_FALSE;
globus_i_ftp_client_target_t * target;
globus_ftp_client_data_callback_t read_all_callback = GLOBUS_NULL;
void * read_all_callback_arg = GLOBUS_NULL;
globus_off_t total_bytes_read;
globus_off_t user_offset;
client_handle = (globus_i_ftp_client_handle_t *) callback_arg;
globus_assert(!GLOBUS_I_FTP_CLIENT_BAD_MAGIC((&client_handle)));
globus_i_ftp_client_handle_lock(client_handle);
target = client_handle->source;
globus_assert(client_handle->op == GLOBUS_FTP_CLIENT_GET ||
client_handle->op == GLOBUS_FTP_CLIENT_LIST ||
client_handle->op == GLOBUS_FTP_CLIENT_NLST ||
client_handle->op == GLOBUS_FTP_CLIENT_MLSD ||
client_handle->op == GLOBUS_FTP_CLIENT_MLSR );
globus_i_ftp_client_debug_printf(3, (stderr,
"globus_l_ftp_client_read_all_callback() entering\n"));
globus_i_ftp_client_debug_states(4, client_handle);
if(target->mode == GLOBUS_FTP_CONTROL_MODE_STREAM)
{
offset_read += client_handle->base_offset;
}
if(bytes_read > 0 &&
offset_read + bytes_read > client_handle->read_all_biggest_offset)
{
client_handle->read_all_biggest_offset = offset_read + bytes_read;
}
user_offset = (client_handle->partial_offset == -1)
? offset_read
: offset_read + client_handle->partial_offset;
/* Notify plugins that this data block has been processed. */
globus_i_ftp_client_plugin_notify_data(client_handle,
error,
buffer + offset_read,
bytes_read,
user_offset,
eof);
if(!eof)
{
data = (globus_l_ftp_client_data_t *)
globus_hashtable_lookup(&client_handle->active_blocks,
buffer);
}
else
{
data = (globus_l_ftp_client_data_t *)
globus_hashtable_remove(&client_handle->active_blocks,
buffer);
}
globus_assert(data);
/*
* Figure out if this was a fatal error.
* The plugins had a chance to restart when we notified them of the failure.
*/
if(error &&
(client_handle->state == GLOBUS_FTP_CLIENT_HANDLE_SOURCE_RETR_OR_ERET ||
client_handle->state == GLOBUS_FTP_CLIENT_HANDLE_DEST_STOR_OR_ESTO))
{
if(!client_handle->err)
{
client_handle->err = globus_object_copy(error);
}
client_handle->state = GLOBUS_FTP_CLIENT_HANDLE_FAILURE;
}
/*
* Figure out if we need to call the completion function
* once this block's callback has been done
*/
if(eof)
{
client_handle->num_active_blocks--;
if(client_handle->state == GLOBUS_FTP_CLIENT_HANDLE_SOURCE_RETR_OR_ERET ||
client_handle->state == GLOBUS_FTP_CLIENT_HANDLE_DEST_STOR_OR_ESTO ||
client_handle->state == GLOBUS_FTP_CLIENT_HANDLE_SOURCE_LIST ||
client_handle->state == GLOBUS_FTP_CLIENT_HANDLE_FAILURE)
{
if(target->state == GLOBUS_FTP_CLIENT_TARGET_READY_FOR_DATA ||
target->state ==
GLOBUS_FTP_CLIENT_TARGET_NEED_EMPTY_AND_COMPLETE)
{
if(client_handle->num_active_blocks == 0)
{
/*
* This is the last data block, and the response to the RETR,
* ERET, STOR, or ESTO operation has not been received,
* change state to prevent any subsequent data blocks being
* queued.
*/
target->state =
GLOBUS_FTP_CLIENT_TARGET_NEED_COMPLETE;
}
else
{
target->state =
GLOBUS_FTP_CLIENT_TARGET_NEED_EMPTY_AND_COMPLETE;
}
}
else if(target->state == GLOBUS_FTP_CLIENT_TARGET_NEED_LAST_BLOCK ||
target->state == GLOBUS_FTP_CLIENT_TARGET_NEED_EMPTY_QUEUE ||
target->state == GLOBUS_FTP_CLIENT_TARGET_FAULT)
{
/*
* If this is the last data block, and the response to the RETR,
* ERET, STOR, or ESTO operation has been received, then we
* must clean up after dispatching this callback.
*/
if(client_handle->num_active_blocks == 0)
{
dispatch_final = GLOBUS_TRUE;
target->state = GLOBUS_FTP_CLIENT_TARGET_COMPLETED_OPERATION;
}
else if(target->state != GLOBUS_FTP_CLIENT_TARGET_FAULT)
{
target->state = GLOBUS_FTP_CLIENT_TARGET_NEED_EMPTY_QUEUE;
}
}
}
}
if(client_handle->state == GLOBUS_FTP_CLIENT_HANDLE_RESTART)
{
if(client_handle->op == GLOBUS_FTP_CLIENT_GET ||
client_handle->op == GLOBUS_FTP_CLIENT_LIST ||
client_handle->op == GLOBUS_FTP_CLIENT_NLST ||
client_handle->op == GLOBUS_FTP_CLIENT_MLSD ||
client_handle->op == GLOBUS_FTP_CLIENT_MLSR)
{
eof = GLOBUS_FALSE;
dispatch_final = GLOBUS_FALSE;
}
}
globus_assert(
client_handle->state == GLOBUS_FTP_CLIENT_HANDLE_SOURCE_RETR_OR_ERET
|| client_handle->state == GLOBUS_FTP_CLIENT_HANDLE_DEST_STOR_OR_ESTO
|| client_handle->state == GLOBUS_FTP_CLIENT_HANDLE_SOURCE_LIST
|| client_handle->state == GLOBUS_FTP_CLIENT_HANDLE_FAILURE
|| client_handle->state == GLOBUS_FTP_CLIENT_HANDLE_ABORT
|| client_handle->state == GLOBUS_FTP_CLIENT_HANDLE_RESTART);
/* Don't update the stream_offset on 0 length buffers; these may come in
* with an offset of 0 when an error occurs or during restart,
* which will clobber what we've already seen
*/
if(target->mode == GLOBUS_FTP_CONTROL_MODE_STREAM &&
target->type == GLOBUS_FTP_CONTROL_TYPE_ASCII && bytes_read != 0)
{
client_handle->restart_marker.stream.offset = bytes_read;
client_handle->restart_marker.stream.ascii_offset =
bytes_read +
globus_l_ftp_client_count_lf(buffer + offset_read, bytes_read);
}
if(target->attr->read_all)
{
read_all_callback = target->attr->read_all_intermediate_callback;
read_all_callback_arg =
target->attr->read_all_intermediate_callback_arg;
}
total_bytes_read = client_handle->read_all_biggest_offset;
globus_i_ftp_client_handle_unlock(client_handle);
if(read_all_callback)
{
(*read_all_callback)(read_all_callback_arg,
client_handle->handle,
error,
buffer + offset_read,
bytes_read,
user_offset,
eof);
}
user_offset = (client_handle->partial_offset == -1)
? 0
: client_handle->partial_offset;
if(eof)
{
data->callback(
data->callback_arg,
client_handle->handle,
error,
buffer,
total_bytes_read,
user_offset,
eof);
globus_l_ftp_client_data_delete(data);
}
if(dispatch_final)
{
/*
* This is the end of the transfer. We call into the transfer
* code to clean up things and call back to the user.
*
* This function is a bit weird in that you call it locked,
* and it returns unlocked.
*/
globus_i_ftp_client_handle_lock(client_handle);
globus_i_ftp_client_transfer_complete(client_handle);
}
globus_i_ftp_client_debug_printf(3, (stderr,
"globus_l_ftp_client_read_all_callback() exiting\n"));
globus_i_ftp_client_debug_states(4, client_handle);
return;
}
/* globus_l_ftp_client_read_all_callback() */
/**
* Dispatch buffers from the stalled_blocks queue to the control API.
*
* This function is called once we know that the data connection has
* been established for a get or put request (via a 125 or 150
* response). This code relies on the control library's being able to
* deal with multiple blocks queued with it at once.
*
* The blocks are sent in the order of their starting offset. If
* blocks overlap, then the behavior will probably not be correct.
*
* @param handle
* The client handle associated with this request.
*/
globus_object_t *
globus_i_ftp_client_data_dispatch_queue(
globus_i_ftp_client_handle_t * handle)
{
globus_i_ftp_client_target_t * target;
globus_result_t result;
globus_object_t * err;
globus_i_ftp_client_debug_printf(1,
(stderr, "globus_i_ftp_client_data_dispatch_queue() entering\n"));
if(handle->op == GLOBUS_FTP_CLIENT_GET ||
handle->op == GLOBUS_FTP_CLIENT_LIST ||
handle->op == GLOBUS_FTP_CLIENT_NLST ||
handle->op == GLOBUS_FTP_CLIENT_MLSD ||
handle->op == GLOBUS_FTP_CLIENT_MLSR)
{
target = handle->source;
}
else
{
target = handle->dest;
}
while(! globus_priority_q_empty(&handle->stalled_blocks) &&
handle->state != GLOBUS_FTP_CLIENT_HANDLE_RESTART &&
handle->state != GLOBUS_FTP_CLIENT_HANDLE_ABORT)
{
globus_l_ftp_client_data_t * data;
/*
* Do not remove from the queue until the block is sent to the
* control library. This makes any block which is being
* handled by register_read or register_write in another
* thread get sent to the control library after the current
* head of the queue.
*/
data = (globus_l_ftp_client_data_t *)
globus_priority_q_first(&handle->stalled_blocks);
globus_hashtable_insert(&handle->active_blocks,
data->buffer,
data);
handle->num_active_blocks++;
globus_assert(handle->op == GLOBUS_FTP_CLIENT_LIST ||
handle->op == GLOBUS_FTP_CLIENT_NLST ||
handle->op == GLOBUS_FTP_CLIENT_MLSD ||
handle->op == GLOBUS_FTP_CLIENT_MLSR ||
handle->op == GLOBUS_FTP_CLIENT_GET ||
handle->op == GLOBUS_FTP_CLIENT_PUT);
switch(handle->op)
{
case GLOBUS_FTP_CLIENT_GET:
case GLOBUS_FTP_CLIENT_LIST:
case GLOBUS_FTP_CLIENT_NLST:
case GLOBUS_FTP_CLIENT_MLSD:
case GLOBUS_FTP_CLIENT_MLSR:
globus_i_ftp_client_plugin_notify_read(handle,
data->buffer,
data->buffer_length);
if(target->attr->read_all)
{
globus_i_ftp_client_target_t * target;
/* The base offset is used in stream mode to keep track of
* any restart marker's influence on the offset of the data
* coming on a data channel. In extended block mode, this
* is explicit in the extended block headers
*/
handle->base_offset = 0;
target = handle->source;
if(handle->restart_marker.type ==
GLOBUS_FTP_CLIENT_RESTART_STREAM &&
handle->restart_marker.stream.offset > handle->base_offset)
{
handle->base_offset = handle->restart_marker.stream.offset;
}
result = globus_ftp_control_data_read_all(
target->control_handle,
data->buffer,
data->buffer_length,
globus_l_ftp_client_read_all_callback,
handle);
}
else
{
result = globus_ftp_control_data_read(
handle->source->control_handle,
data->buffer,
data->buffer_length,
globus_l_ftp_client_data_callback,
handle);
}
break;
case GLOBUS_FTP_CLIENT_PUT:
globus_i_ftp_client_plugin_notify_write(handle,
data->buffer,
data->buffer_length,
data->offset,
data->eof);
result = globus_ftp_control_data_write(
handle->dest->control_handle,
data->buffer,
data->buffer_length,
data->offset,
data->eof,
globus_l_ftp_client_data_callback,
handle);
break;
default: /* No other states should occur */
globus_assert(0 && "Unexpected state");
}
if(result == GLOBUS_SUCCESS)
{
globus_priority_q_remove(&handle->stalled_blocks,
data);
}
else if((handle->state == GLOBUS_FTP_CLIENT_HANDLE_SOURCE_RETR_OR_ERET ||
handle->state == GLOBUS_FTP_CLIENT_HANDLE_DEST_STOR_OR_ESTO ||
handle->state == GLOBUS_FTP_CLIENT_HANDLE_FAILURE) &&
(target->state == GLOBUS_FTP_CLIENT_TARGET_NEED_COMPLETE ||
target->state == GLOBUS_FTP_CLIENT_TARGET_NEED_EMPTY_QUEUE ||
target->state ==
GLOBUS_FTP_CLIENT_TARGET_NEED_EMPTY_AND_COMPLETE))
{
/*
* Registration can fail if the data connection has been
* closed.
*
* In this case, the callback can be sent with no
* data and EOF set to true.
*/
err = globus_error_get(result);
globus_priority_q_remove(&handle->stalled_blocks,
data);
globus_hashtable_remove(&handle->active_blocks,
data->buffer);
handle->num_active_blocks--;
globus_i_ftp_client_plugin_notify_data(handle,
err,
data->buffer,
0,
0,
GLOBUS_TRUE);
globus_i_ftp_client_handle_unlock(handle);
data->callback(data->callback_arg,
handle->handle,
err,
data->buffer,
0,
0,
GLOBUS_TRUE);
globus_object_free(err);
err = GLOBUS_SUCCESS;
globus_i_ftp_client_handle_lock(handle);
}
else
{
globus_hashtable_remove(&handle->active_blocks,
data->buffer);
handle->num_active_blocks--;
err = globus_error_get(result);
if(handle->state == GLOBUS_FTP_CLIENT_HANDLE_RESTART)
{
globus_object_free(err);
err = GLOBUS_SUCCESS;
}
globus_i_ftp_client_debug_printf(1, (stderr,
"globus_i_ftp_client_data_dispatch_queue() exiting with error\n"));
return err;
}
}
globus_i_ftp_client_debug_printf(1, (stderr,
"globus_i_ftp_client_data_dispatch_queue() exiting\n"));
return GLOBUS_SUCCESS;
}
/* globus_i_ftp_client_data_dispatch_queue() */
/**
* Flush any queued-but-not-processed data buffers from the client
* handle.
*
* This function is called as part of the teardown after an operation
* fails. If the failure occurs before the control connection is ready
* for data blocks, then any data buffers from the user will be queued
* in the stalled blocks queue.
*
* @param handle
* Client handle to process.
*
*/
void
globus_i_ftp_client_data_flush(
globus_i_ftp_client_handle_t * handle)
{
globus_fifo_t tmp;
globus_i_ftp_client_debug_printf(1,
(stderr, "globus_i_ftp_client_data_flush() entering\n"));
globus_fifo_init(&tmp);
while(!globus_priority_q_empty(&handle->stalled_blocks))
{
globus_fifo_enqueue(&tmp,
globus_priority_q_dequeue(&handle->stalled_blocks));
}
while(!globus_fifo_empty(&tmp))
{
globus_l_ftp_client_data_t * data;
data = (globus_l_ftp_client_data_t *)
globus_fifo_dequeue(&tmp);
globus_i_ftp_client_plugin_notify_data(handle,
handle->err,
data->buffer,
0/*length*/,
0/*offset*/,
GLOBUS_TRUE /*eof*/);
globus_i_ftp_client_handle_unlock(handle);
data->callback(data->callback_arg,
handle->handle,
handle->err,
data->buffer,
0,
0,
GLOBUS_TRUE);
globus_i_ftp_client_handle_lock(handle);
globus_libc_free(data);
}
globus_fifo_destroy(&tmp);
globus_i_ftp_client_debug_printf(1,
(stderr, "globus_i_ftp_client_data_flush() exiting\n"));
}
/* globus_i_ftp_client_data_flush() */
void
globus_l_ftp_client_complete_kickout(
void * user_arg)
{
globus_i_ftp_client_handle_t * handle;
globus_i_ftp_client_debug_printf(1,
(stderr, "globus_l_ftp_client_complete_kickout() entering\n"));
handle = (globus_i_ftp_client_handle_t *) user_arg;
globus_assert(!GLOBUS_I_FTP_CLIENT_BAD_MAGIC((&handle)));
globus_i_ftp_client_handle_lock(handle);
globus_i_ftp_client_transfer_complete(handle);
globus_i_ftp_client_debug_printf(1,
(stderr, "globus_l_ftp_client_complete_kickout() exiting\n"));
}
/* globus_l_ftp_client_complete_kickout() */
/**
* Count the number of newline characters in a buffer.
*/
static
globus_size_t
globus_l_ftp_client_count_lf(
const globus_byte_t * buf,
globus_size_t length)
{
globus_size_t i;
globus_size_t count = 0;
for(i = 0; i < length; i++)
{
if(buf[i] == '\n') count++;
}
return count;
}
/* globus_l_ftp_client_count_lf() */
#endif
|