]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Scripts/BinToPcd.py
BaseTools/BinToPcd: Add support for multiple binary input files
[mirror_edk2.git] / BaseTools / Scripts / BinToPcd.py
index 68a7ac652d70598502b4fa4e41910f5a0bea9721..f2485a27fa3391acc7844fb362ae505519c7de87 100644 (file)
@@ -1,7 +1,7 @@
 ## @file\r
 # Convert a binary file to a VOID* PCD value or DSC file VOID* PCD statement.\r
 #\r
-# Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>\r
+# Copyright (c) 2016 - 2018, Intel Corporation. All rights reserved.<BR>\r
 # This program and the accompanying materials\r
 # are licensed and made available under the terms and conditions of the BSD License\r
 # which accompanies this distribution.  The full text of the license may be found at\r
@@ -18,14 +18,15 @@ BinToPcd
 import sys\r
 import argparse\r
 import re\r
+import xdrlib\r
 \r
 #\r
 # Globals for help information\r
 #\r
 __prog__        = 'BinToPcd'\r
-__version__     = '%s Version %s' % (__prog__, '0.9 ')\r
-__copyright__   = 'Copyright (c) 2016, Intel Corporation. All rights reserved.'\r
-__description__ = 'Convert a binary file to a VOID* PCD value or DSC file VOID* PCD statement.\n'\r
+__version__     = '%s Version %s' % (__prog__, '0.91 ')\r
+__copyright__   = 'Copyright (c) 2016 - 2018, Intel Corporation. All rights reserved.'\r
+__description__ = 'Convert one or more binary files to a VOID* PCD value or DSC file VOID* PCD statement.\n'\r
 \r
 if __name__ == '__main__':\r
   def ValidateUnsignedInteger (Argument):\r
@@ -50,21 +51,35 @@ if __name__ == '__main__':
       Message = '%s is not a valid GUID C name' % (Argument)\r
       raise argparse.ArgumentTypeError(Message)\r
     return Argument\r
-    \r
-  def ByteArray (Buffer):\r
+\r
+  def ByteArray (Buffer, Xdr = False):\r
+    if Xdr:\r
+      #\r
+      # If Xdr flag is set then encode data using the Variable-Length Opaque\r
+      # Data format of RFC 4506 External Data Representation Standard (XDR).\r
+      #\r
+      XdrEncoder = xdrlib.Packer()\r
+      for Item in Buffer:\r
+        XdrEncoder.pack_bytes(Item)\r
+      Buffer = XdrEncoder.get_buffer()\r
+    else:\r
+      #\r
+      # If Xdr flag is not set, then concatenate all the data\r
+      #\r
+      Buffer = ''.join(Buffer)\r
     #\r
-    # Append byte array of values of the form '{0x01, 0x02, ...}'\r
+    # Return a PCD value of the form '{0x01, 0x02, ...}' along with the PCD length in bytes\r
     #\r
-    return '{%s}' % (', '.join(['0x%02x' % (ord(Item)) for Item in Buffer]))\r
-    \r
+    return '{%s}' % (', '.join(['0x%02x' % (ord(Item)) for Item in Buffer])), len (Buffer)\r
+\r
   #\r
   # Create command line argument parser object\r
   #\r
   parser = argparse.ArgumentParser(prog = __prog__, version = __version__,\r
                                    description = __description__ + __copyright__,\r
                                    conflict_handler = 'resolve')\r
-  parser.add_argument("-i", "--input", dest = 'InputFile', type = argparse.FileType('rb'),\r
-                      help = "Input binary filename", required = True)\r
+  parser.add_argument("-i", "--input", dest = 'InputFile', type = argparse.FileType('rb'), action='append', required = True,\r
+                      help = "Input binary filename.  Multiple input files are combined into a single PCD.")\r
   parser.add_argument("-o", "--output", dest = 'OutputFile', type = argparse.FileType('wb'),\r
                       help = "Output filename for PCD value or PCD statement")\r
   parser.add_argument("-p", "--pcd", dest = 'PcdName', type = ValidatePcdName,\r
@@ -79,6 +94,8 @@ if __name__ == '__main__':
                       help = "UEFI variable name.  Only used with --type HII.")\r
   parser.add_argument("-g", "--variable-guid", type = ValidateGuidName, dest = 'VariableGuid',\r
                       help = "UEFI variable GUID C name.  Only used with --type HII.")\r
