summaryrefslogtreecommitdiff
path: root/src/lib/dlt_filetransfer.c
blob: 8175e13dbf9a0990137415b338e6e3a4fca24a25 (plain)
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
/*
 * @licence app begin@
 * SPDX license identifier: MPL-2.0
 *
 * Copyright (C) 2011-2015, BMW AG
 *
 * This file is part of GENIVI Project DLT - Diagnostic Log and Trace.
 *
 * This Source Code Form is subject to the terms of the
 * Mozilla Public License (MPL), v. 2.0.
 * If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * For further information see http://www.genivi.org/.
 * @licence end@
 */

/*!
 * \author Alexander Wenzel <alexander.aw.wenzel@bmw.de>
 *
 * \copyright Copyright © 2011-2015 BMW AG. \n
 * License MPL-2.0: Mozilla Public License version 2.0 http://mozilla.org/MPL/2.0/.
 *
 * \file dlt_filetransfer.c
 */

/*******************************************************************************
**                                                                            **
**  SRC-MODULE: dlt-test-client.c                                             **
**                                                                            **
**  TARGET    : linux                                                         **
**                                                                            **
**  PROJECT   : DLT                                                           **
**                                                                            **
**  AUTHOR    : Alexander Wenzel Alexander.AW.Wenzel@bmw.de                   **
**                                                                            **
**  PURPOSE   :                                                               **
**                                                                            **
**  REMARKS   :                                                               **
**                                                                            **
**  PLATFORM DEPENDANT [yes/no]: yes                                          **
**                                                                            **
**  TO BE CHANGED BY USER [yes/no]: no                                        **
**                                                                            **
*******************************************************************************/

/*******************************************************************************
**                      Author Identity                                       **
********************************************************************************
**                                                                            **
** Initials     Name                       Company                            **
** --------     -------------------------  ---------------------------------- **
**  aw          Alexander Wenzel           BMW                                **
*******************************************************************************/

#include <errno.h>
#include <stdio.h>
#include <string.h>
#include "dlt_filetransfer.h"
#include "dlt_common.h"

/*!Defines the buffer size of a single file package which will be logged to dlt */
#define BUFFER_SIZE 1024

/*!Defines the minimum timeout between two dlt logs. This is important because dlt should not be flooded with too many logs in a short period of time. */
#define MIN_TIMEOUT 20


#define DLT_FILETRANSFER_TRANSFER_ALL_PACKAGES INT_MAX

#define NANOSEC_PER_MILLISEC 1000000
#define NANOSEC_PER_SEC 1000000000


/*!Buffer for dlt file transfer. The size is defined by BUFFER_SIZE */
unsigned char buffer[BUFFER_SIZE];


/*!Get some information about the file size of a file */
/**See stat(2) for more informations.
 * @param file Absolute file path
 * @param ok Result of stat
 * @return Returns the size of the file (if it is a regular file or a symbolic link) in bytes.
 */
uint32_t getFilesize(const char *file, int *ok)
{
    struct stat st;

    if (-1 == stat(file, &st)) {
        /*we can only return 0, as the value is unsigned */
        *ok = 0;
        return 0;
    }

    *ok = 1;
    return (uint32_t)st.st_size;
}

/** A simple Hash function for C-strings
 * @param str input string. E.g. a file path.
 * @param hash start and result value for hash computation
 *
 */
void stringHash(const char *str, uint32_t *hash)
{
    if (!str || !hash)
        return;

    unsigned int len = strlen(str);

    unsigned int i = 0;

    if (len <= 0)
        return;

    for (i = 0; i < len; i++)
        *hash = 53 * *hash + str[i];
}


/*!Get some information about the file serial number of a file */
/** See stat(2) for more informations.
 * @param file Absolute file path
 * @param ok *ok == 0 -> error; *ok == 1 -> ok
 * @return Returns a unique number associated with each filename
 */
uint32_t getFileSerialNumber(const char *file, int *ok)
{
    struct stat st;
    uint32_t ret;

    if (-1 == stat(file, &st)) {
        *ok = 0;
        ret = 0;
    }
    else {
        *ok = 1;
        ret = st.st_ino;
        ret = ret << (sizeof(ret) * 8) / 2;
        ret |= st.st_size;
        ret ^= st.st_ctime;
        stringHash(file, &ret);
    }

    return ret;
}

