public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Liming Gao" <liming.gao@intel.com>
To: "Shi, Steven" <steven.shi@intel.com>,
	"devel@edk2.groups.io" <devel@edk2.groups.io>
Cc: "Feng, Bob C" <bob.c.feng@intel.com>
Subject: Re: [PATCH] BaseTools: Support more file types in build cache
Date: Mon, 2 Sep 2019 01:48:07 +0000	[thread overview]
Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14E4F00E1@SHSMSX104.ccr.corp.intel.com> (raw)
In-Reply-To: <20190827051646.4100-1-steven.shi@intel.com>

Reviewed-by: Liming Gao <liming.gao@intel.com>

> -----Original Message-----
> From: Shi, Steven
> Sent: Tuesday, August 27, 2019 1:17 PM
> To: devel@edk2.groups.io
> Cc: Gao, Liming <liming.gao@intel.com>; Feng, Bob C <bob.c.feng@intel.com>; Shi, Steven <steven.shi@intel.com>
> Subject: [PATCH] BaseTools: Support more file types in build cache
> 
> From: "Shi, Steven" <steven.shi@intel.com>
> 
> BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1958
> 
> Current build cache does not store and restore all
> types file of Hii/vfr, version and dpx. This patch
> adds more file types to support them in build cache.
> 
> Cc: Liming Gao <liming.gao@intel.com>
> Cc: Bob Feng <bob.c.feng@intel.com>
> Signed-off-by: Steven Shi <steven.shi@intel.com>
> ---
>  BaseTools/Source/Python/AutoGen/ModuleAutoGen.py | 34 ++++++++++++++--------------------
>  1 file changed, 14 insertions(+), 20 deletions(-)
> 
> diff --git a/BaseTools/Source/Python/AutoGen/ModuleAutoGen.py b/BaseTools/Source/Python/AutoGen/ModuleAutoGen.py
> index 2cd0d3859e..4f17dee9a4 100755
> --- a/BaseTools/Source/Python/AutoGen/ModuleAutoGen.py
> +++ b/BaseTools/Source/Python/AutoGen/ModuleAutoGen.py
> @@ -1267,29 +1267,30 @@ class ModuleAutoGen(AutoGen):
>      @cached_property
>      def OutputFile(self):
>          retVal = set()
> +
>          OutputDir = self.OutputDir.replace('\\', '/').strip('/')
>          DebugDir = self.DebugDir.replace('\\', '/').strip('/')
> -        FfsOutputDir = self.FfsOutputDir.replace('\\', '/').rstrip('/')
>          for Item in self.CodaTargetList:
>              File = Item.Target.Path.replace('\\', '/').strip('/').replace(DebugDir, '').replace(OutputDir, '').strip('/')
> -            retVal.add(File)
> -        if self.DepexGenerated:
> -            retVal.add(self.Name + '.depex')
> +            NewFile = path.join(self.OutputDir, File)
> +            retVal.add(NewFile)
> 
>          Bin = self._GenOffsetBin()
>          if Bin:
> -            retVal.add(Bin)
> +            NewFile = path.join(self.OutputDir, Bin)
> +            retVal.add(NewFile)
> 
> -        for Root, Dirs, Files in os.walk(OutputDir):
> +        for Root, Dirs, Files in os.walk(self.OutputDir):
>              for File in Files:
> -                if File.lower().endswith('.pdb'):
> -                    retVal.add(File)
> +                # lib file is already added through above CodaTargetList, skip it here
> +                if not (File.lower().endswith('.obj') or File.lower().endswith('.lib')):
> +                    NewFile = path.join(self.OutputDir, File)
> +                    retVal.add(NewFile)
> 
> -        for Root, Dirs, Files in os.walk(FfsOutputDir):
> +        for Root, Dirs, Files in os.walk(self.FfsOutputDir):
>              for File in Files:
> -                if File.lower().endswith('.ffs') or File.lower().endswith('.offset') or File.lower().endswith('.raw') \
> -                    or File.lower().endswith('.raw.txt'):
> -                    retVal.add(File)
> +                NewFile = path.join(self.FfsOutputDir, File)
> +                retVal.add(NewFile)
> 
>          return retVal
> 
> @@ -1659,15 +1660,8 @@ class ModuleAutoGen(AutoGen):
>              Ma = self.BuildDatabase[self.MetaFile, self.Arch, self.BuildTarget, self.ToolChain]
>              self.OutputFile = Ma.Binaries
>          for File in self.OutputFile:
> -            File = str(File)
> -            if not os.path.isabs(File):
> -                NewFile = os.path.join(self.OutputDir, File)
> -                if not os.path.exists(NewFile):
> -                    NewFile = os.path.join(self.FfsOutputDir, File)
> -                File = NewFile
>              if os.path.exists(File):
> -                if File.lower().endswith('.ffs') or File.lower().endswith('.offset') or File.lower().endswith('.raw') \
> -                    or File.lower().endswith('.raw.txt'):
> +                if File.startswith(os.path.abspath(self.FfsOutputDir)+os.sep):
>                      self.CacheCopyFile(FfsDir, self.FfsOutputDir, File)
>                  else:
>                      self.CacheCopyFile(FileDir, self.OutputDir, File)
> --
> 2.17.1


      reply	other threads:[~2019-09-02  1:48 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-08-27  5:16 [PATCH] BaseTools: Support more file types in build cache Steven Shi
2019-09-02  1:48 ` Liming Gao [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4A89E2EF3DFEDB4C8BFDE51014F606A14E4F00E1@SHSMSX104.ccr.corp.intel.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox