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 /** USBX Component                                                        */
16 /**                                                                       */
17 /**   Pictbridge Application                                              */
18 /**                                                                       */
19 /**************************************************************************/
20 /**************************************************************************/
21 
22 
23 /* Include necessary system files.  */
24 
25 #define UX_SOURCE_CODE
26 
27 #include "ux_api.h"
28 #include "ux_pictbridge.h"
29 
30 
31 /**************************************************************************/
32 /*                                                                        */
33 /*  FUNCTION                                               RELEASE        */
34 /*                                                                        */
35 /*    _ux_pictbridge_xml_function_input_notifydevicestatus_errorstatus    */
36 /*                                                        PORTABLE C      */
37 /*                                                           6.1          */
38 /*                                                                        */
39 /*                                                                        */
40 /*  AUTHOR                                                                */
41 /*                                                                        */
42 /*    Chaoqiong Xiao, Microsoft Corporation                               */
43 /*                                                                        */
44 /*  DESCRIPTION                                                           */
45 /*                                                                        */
46 /*    This function decodes the errorstatus tag                           */
47 /*    object                                                              */
48 /*                                                                        */
49 /*  INPUT                                                                 */
50 /*                                                                        */
51 /*    pictbridge                             Pictbridge instance          */
52 /*    input_variable                         Pointer to variable          */
53 /*    input_string                           Pointer to string            */
54 /*    xml_parameter                          XML parameter                */
55 /*                                                                        */
56 /*  OUTPUT                                                                */
57 /*                                                                        */
58 /*    Completion Status                                                   */
59 /*                                                                        */
60 /*  CALLS                                                                 */
61 /*                                                                        */
62 /*                                                                        */
63 /*  CALLED BY                                                             */
64 /*                                                                        */
65 /*    _ux_pictbridge_object_parse                                         */
66 /*                                                                        */
67 /*  RELEASE HISTORY                                                       */
68 /*                                                                        */
69 /*    DATE              NAME                      DESCRIPTION             */
70 /*                                                                        */
71 /*  05-19-2020     Chaoqiong Xiao           Initial Version 6.0           */
72 /*  09-30-2020     Chaoqiong Xiao           Modified comment(s),          */
73 /*                                            resulting in version 6.1    */
74 /*                                                                        */
75 /**************************************************************************/
_ux_pictbridge_xml_function_input_notifydevicestatus_errorstatus(UX_PICTBRIDGE * pictbridge,UCHAR * input_variable,UCHAR * input_string,UCHAR * xml_parameter)76 UINT  _ux_pictbridge_xml_function_input_notifydevicestatus_errorstatus(UX_PICTBRIDGE *pictbridge,
77                             UCHAR *input_variable, UCHAR *input_string, UCHAR *xml_parameter)
78 {
79 
80 UINT    status;
81 ULONG   hexa_element;
82 
83     UX_PARAMETER_NOT_USED(input_string);
84     UX_PARAMETER_NOT_USED(input_variable);
85     UX_PARAMETER_NOT_USED(xml_parameter);
86 
87     /* Get the error status variable.  */
88     status = _ux_pictbridge_element_to_hexa(xml_parameter, &hexa_element);
89 
90     /* Check status.  */
91     if (status == UX_SUCCESS)
92     {
93 
94         /* Check the returned value. Must be one of 3 possibilities.  */
95         if (hexa_element == UX_PICTBRIDGE_ERROR_STATUS_NO_ERROR ||
96             hexa_element == UX_PICTBRIDGE_ERROR_STATUS_WARNING  ||
97             hexa_element == UX_PICTBRIDGE_ERROR_STATUS_FATAL)
98         {
99 
100             /* Save this value.  */
101             pictbridge -> ux_pictbridge_dpsclient.ux_pictbridge_devinfo_errorstatus = hexa_element;
102 
103             /* We are done. */
104             return(UX_SUCCESS);
105         }
106     }
107 
108     /* We get here when we reached an unexpected end of the XML object or a format error.  */
109     return(UX_PICTBRIDGE_ERROR_SCRIPT_SYNTAX_ERROR);
110 
111 }
112 
113 
114