/*!Returns the creation date of a file */
/** See stat(2) for more informations.
 * @param file Absolute file path
 * @param ok Result of stat
 * @return Returns the creation date of a file
 */
time_t getFileCreationDate(const char *file, int *ok)
{
    struct stat st;

    if (-1 == stat(file, &st)) {
        *ok = 0;
        return 0;
    }

    *ok = 1;
    return st.st_ctime;
}

/*!Returns the creation date of a file */
/** Format of the creation date is Day Mon dd hh:mm:ss yyyy
 * @param file Absolute file path
 * @param ok Result of stat
 * @param date Local time
 * @return Returns the creation date of a file
 */
void getFileCreationDate2(const char *file, int *ok, char *date)
{
    struct stat st;
    struct tm ts;

    if (-1 == stat(file, &st)) {
        *ok = 0;
        date = 0;
    }

    *ok = 1;
    localtime_r(&st.st_ctime, &ts);
    asctime_r(&ts, date);
}

/*!Checks if the file exists */
/**@param file Absolute file path
 * @return Returns 1 if the file exists, 0 if the file does not exist
 */
int isFile (const char *file)
{
    struct stat st;
    return stat (file, &st) == 0;
}

/*!Waits a period of time */
/**Waits a period of time. The minimal time to wait is MIN_TIMEOUT. This makes sure that the FIFO of dlt is not flooded.
 * @param timeout Timeout to in ms but can not be smaller as MIN_TIMEOUT
 */
void doTimeout(int timeout)
{
    struct timespec ts;
    ts.tv_sec = (timeout * NANOSEC_PER_MILLISEC) / NANOSEC_PER_SEC;
    ts.tv_nsec = (timeout * NANOSEC_PER_MILLISEC) % NANOSEC_PER_SEC;
    nanosleep(&ts, NULL);
}

/*!Checks free space of the user buffer */
/**
 * @return -1 if more than 50% space in the user buffer is free. Otherwise 1 will be returned.
 */
int checkUserBufferForFreeSpace()
{
    int total_size, used_size;

    dlt_user_check_buffer(&total_size, &used_size);

    if ((total_size - used_size) < (total_size / 2))
        return -1;

    return 1;
}

/*!Deletes the given file */
/**
 * @param filename Absolute file path
 * @return If the file is successfully deleted, a zero value is returned.If the file can not be deleted a nonzero value is returned.
 */
int doRemoveFile(const char *filename)
{
    return remove(filename);
}

void dlt_user_log_file_errorMessage(DltContext *fileContext, const char *filename, int errorCode)
{

    if (errno != ENOENT) {
        int ok = 0;
        uint32_t fserial = getFileSerialNumber(filename, &ok);

        if (!ok)
            DLT_LOG(*fileContext, DLT_LOG_ERROR,
                    DLT_STRING("dlt_user_log_file_errorMessage, error in getFileSerialNumber for: "),
                    DLT_STRING(filename));

        uint32_t fsize = getFilesize(filename, &ok);

        if (!ok)
            DLT_LOG(*fileContext,
                    DLT_LOG_ERROR,
                    DLT_STRING("dlt_user_log_file_errorMessage, error in getFilesize for: "),
                    DLT_STRING(filename));

        char fcreationdate[50];
        getFileCreationDate2(filename, &ok, fcreationdate);

        if (!ok)
            DLT_LOG(*fileContext,
                    DLT_LOG_ERROR,
                    DLT_STRING("dlt_user_log_file_errorMessage, error in getFilesize for: "),
                    DLT_STRING(filename));

        int package_count = dlt_user_log_file_packagesCount(fileContext, filename);

        DLT_LOG(*fileContext, DLT_LOG_ERROR,
                DLT_STRING("FLER"),
                DLT_INT(errorCode),
                DLT_INT(-errno),
                DLT_UINT(fserial),
                DLT_STRING(filename),
                DLT_UINT(fsize),
                DLT_STRING(fcreationdate),
                DLT_INT(package_count),
                DLT_UINT(BUFFER_SIZE),
                DLT_STRING("FLER")
                );
    }
    else {
        DLT_LOG(*fileContext, DLT_LOG_ERROR,
                DLT_STRING("FLER"),
                DLT_INT(errorCode),
                DLT_INT(-errno),
                DLT_STRING(filename),
                DLT_STRING("FLER")
                );
    }
}



