Fixed compatibility of output.
[AROS.git] / arch / all-pc / acpica / source / tools / acpibin / abmain.c
bloba4ca919bd7c2e644a3cbb5d2ef20c6b514c0a762
1 /******************************************************************************
3 * Module Name: abmain - Main module for the acpi binary utility
5 *****************************************************************************/
7 /*
8 * Copyright (C) 2000 - 2013, Intel Corp.
9 * All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
45 #define _DECLARE_GLOBALS
46 #include "acpibin.h"
47 #include "acapps.h"
49 /* Local prototypes */
51 static void
52 AbDisplayUsage (
53 UINT8 OptionCount);
56 #define AB_UTILITY_NAME "ACPI Binary Table Dump Utility"
57 #define AB_SUPPORTED_OPTIONS "c:d:e:h:s:tv"
60 /******************************************************************************
62 * FUNCTION: AbDisplayUsage
64 * DESCRIPTION: Usage message
66 ******************************************************************************/
68 static void
69 AbDisplayUsage (
70 UINT8 OptionCount)
73 if (OptionCount)
75 printf ("Option requires %u arguments\n\n", OptionCount);
78 ACPI_USAGE_HEADER ("acpibin [options]");
80 ACPI_OPTION ("-c <File1><File2>", "Compare two binary AML files");
81 ACPI_OPTION ("-d <In><Out>", "Dump AML binary to text file");
82 ACPI_OPTION ("-e <Sig><In><Out>", "Extract binary AML table from AcpiDump file");
83 ACPI_OPTION ("-h <File>", "Display table header for binary AML file");
84 ACPI_OPTION ("-s <File>", "Update checksum for binary AML file");
85 ACPI_OPTION ("-t", "Terse mode");
86 ACPI_OPTION ("-v", "Display version information");
90 /******************************************************************************
92 * FUNCTION: main
94 * DESCRIPTION: C main function
96 ******************************************************************************/
98 int ACPI_SYSTEM_XFACE
99 main (
100 int argc,
101 char *argv[])
103 int j;
104 int Status = AE_OK;
107 ACPI_DEBUG_INITIALIZE (); /* For debug version only */
109 AcpiGbl_DebugFile = NULL;
110 AcpiGbl_DbOutputFlags = DB_CONSOLE_OUTPUT;
112 AcpiOsInitialize ();
113 printf (ACPI_COMMON_SIGNON (AB_UTILITY_NAME));
115 if (argc < 2)
117 AbDisplayUsage (0);
118 return (0);
121 /* Command line options */
123 while ((j = AcpiGetopt (argc, argv, AB_SUPPORTED_OPTIONS)) != EOF) switch(j)
125 case 'c': /* Compare Files */
127 if (argc < 4)
129 AbDisplayUsage (2);
130 return (-1);
133 Status = AbCompareAmlFiles (AcpiGbl_Optarg, argv[AcpiGbl_Optind]);
134 break;
136 case 'd': /* Dump AML file */
138 if (argc < 4)
140 AbDisplayUsage (2);
141 return (-1);
144 Status = AbDumpAmlFile (AcpiGbl_Optarg, argv[AcpiGbl_Optind]);
145 break;
147 case 'e': /* Extract AML text file */
149 if (argc < 5)
151 AbDisplayUsage (3);
152 return (-1);
155 Status = AbExtractAmlFile (AcpiGbl_Optarg, argv[AcpiGbl_Optind],
156 argv[AcpiGbl_Optind+1]);
157 break;
159 case 'h': /* Display ACPI table header */
161 if (argc < 3)
163 AbDisplayUsage (1);
164 return (-1);
167 AbDisplayHeader (AcpiGbl_Optarg);
168 return (0);
170 case 's': /* Compute/update checksum */
172 if (argc < 3)
174 AbDisplayUsage (1);
175 return (-1);
178 AbComputeChecksum (AcpiGbl_Optarg);
179 return (0);
181 case 't': /* Enable terse mode */
183 Gbl_TerseMode = TRUE;
184 break;
186 case 'v': /* -v: (Version): signon already emitted, just exit */
188 return (0);
190 default:
192 AbDisplayUsage (0);
193 return (-1);
196 return (Status);