+  parser.add_argument("-x", "--xdr", dest = 'Xdr', action = "store_true",\r
+                      help = "Encode PCD using the Variable-Length Opaque Data format of RFC 4506 External Data Representation Standard (XDR)")\r
   parser.add_argument("-v", "--verbose", dest = 'Verbose', action = "store_true",\r
                       help = "Increase output messages")\r
   parser.add_argument("-q", "--quiet", dest = 'Quiet', action = "store_true",\r
@@ -92,14 +109,22 @@ if __name__ == '__main__':
   args = parser.parse_args()\r
 \r
   #\r
-  # Read binary input file\r
+  # Read all binary input files\r
   #\r
-  try:\r
-    Buffer = args.InputFile.read()\r
-    args.InputFile.close()\r
-  except:\r
-    print 'BinToPcd: error: can not read binary input file'\r
-    sys.exit()\r
+  Buffer = []\r
+  for File in args.InputFile:\r
+    try:\r
+      Buffer.append(File.read())\r
+      File.close()\r
+    except:\r
+      print 'BinToPcd: error: can not read binary input file', File\r
+      sys.exit()\r
+\r
+  #\r
+  # Convert PCD to an encoded string of hex values and determine the size of\r
+  # the encoded PCD in bytes.\r
+  #\r
+  PcdValue, PcdSize = ByteArray (Buffer, args.Xdr)\r
 \r
   #\r
   # Convert binary buffer to a DSC file PCD statement\r
@@ -107,7 +132,8 @@ if __name__ == '__main__':
   if args.PcdName is None:\r
     #\r
     # If PcdName is None, then only a PCD value is being requested.\r
-    Pcd = ByteArray (Buffer)\r
+    #\r
+    Pcd = PcdValue\r
     if args.Verbose:\r
       print 'PcdToBin: Convert binary file to PCD Value'\r
   elif args.PcdType is None:\r
@@ -121,14 +147,13 @@ if __name__ == '__main__':
       # If --max-size is not provided, then do not generate the syntax that\r
       # includes the maximum size.\r
       #\r
-      Pcd = '  %s|%s' % (args.PcdName, ByteArray (Buffer))\r
-    elif args.MaxSize < len(Buffer):\r
+      Pcd = '  %s|%s' % (args.PcdName, PcdValue)\r
+    elif args.MaxSize < PcdSize:\r
       print 'BinToPcd: error: argument --max-size is smaller than input file.'\r
       sys.exit()\r
     else:\r
-      Pcd = '  %s|%s|VOID*|%d' % (args.PcdName, ByteArray (Buffer), args.MaxSize)\r
-      args.MaxSize = len(Buffer)\r
-    \r
+      Pcd = '  %s|%s|VOID*|%d' % (args.PcdName, PcdValue, args.MaxSize)\r
+\r
     if args.Verbose:\r
       print 'PcdToBin: Convert binary file to PCD statement compatible with PCD sections:'\r
       print '    [PcdsFixedAtBuild]'\r
@@ -141,8 +166,8 @@ if __name__ == '__main__':
       # If --max-size is not provided, then set maximum size to the size of the\r
       # binary input file\r
       #\r
-      args.MaxSize = len(Buffer)\r
-    if args.MaxSize < len(Buffer):\r
+      args.MaxSize = PcdSize\r
+    if args.MaxSize < PcdSize:\r
       print 'BinToPcd: error: argument --max-size is smaller than input file.'\r
       sys.exit()\r
     if args.Offset is None:\r
@@ -150,12 +175,12 @@ if __name__ == '__main__':
       # if --offset is not provided, then set offset field to '*' so build\r
       # tools will compute offset of PCD in VPD region.\r
       #\r
-      Pcd = '  %s|*|%d|%s' % (args.PcdName, args.MaxSize, ByteArray (Buffer))\r
+      Pcd = '  %s|*|%d|%s' % (args.PcdName, args.MaxSize, PcdValue)\r
     else:\r
       #\r
       # Use the --offset value provided.\r
       #\r
-      Pcd = '  %s|%d|%d|%s' % (args.PcdName, args.Offset, args.MaxSize, ByteArray (Buffer))\r
+      Pcd = '  %s|%d|%d|%s' % (args.PcdName, args.Offset, args.MaxSize, PcdValue)\r
     if args.Verbose:\r
       print 'PcdToBin: Convert binary file to PCD statement compatible with PCD sections'\r
       print '    [PcdsDynamicVpd]'\r
@@ -172,7 +197,7 @@ if __name__ == '__main__':
       # Use UEFI Variable offset of 0 if --offset is not provided\r
       #\r
       args.Offset = 0\r
-    Pcd = '  %s|L"%s"|%s|%d|%s' % (args.PcdName, args.VariableName, args.VariableGuid, args.Offset, ByteArray (Buffer))\r
+    Pcd = '  %s|L"%s"|%s|%d|%s' % (args.PcdName, args.VariableName, args.VariableGuid, args.Offset, PcdValue)\r
     if args.Verbose:\r
       print 'PcdToBin: Convert binary file to PCD statement compatible with PCD sections'\r
       print '    [PcdsDynamicHii]'\r