/*!Logs specific file inforamtions to dlt */
/**The filename, file size, file serial number and the number of packages will be logged to dlt.
 * @param fileContext Specific context
 * @param filename Absolute file path
 * @return Returns 0 if everything was okey.If there was a failure a value < 0 will be returned.
 */
int dlt_user_log_file_infoAbout(DltContext *fileContext, const char *filename)
{

    if (isFile(filename)) {
        int ok;

        uint32_t fsize = getFilesize(filename, &ok);

        if (!ok)
            DLT_LOG(*fileContext,
                    DLT_LOG_ERROR,
                    DLT_STRING("dlt_user_log_file_infoAbout, Error getting size of file:"),
                    DLT_STRING(filename));

        uint32_t fserialnumber = getFileSerialNumber(filename, &ok);

        if (!ok)
            DLT_LOG(*fileContext,
                    DLT_LOG_ERROR,
                    DLT_STRING("dlt_user_log_file_infoAbout, Error getting serial number of file:"),
                    DLT_STRING(filename));

        char creationdate[50];
        getFileCreationDate2(filename, &ok, creationdate);

        if (!ok)
            DLT_LOG(*fileContext,
                    DLT_LOG_ERROR,
                    DLT_STRING("dlt_user_log_file_infoAbout, Error getting creation date of file:"),
                    DLT_STRING(filename));

        DLT_LOG(*fileContext, DLT_LOG_INFO,
                DLT_STRING("FLIF"),
                DLT_STRING("file serialnumber"), DLT_UINT(fserialnumber),
                DLT_STRING("filename"), DLT_STRING(filename),
                DLT_STRING("file size in bytes"), DLT_UINT(fsize),
                DLT_STRING("file creation date"), DLT_STRING(creationdate),
                DLT_STRING("number of packages"), DLT_UINT(dlt_user_log_file_packagesCount(fileContext, filename)),
                DLT_STRING("FLIF")
                );
        return 0;
    }
    else {
        dlt_user_log_file_errorMessage(fileContext, filename, DLT_FILETRANSFER_ERROR_INFO_ABOUT);
        return DLT_FILETRANSFER_ERROR_INFO_ABOUT;
    }
}

/*!Transfer the complete file as several dlt logs. */
/**This method transfer the complete file as several dlt logs. At first it will be checked that the file exist.
 * In the next step some generic informations about the file will be logged to dlt.
 * Now the header will be logged to dlt. See the method dlt_user_log_file_header for more informations.
 * Then the method dlt_user_log_data will be called with the parameter to log all packages in a loop with some timeout.
 * At last dlt_user_log_end is called to signal that the complete file transfer was okey. This is important for the plugin of the dlt viewer.
 * @param fileContext Specific context to log the file to dlt
 * @param filename Absolute file path
 * @param deleteFlag Flag if the file will be deleted after transfer. 1->delete, 0->notDelete
 * @param timeout Timeout in ms to wait between some logs. Important that the FIFO of dlt will not be flooded with to many messages in a short period of time.
 * @return Returns 0 if everything was okey. If there was a failure a value < 0 will be returned.
 */
int dlt_user_log_file_complete(DltContext *fileContext, const char *filename, int deleteFlag, int timeout)
{
    if (!isFile(filename)) {
        dlt_user_log_file_errorMessage(fileContext, filename, DLT_FILETRANSFER_ERROR_FILE_COMPLETE);
        return DLT_FILETRANSFER_ERROR_FILE_COMPLETE;
    }

    if (dlt_user_log_file_header(fileContext, filename) != 0)
        return DLT_FILETRANSFER_ERROR_FILE_COMPLETE1;

    if (dlt_user_log_file_data(fileContext, filename, DLT_FILETRANSFER_TRANSFER_ALL_PACKAGES, timeout) != 0)
        return DLT_FILETRANSFER_ERROR_FILE_COMPLETE2;

    if (dlt_user_log_file_end(fileContext, filename, deleteFlag) != 0)
        return DLT_FILETRANSFER_ERROR_FILE_COMPLETE3;

    return 0;
}

