#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <sys/timeb.h>
#include <string.h>
#ifdef __linux__
#include <unistd.h>
#else
#include <windows.h>
#endif
unsigned int message_mask;
{
if (mess_struct_ptr->
category & message_mask)
{
}
}
void DeviceData(const char *device_key,
int packet_length,
unsigned char *packet_buffer_ptr)
{
unsigned int count;
for (count = 0; count*
sizeof(
cfdp_struct_type) < (
unsigned int)packet_length; count++)
{
{
printf("Progress Transaction_id %s -> %s\t file size=%lld\t bytes trans=%lld\t percent trans=%u%%\n",
}
{
{
printf("Error Failed to remove the file: %s.\n",
}
}
}
}
int CreateDataFile(char *pathname,
unsigned int file_size)
{
FILE *file_ptr = NULL;
char fill_data[250];
unsigned int i;
if ((file_ptr = fopen(pathname,"wb")) == NULL)
{
printf("Error Failed to open example data file.\n");
}
memset(fill_data,0xfe,sizeof(fill_data));
for (i = 0; i < file_size; i+=sizeof(fill_data))
fwrite(fill_data,1,sizeof(fill_data),file_ptr);
fflush(file_ptr);
fclose(file_ptr);
}
int InitExampleDataFiles(char *pathname3MB,
char *destination_pathname3MB)
{
struct timeb timebuffer;
char home_path[256];
{
}
ftime(&timebuffer);
sprintf(pathname3MB, "%s/put_example_1_data_file_3MB",home_path);
if (CreateDataFile(pathname3MB,3000000) ==
FAIL)
{
}
sprintf(destination_pathname3MB,"%s_%u",
pathname3MB,
(unsigned int)timebuffer.time);
}
int MonitorTransactions(unsigned int monitor_timeout,
unsigned int transaction_count)
{
int return_value;
unsigned int current_transaction_count = 0;
unsigned int final_transaction_count = transaction_count;
unsigned int number_of_cfdp_structs = 0;
struct timeb start_timebuffer;
struct timeb current_timebuffer;
unsigned int i;
ftime(&start_timebuffer);
while (current_transaction_count != final_transaction_count)
{
number_of_cfdp_structs = final_transaction_count;
{
free(cfdp_struct_array_ptr);
final_transaction_count = number_of_cfdp_structs;
cfdp_struct_array_ptr);
}
{
for (i=0; i<number_of_cfdp_structs;i++)
{
if (cfdp_struct_array_ptr[i].cfdp_status ==
DS_CANCEL ||
cfdp_struct_array_ptr[i].cfdp_status ==
DS_SUCCESS ||
cfdp_struct_array_ptr[i].cfdp_status ==
DS_FAIL ||
cfdp_struct_array_ptr[i].cfdp_status ==
DS_ABANDON ||
cfdp_struct_array_ptr[i].cfdp_status ==
DS_UNKNOWN)
{
if (cfdp_struct_array_ptr[i].cfdp_status !=
DS_SUCCESS)
{
printf("Info Failed to execute put file for destination pathname: %s and eid: %d.\n",
cfdp_struct_array_ptr[i].destination_pathname,
(int)cfdp_struct_array_ptr[i].eid);
}
current_transaction_count += 1;
}
}
#ifdef __linux__
sleep(1);
#else
Sleep(1000);
#endif
ftime(¤t_timebuffer);
if (current_timebuffer.time - start_timebuffer.time >
monitor_timeout)
{
printf("Error CFDP monitor transaction timeout.\n");
current_transaction_count= final_transaction_count;
}
}
else
{
printf("Error Failed to GetCFDPStructArray.\n");
current_transaction_count = final_transaction_count;
}
}
free(cfdp_struct_array_ptr);
return(return_value);
}
int main(int argc, char *argv[])
{
char pathname[256];
char pathname3MB[256];
char destination_pathname3MB[256];
long long eid;
unsigned int transaction_count;
unsigned int timeout_in_sec;
char log_path[256];
char log_filename[256];
strcpy (pathname, "./cfdp_put_example_1_config.txt");
if (argc == 2)
{
strcpy(pathname,argv[1]);
}
else if (argc > 2)
{
printf("Error Command line contains too many arguments.\n");
return 0;
}
strcpy(log_path,"");
strcpy(log_filename,"cfdp_put_example_1_log_file");
log_filename,
strcpy(log_path,"");
strcpy(log_filename,"cfdp_put_example_1_statistics_file");
log_filename,
{
{
printf("Error Failed to GetDisplayMessageMask.\n");
}
{
printf("Error Failed to RegisterCFDPDeviceData.\n");
}
if (InitExampleDataFiles(pathname3MB,destination_pathname3MB)!=
SUCCESS)
{
printf("Error Failed to InitExampleDataFiles.\n");
return 0;
}
printf("\nPut Example 1\n\n");
eid = 100;
destination_pathname3MB,
{
timeout_in_sec = 30;
transaction_count = 1;
if (MonitorTransactions(timeout_in_sec,
{
printf("Error Failed to MonitorTransactions.\n");
return 0;
}
}
else
{
printf("Error Failed 3Mb PutComponentCFDP.\n");
return 0;
}
}
#ifdef __linux__
sleep(1);
#else
Sleep(1000);
#endif
return 0;
}
CFDP toolkit enumerations.
@ CFDP_CLASS_2
CFDP class 2 service.
Definition: cfdp_shared.h:23
Message codes and structure definition for the Device Service library.
#define DS_SUCCESS
40 DS message code for Success
Definition: ds_shared.h:65
#define DS_FAIL
41 DS message code for Fail
Definition: ds_shared.h:66
@ FALSE_OR_NO
False.
Definition: ds_shared.h:105
#define DS_UNKNOWN
43 DS message code for Unknown
Definition: ds_shared.h:68
#define DS_ABANDON
42 DS message code for Abandon
Definition: ds_shared.h:67
#define DS_CANCEL
39 DS message code for Cancel
Definition: ds_shared.h:64
Structure of parameters needed for CFDP transaction status.
Definition: ds_shared.h:145
char destination_pathname[256]
Destination path and filename.
Definition: ds_shared.h:147
unsigned long cfdp_status
(e.g., DS_PACKET_SENDING, DS_PACKET_RECEIVING, DS_SUSPEND, DS_RESUME, DS_CANCEL, DS_SUCCESS,...
Definition: ds_shared.h:164
unsigned short percent_transferred
Bytes transferred divided by file size. Will reset with packet/PDU retransmissions.
Definition: ds_shared.h:150
long long bytes_transferred
The current number of bytes transmitted or received.
Definition: ds_shared.h:151
char transaction_id[50]
The transaction ID string is a combination of the decimal dotted notation EID (NATIVE) or decimal EID...
Definition: ds_shared.h:149
char source_pathname[256]
Source path and filename.
Definition: ds_shared.h:146
long long file_size
The size of the file being transferred.
Definition: ds_shared.h:152
Structure of parameters needed for message support.
Definition: trek_toolkit_common_api_ansi_c.h:74
char message[MAX_MESSAGE_SIZE]
Message.
Definition: trek_toolkit_common_api_ansi_c.h:77
enum message_category category
Message category (e.g., MSG_CAT_ERROR, MSG_CAT_ERROR_ALERT, MSG_CAT_WARNING, MSG_CAT_WARNING_ALERT,...
Definition: trek_toolkit_common_api_ansi_c.h:76
#define SUCCESS
The function completed successfully.
Definition: trek_error.h:8
#define FAIL
The function failed for an unknown reason.
Definition: trek_error.h:9