GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: fxe_unicode_file_rename.c Lines: 13 13 100.0 %
Date: 2024-01-10 21:53:23 Branches: 30 30 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
/**   Unicode                                                             */
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_unicode.h"
30
31
32
FX_CALLER_CHECKING_EXTERNS
33
34
35
/**************************************************************************/
36
/*                                                                        */
37
/*  FUNCTION                                               RELEASE        */
38
/*                                                                        */
39
/*    _fxe_unicode_file_create                            PORTABLE C      */
40
/*                                                           6.1          */
41
/*  AUTHOR                                                                */
42
/*                                                                        */
43
/*    William E. Lamie, Microsoft Corporation                             */
44
/*                                                                        */
45
/*  DESCRIPTION                                                           */
46
/*                                                                        */
47
/*    This function checks for errors in the Unicode file rename service. */
48
/*                                                                        */
49
/*  INPUT                                                                 */
50
/*                                                                        */
51
/*    media_ptr                             Pointer to media              */
52
/*    old_unicode_name                      Pointer to old unicode name   */
53
/*    old_unicode_length                    Old unicode name length       */
54
/*    new_unicode_name                      Pointer to new unicode name   */
55
/*    new_unicode_length                    New unicode name length       */
56
/*    new_short_name                        Designated new short name     */
57
/*                                                                        */
58
/*  OUTPUT                                                                */
59
/*                                                                        */
60
/*    Completion Status                                                   */
61
/*                                                                        */
62
/*  CALLS                                                                 */
63
/*                                                                        */
64
/*    _fx_unicode_file_rename               Actual Unicode file rename    */
65
/*                                            service                     */
66
/*                                                                        */
67
/*  CALLED BY                                                             */
68
/*                                                                        */
69
/*    Application Code                                                    */
70
/*                                                                        */
71
/*  RELEASE HISTORY                                                       */
72
/*                                                                        */
73
/*    DATE              NAME                      DESCRIPTION             */
74
/*                                                                        */
75
/*  05-19-2020     William E. Lamie         Initial Version 6.0           */
76
/*  09-30-2020     William E. Lamie         Modified comment(s),          */
77
/*                                            resulting in version 6.1    */
78
/*                                                                        */
79
/**************************************************************************/
80
1137
UINT _fxe_unicode_file_rename(FX_MEDIA *media_ptr, UCHAR *old_unicode_name, ULONG old_unicode_length,
81
                              UCHAR *new_unicode_name, ULONG new_unicode_length, CHAR *new_short_name)
82
{
83
84
UINT status, i;
85
86
87
    /* Check for a NULL media or name pointers.  */
88


1137
    if ((media_ptr == FX_NULL) || (old_unicode_name == FX_NULL) || (old_unicode_length == 0) ||
89

726
        (new_unicode_name == FX_NULL) || (new_unicode_length == 0) || (new_short_name == FX_NULL))
90
    {
91
683
        return(FX_PTR_ERROR);
92
    }
93
94
    /* Check for a valid caller.  */
95

454
    FX_CALLER_CHECKING_CODE
96
97
    /* Check unicode zero in old_unicode_name */
98
229
    for (i = 0; i < (old_unicode_length << 1); i += 2)
99
    {
100

184
        if ((old_unicode_name[i] == 0) && (old_unicode_name[i + 1] == 0))
101
        {
102
1
            return(FX_INVALID_NAME);
103
        }
104
    }
105
106
    /* Check unicode zero in new_unicode_name */
107
253
    for (i = 0; i < (new_unicode_length << 1); i += 2)
108
    {
109

209
        if ((new_unicode_name[i] == 0) && (new_unicode_name[i + 1] == 0))
110
        {
111
1
            return(FX_INVALID_NAME);
112
        }
113
    }
114
115
    /* Call actual Unicode file rename service.  */
116
44
    status =  _fx_unicode_file_rename(media_ptr, old_unicode_name, old_unicode_length,
117
                                      new_unicode_name, new_unicode_length, new_short_name);
118
119
    /* Return status to the caller.  */
120
44
    return(status);
121
}
122