/*!This method gives information about the number of packages the file have */
/**Every file will be divided into several packages. Every package will be logged as a single dlt log.
 * The number of packages depends on the BUFFER_SIZE.
 * At first it will be checked if the file exist. Then the file will be divided into
 * several packages depending on the buffer size.
 * @param fileContext Specific context to log the file to dlt
 * @param filename Absolute file path
 * @return Returns the number of packages if everything was okey. If there was a failure a value < 0 will be returned.
 */
int dlt_user_log_file_packagesCount(DltContext *fileContext, const char *filename)
{
    int packages;
    uint32_t filesize;

    if (isFile(filename)) {
        packages = 1;
        int ok;
        filesize = getFilesize(filename, &ok);

        if (!ok) {
            DLT_LOG(*fileContext,
                    DLT_LOG_ERROR,
                    DLT_STRING("Error in: dlt_user_log_file_packagesCount, isFile"),
                    DLT_STRING(filename),
                    DLT_INT(DLT_FILETRANSFER_ERROR_PACKAGE_COUNT));
            return -1;
        }

        if (filesize < BUFFER_SIZE) {
            return packages;
        }
        else {
            packages = filesize / BUFFER_SIZE;

            if (filesize % BUFFER_SIZE == 0)
                return packages;
            else
                return packages + 1;
        }
    }
    else {
        DLT_LOG(*fileContext,
                DLT_LOG_ERROR,
                DLT_STRING("Error in: dlt_user_log_file_packagesCount, !isFile"),
                DLT_STRING(filename),
                DLT_INT(DLT_FILETRANSFER_ERROR_PACKAGE_COUNT));
        return -1;
    }
}

/*!Transfer the head of the file as a dlt logs. */
/**The head of the file must be logged to dlt because the head contains inforamtion about the file serial number,
 * the file name, the file size, package number the file have and the buffer size.
 * All these informations are needed from the plugin of the dlt viewer.
 * See the Mainpages.c for more informations.
 * @param fileContext Specific context to log the file to dlt
 * @param filename Absolute file path
 * @param alias Alias for the file. An alternative name to show in the receiving end
 * @return Returns 0 if everything was okey. If there was a failure a value < 0 will be returned.
 */
int dlt_user_log_file_header_alias(DltContext *fileContext, const char *filename, const char *alias)
{

    if (isFile(filename)) {
        int ok;

        uint32_t fserialnumber = getFileSerialNumber(filename, &ok);

        if (!ok)
            DLT_LOG(*fileContext, DLT_LOG_ERROR,
                    DLT_STRING("dlt_user_log_file_header_alias, Error getting serial number of file:"),
                    DLT_STRING(filename));

        uint32_t fsize = getFilesize(filename, &ok);

        if (!ok)
            DLT_LOG(*fileContext, DLT_LOG_ERROR,
                    DLT_STRING("dlt_user_log_file_header_alias, Error getting size of file:"), DLT_STRING(filename));

        char fcreationdate[50];
        getFileCreationDate2(filename, &ok, fcreationdate);

        if (!ok)
            DLT_LOG(*fileContext, DLT_LOG_ERROR,
                    DLT_STRING("dlt_user_log_file_header_alias, Error getting creation date of file:"),
                    DLT_STRING(filename));

        DLT_LOG(*fileContext, DLT_LOG_INFO,
                DLT_STRING("FLST"),
                DLT_UINT(fserialnumber),
                DLT_STRING(alias),
                DLT_UINT(fsize),
                DLT_STRING(fcreationdate);
                DLT_UINT(dlt_user_log_file_packagesCount(fileContext, filename)),
                DLT_UINT(BUFFER_SIZE),
                DLT_STRING("FLST")
                );

        return 0;
    }
    else {
        dlt_user_log_file_errorMessage(fileContext, filename, DLT_FILETRANSFER_ERROR_FILE_HEAD);
        return DLT_FILETRANSFER_ERROR_FILE_HEAD;
    }
}

