1 /***************************************************************************
2 * Copyright (c) 2024 Microsoft Corporation
3 *
4 * This program and the accompanying materials are made available under the
5 * terms of the MIT License which is available at
6 * https://opensource.org/licenses/MIT.
7 *
8 * SPDX-License-Identifier: MIT
9 **************************************************************************/
10
11
12 /**************************************************************************/
13 /**************************************************************************/
14 /** */
15 /** FileX Component */
16 /** */
17 /** System */
18 /** */
19 /**************************************************************************/
20 /**************************************************************************/
21
22 #define FX_SOURCE_CODE
23
24
25 /* Include necessary system files. */
26
27 #include "fx_api.h"
28 #include "fx_system.h"
29
30
31 /**************************************************************************/
32 /* */
33 /* FUNCTION RELEASE */
34 /* */
35 /* _fx_system_date_get PORTABLE C */
36 /* 6.1.7 */
37 /* AUTHOR */
38 /* */
39 /* William E. Lamie, Microsoft Corporation */
40 /* */
41 /* DESCRIPTION */
42 /* */
43 /* This function returns the current contents of the system date in */
44 /* the fields specified by the caller. */
45 /* */
46 /* INPUT */
47 /* */
48 /* year Pointer to year */
49 /* month Pointer to month */
50 /* day Pointer to day */
51 /* */
52 /* OUTPUT */
53 /* */
54 /* FX_SUCCESS */
55 /* */
56 /* CALLS */
57 /* */
58 /* None */
59 /* */
60 /* CALLED BY */
61 /* */
62 /* Application Code */
63 /* */
64 /* RELEASE HISTORY */
65 /* */
66 /* DATE NAME DESCRIPTION */
67 /* */
68 /* 05-19-2020 William E. Lamie Initial Version 6.0 */
69 /* 09-30-2020 William E. Lamie Modified comment(s), */
70 /* resulting in version 6.1 */
71 /* 06-02-2021 William E. Lamie Modified comment(s), */
72 /* checked null pointer, */
73 /* resulting in version 6.1.7 */
74 /* */
75 /**************************************************************************/
_fx_system_date_get(UINT * year,UINT * month,UINT * day)76 UINT _fx_system_date_get(UINT *year, UINT *month, UINT *day)
77 {
78
79 UINT date;
80
81
82 /* Get a copy of the current date. */
83 date = _fx_system_date;
84
85 /* Check to see if the year is required. */
86 if (year)
87 {
88
89 /* Pickup the year. */
90 *year = ((date >> FX_YEAR_SHIFT) & FX_YEAR_MASK) + FX_BASE_YEAR;
91 }
92
93 /* Check to see if the month is required. */
94 if (month)
95 {
96
97 /* Pickup the month. */
98 *month = (date >> FX_MONTH_SHIFT) & FX_MONTH_MASK;
99 }
100
101 /* Check to see if the day is required. */
102 if (day)
103 {
104
105 /* Pickup the day. */
106 *day = date & FX_DAY_MASK;
107 }
108
109 /* If trace is enabled, insert this event into the trace buffer. */
110 if (year && month && day)
111 {
112 FX_TRACE_IN_LINE_INSERT(FX_TRACE_SYSTEM_DATE_GET, *year, *month, *day, 0, FX_TRACE_INTERNAL_EVENTS, 0, 0)
113 }
114
115 /* Return successful status. */
116 return(FX_SUCCESS);
117 }
118
119