GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: fx_directory_local_path_get_copy.c Lines: 10 10 100.0 %
Date: 2024-01-10 21:53:23 Branches: 6 6 100.0 %

Line Branch Exec Source
1
/**************************************************************************/
2
/*                                                                        */
3
/*       Copyright (c) Microsoft Corporation. All rights reserved.        */
4
/*                                                                        */
5
/*       This software is licensed under the Microsoft Software License   */
6
/*       Terms for Microsoft Azure RTOS. Full text of the license can be  */
7
/*       found in the LICENSE file at https://aka.ms/AzureRTOS_EULA       */
8
/*       and in the root directory of this software.                      */
9
/*                                                                        */
10
/**************************************************************************/
11
12
13
/**************************************************************************/
14
/**************************************************************************/
15
/**                                                                       */
16
/** FileX Component                                                       */
17
/**                                                                       */
18
/**   Directory                                                           */
19
/**                                                                       */
20
/**************************************************************************/
21
/**************************************************************************/
22
23
#define FX_SOURCE_CODE
24
25
26
/* Include necessary system files.  */
27
28
#include "fx_api.h"
29
#include "fx_system.h"
30
#include "fx_file.h"
31
#include "fx_utility.h"
32
#include "fx_directory.h"
33
34
/**************************************************************************/
35
/*                                                                        */
36
/*  FUNCTION                                               RELEASE        */
37
/*                                                                        */
38
/*    _fx_directory_local_path_get_copy                   PORTABLE C      */
39
/*                                                           6.1          */
40
/*  AUTHOR                                                                */
41
/*                                                                        */
42
/*    William E. Lamie, Microsoft Corporation                             */
43
/*                                                                        */
44
/*  DESCRIPTION                                                           */
45
/*                                                                        */
46
/*    This function copies the local default directory for this thread    */
47
/*    into the specified buffer.                                          */
48
/*                                                                        */
49
/*  INPUT                                                                 */
50
/*                                                                        */
51
/*    media_ptr                             Media control block pointer   */
52
/*    return_path_name_buffer               Destination buffer for name   */
53
/*    return_path_name_buffer_size          Size of buffer pointed to by  */
54
/*                                            return_path_name_buffer     */
55
/*                                                                        */
56
/*  OUTPUT                                                                */
57
/*                                                                        */
58
/*    return status                                                       */
59
/*                                                                        */
60
/*  CALLS                                                                 */
61
/*                                                                        */
62
/*    None                                                                */
63
/*                                                                        */
64
/*  CALLED BY                                                             */
65
/*                                                                        */
66
/*    Application Code                                                    */
67
/*                                                                        */
68
/*  RELEASE HISTORY                                                       */
69
/*                                                                        */
70
/*    DATE              NAME                      DESCRIPTION             */
71
/*                                                                        */
72
/*  05-19-2020     William E. Lamie         Initial Version 6.0           */
73
/*  09-30-2020     William E. Lamie         Modified comment(s), verified */
74
/*                                            memcpy usage,               */
75
/*                                            resulting in version 6.1    */
76
/*                                                                        */
77
/**************************************************************************/
78
4
UINT  _fx_directory_local_path_get_copy(FX_MEDIA *media_ptr, CHAR *return_path_name_buffer, UINT return_path_name_buffer_size)
79
{
80
81
UINT    status;
82
CHAR    *return_path_name;
83
UINT    path_name_length_with_null_terminator;
84
85
86
    /* Get the pointer to the path.  */
87
4
    status =  _fx_directory_local_path_get(media_ptr, &return_path_name);
88
4
    if (status == FX_SUCCESS)
89
    {
90
91
        /* Was a path set?  */
92
3
        if (return_path_name != FX_NULL)
93
        {
94
95
            /* Get the length of the path.  */
96
2
            path_name_length_with_null_terminator =  _fx_utility_string_length_get(return_path_name, FX_MAXIMUM_PATH) + 1;
97
98
            /* Can it fit in the user's buffer? */
99
2
            if (path_name_length_with_null_terminator <= return_path_name_buffer_size)
100
            {
101
102
                /* Copy the path name into the user's buffer.  */
103
1
                _fx_utility_memory_copy((UCHAR *) return_path_name, (UCHAR *) return_path_name_buffer, path_name_length_with_null_terminator); /* Use case of memcpy is verified. */
104
            }
105
            else
106
            {
107
108
                /* Buffer is too small. Return error.  */
109
1
                return(FX_BUFFER_ERROR);
110
            }
111
        }
112
        else
113
        {
114
115
            /* Set zero-length string.  */
116
1
            return_path_name_buffer[0] = '\0';
117
        }
118
    }
119
120
    /* Return status.  */
121
3
    return(status);
122
}
123