/*!Transfer the head of the file as a dlt logs. */
/**The head of the file must be logged to dlt because the head contains inforamtion about the file serial number,
 * the file name, the file size, package number the file have and the buffer size.
 * All these informations are needed from the plugin of the dlt viewer.
 * See the Mainpages.c for more informations.
 * @param fileContext Specific context to log the file to dlt
 * @param filename Absolute file path
 * @return Returns 0 if everything was okey. If there was a failure a value < 0 will be returned.
 */
int dlt_user_log_file_header(DltContext *fileContext, const char *filename)
{

    if (isFile(filename)) {
        int ok;

        uint32_t fserialnumber = getFileSerialNumber(filename, &ok);

        if (!ok)
            DLT_LOG(*fileContext, DLT_LOG_ERROR,
                    DLT_STRING("dlt_user_log_file_header, Error getting serial number of file:"), DLT_STRING(filename));

        uint32_t fsize = getFilesize(filename, &ok);

        if (!ok)
            DLT_LOG(*fileContext,
                    DLT_LOG_ERROR,
                    DLT_STRING("dlt_user_log_file_header, Error getting size of file:"),
                    DLT_STRING(filename));

        char fcreationdate[50];
        getFileCreationDate2(filename, &ok, fcreationdate);

        if (!ok)
            DLT_LOG(*fileContext, DLT_LOG_ERROR,
                    DLT_STRING("dlt_user_log_file_header, Error getting creation date of file:"), DLT_STRING(filename));

        DLT_LOG(*fileContext, DLT_LOG_INFO,
                DLT_STRING("FLST"),
                DLT_UINT(fserialnumber),
                DLT_STRING(filename),
                DLT_UINT(fsize),
                DLT_STRING(fcreationdate);
                DLT_UINT(dlt_user_log_file_packagesCount(fileContext, filename)),
                DLT_UINT(BUFFER_SIZE),
                DLT_STRING("FLST")
                );

        return 0;
    }
    else {
        dlt_user_log_file_errorMessage(fileContext, filename, DLT_FILETRANSFER_ERROR_FILE_HEAD);
        return DLT_FILETRANSFER_ERROR_FILE_HEAD;
    }
}

/*!Transfer the content data of a file. */
/**See the Mainpages.c for more informations.
 * @param fileContext Specific context to log the file to dlt
 * @param filename Absolute file path
 * @param packageToTransfer Package number to transfer. If this param is LONG_MAX, the whole file will be transferred with a specific timeout
 * @param timeout Timeout to wait between dlt logs. Important because the dlt FIFO should not be flooded. Default is defined by MIN_TIMEOUT. The given timeout in ms can not be smaller than MIN_TIMEOUT.
 * @return Returns 0 if everything was okey. If there was a failure a value < 0 will be returned.
 */
int dlt_user_log_file_data(DltContext *fileContext, const char *filename, int packageToTransfer, int timeout)
{
    FILE *file;
    int pkgNumber;
    uint32_t readBytes;

    if (isFile(filename)) {

        file = fopen (filename, "rb");

        if (file == NULL) {
            dlt_user_log_file_errorMessage(fileContext, filename, DLT_FILETRANSFER_ERROR_FILE_DATA);
            return DLT_FILETRANSFER_ERROR_FILE_DATA;
        }

        if (((packageToTransfer != DLT_FILETRANSFER_TRANSFER_ALL_PACKAGES) &&
             (packageToTransfer >
              dlt_user_log_file_packagesCount(fileContext, filename))) || (packageToTransfer <= 0)) {
            DLT_LOG(*fileContext, DLT_LOG_ERROR,
                    DLT_STRING("Error at dlt_user_log_file_data: packageToTransfer out of scope"),
                    DLT_STRING("packageToTransfer:"),
                    DLT_UINT(packageToTransfer),
                    DLT_STRING("numberOfMaximalPackages:"),
                    DLT_UINT(dlt_user_log_file_packagesCount(fileContext, filename)),
                    DLT_STRING("for File:"),
                    DLT_STRING(filename)
                    );
            fclose(file);
            return DLT_FILETRANSFER_ERROR_FILE_DATA;
        }

        readBytes = 0;

        if (packageToTransfer != DLT_FILETRANSFER_TRANSFER_ALL_PACKAGES) {
/*                If a single package should be transferred. The user has to check that the free space in the user buffer > 50% */
/*                if(checkUserBufferForFreeSpace()<0) */
/*                    return DLT_FILETRANSFER_ERROR_FILE_DATA_USER_BUFFER_FAILED; */

            if (0 != fseek (file, (packageToTransfer - 1) * BUFFER_SIZE, SEEK_SET)) {
                DLT_LOG(*fileContext, DLT_LOG_ERROR,
                        DLT_STRING("failed to fseek in file: "),
                        DLT_STRING(filename),
                        DLT_STRING("ferror:"),
                        DLT_INT(ferror(file))
                        );

                fclose (file);
                return -1;

            }

            readBytes = fread(buffer, sizeof(char), BUFFER_SIZE, file);
            int ok;

            uint32_t fserial = getFileSerialNumber(filename, &ok);

            if (1 != ok)
                DLT_LOG(*fileContext, DLT_LOG_ERROR,
                        DLT_STRING("failed to get FileSerialNumber for: "),
                        DLT_STRING(filename));

            DLT_LOG(*fileContext, DLT_LOG_INFO,
                    DLT_STRING("FLDA"),
                    DLT_UINT(fserial),
                    DLT_UINT(packageToTransfer),
                    DLT_RAW(buffer, readBytes),
                    DLT_STRING("FLDA")
                    );

            doTimeout(timeout);

        }
        else {
            pkgNumber = 0;

            while (!feof(file)) {
/*                If the complete file should be transferred, the user buffer will be checked. */
/*                If free space < 50% the package won't be transferred. */
                if (checkUserBufferForFreeSpace() > 0) {
                    pkgNumber++;
                    readBytes = fread(buffer, sizeof(char), BUFFER_SIZE, file);
                    int ok;

                    uint32_t fserial = getFileSerialNumber(filename, &ok);

                    if (1 != ok)
                        DLT_LOG(*fileContext, DLT_LOG_ERROR,
                                DLT_STRING("failed to get FileSerialNumber for: "),
                                DLT_STRING(filename));

                    DLT_LOG(*fileContext, DLT_LOG_INFO,
                            DLT_STRING("FLDA"),
                            DLT_UINT(fserial),
                            DLT_UINT(pkgNumber),
                            DLT_RAW(buffer, readBytes),
                            DLT_STRING("FLDA")
                            );
                }

                doTimeout(timeout);
            }
        }

        fclose(file);

        return 0;

    }
    else {
        dlt_user_log_file_errorMessage(fileContext, filename, DLT_FILETRANSFER_ERROR_FILE_DATA);
        return DLT_FILETRANSFER_ERROR_FILE_DATA;
    }
}
/*!Transfer the end of the file as a dlt logs. */
/**The end of the file must be logged to dlt because the end contains inforamtion about the file serial number.
 * This informations is needed from the plugin of the dlt viewer.
 * See the Mainpages.c for more informations.
 * @param fileContext Specific context to log the file to dlt
 * @param filename Absolute file path
 * @param deleteFlag Flag to delete the file after the whole file is transferred (logged to dlt).1->delete,0->NotDelete
 * @return Returns 0 if everything was okey. If there was a failure a value < 0 will be returned.
 */
int dlt_user_log_file_end(DltContext *fileContext, const char *filename, int deleteFlag)
{

    if (isFile(filename)) {

        int ok;
        uint32_t fserial = getFileSerialNumber(filename, &ok);

        if (1 != ok)
            DLT_LOG(*fileContext, DLT_LOG_ERROR,
                    DLT_STRING("failed to get FileSerialNumber for: "),
                    DLT_STRING(filename));

        DLT_LOG(*fileContext, DLT_LOG_INFO,
                DLT_STRING("FLFI"),
                DLT_UINT(fserial),
                DLT_STRING("FLFI")
                );

        if (deleteFlag) {
            if (doRemoveFile(filename) != 0) {
                dlt_user_log_file_errorMessage(fileContext, filename, DLT_FILETRANSFER_ERROR_FILE_END);
                return -1;
            }
        }

        return 0;
    }
    else {
        dlt_user_log_file_errorMessage(fileContext, filename, DLT_FILETRANSFER_ERROR_FILE_END);
        return DLT_FILETRANSFER_ERROR_FILE_END;
    }
}