public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Bret Barkelew" <bret.barkelew@microsoft.com>
To: "devel@edk2.groups.io" <devel@edk2.groups.io>,
	"nathaniel.l.desimone@intel.com" <nathaniel.l.desimone@intel.com>,
	"Desimone, Ashley E" <ashley.e.desimone@intel.com>
Cc: "Pandya, Puja" <puja.pandya@intel.com>,
	"Bjorge, Erik C" <erik.c.bjorge@intel.com>
Subject: Re: [PATCH 1/4] EdkRepo: Installer should remove obsolete dependencies
Date: Sun, 22 Mar 2020 18:18:52 +0000	[thread overview]
Message-ID: <CY4PR21MB0743060C3A668E45AC8A0032EFF30@CY4PR21MB0743.namprd21.prod.outlook.com> (raw)
In-Reply-To: <02A34F284D1DA44BB705E61F7180EF0AB5E0BA3C@ORSMSX114.amr.corp.intel.com>

[-- Attachment #1: Type: text/plain, Size: 16445 bytes --]

Seems fair. Thanks for the head up. 😊

- Bret

________________________________
From: devel@edk2.groups.io <devel@edk2.groups.io> on behalf of Nate DeSimone via Groups.Io <nathaniel.l.desimone=intel.com@groups.io>
Sent: Saturday, March 21, 2020 2:56:20 PM
To: Bret Barkelew <Bret.Barkelew@microsoft.com>; Desimone, Ashley E <ashley.e.desimone@intel.com>; devel@edk2.groups.io <devel@edk2.groups.io>
Cc: Pandya, Puja <puja.pandya@intel.com>; Bjorge, Erik C <erik.c.bjorge@intel.com>
Subject: [EXTERNAL] Re: [edk2-devel] [PATCH 1/4] EdkRepo: Installer should remove obsolete dependencies


I’m reading between the lines a little bit… but it seems like your response amounts to:



Acked-by: Bret Barkelew <Bret.Barkelew@microsoft.com>



Which I added to the commit: https://github.com/tianocore/edk2-staging/commit/79ba022e<https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Ftianocore%2Fedk2-staging%2Fcommit%2F79ba022e&data=02%7C01%7Cbret.barkelew%40microsoft.com%7C7844aa42c0d54d01cec208d7cde2b278%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637204245854647261&sdata=yteA9kEe%2FhNAWjDNYorj9sviOfcinyr%2BkZGgYHGWKwM%3D&reserved=0>



Hope that’s cool 😊.



From: Bret Barkelew <Bret.Barkelew@microsoft.com>
Sent: Friday, March 20, 2020 3:07 PM
To: Desimone, Ashley E <ashley.e.desimone@intel.com>; Desimone, Nathaniel L <nathaniel.l.desimone@intel.com>; devel@edk2.groups.io
Cc: Pandya, Puja <puja.pandya@intel.com>; Bjorge, Erik C <erik.c.bjorge@intel.com>
Subject: RE: [PATCH 1/4] EdkRepo: Installer should remove obsolete dependencies



Spiffy. Agreed; thanks for the background.



My only other concern would be the function name and if some future developer thought that was permission to add other modules to it.

Then again, maybe I’m just bikeshedding. Feel free to ignore.



- Bret



From: Desimone, Ashley E<mailto:ashley.e.desimone@intel.com>
Sent: Friday, March 20, 2020 1:21 PM
To: Desimone, Nathaniel L<mailto:nathaniel.l.desimone@intel.com>; Bret Barkelew<mailto:Bret.Barkelew@microsoft.com>; devel@edk2.groups.io<mailto:devel@edk2.groups.io>
Cc: Pandya, Puja<mailto:puja.pandya@intel.com>; Bjorge, Erik C<mailto:erik.c.bjorge@intel.com>
Subject: [EXTERNAL] RE: [PATCH 1/4] EdkRepo: Installer should remove obsolete dependencies



Thanks for the explanation.



Reviewed-by: Ashley DeSimone <ashley.e.deismone@intel.com<mailto:ashley.e.deismone@intel.com>>



From: Desimone, Nathaniel L <nathaniel.l.desimone@intel.com<mailto:nathaniel.l.desimone@intel.com>>
Sent: Thursday, March 19, 2020 2:01 PM
To: Bret Barkelew <Bret.Barkelew@microsoft.com<mailto:Bret.Barkelew@microsoft.com>>; Desimone, Ashley E <ashley.e.desimone@intel.com<mailto:ashley.e.desimone@intel.com>>; devel@edk2.groups.io<mailto:devel@edk2.groups.io>
Cc: Pandya, Puja <puja.pandya@intel.com<mailto:puja.pandya@intel.com>>; Bjorge, Erik C <erik.c.bjorge@intel.com<mailto:erik.c.bjorge@intel.com>>
Subject: Re: [PATCH 1/4] EdkRepo: Installer should remove obsolete dependencies



Hi Bret,



I alluded to this a little bit in the cover letter, completely agreed a more detailed explanation is needed.



There is an odd situation with the way GitPython’s dependencies are evolved over time. Initially, they had the following dependency graph:



  *   GitPython
     *   gitdb
        *   smmap



At some point in the past, they decided to make backwards incompatible API changes to gitdb and smmap, so the dependencies where updated as follows:



  *   GitPython
     *   gitdb2
        *   smmap2



However, now that Python 2.x is deprecated, any code that was using the old API will need updates anyway. So, the GitPython maintainers decided to go back to the original dependency tree. The issue is, gitdb2 and smmap2 wheels create packages in site-packages with the names gitdb and smmap, so installing gitdb2 and gitdb at the same time results in the gitdb folder in site-packages being overwritten. End result pretty crappy, whichever wheel was most recently installed is the one that will prevail in site-packages.



The way the GitPython maintainers addressed this problem is by converting gitdb2 and smmap2 into wheels with no content other than a dependency on gitdb and smmap. So when one does a pip upgrade those packages remain and you get a dependency graph that looks like this:



  *   GitPython
     *   gitdb2
        *   smmap2
  *   gitdb2
     *   gitdb
        *   smmap
  *   smmap2
     *   smmap





So, the net result for a regular pip upgrade leaves a fair amount of detritus sitting on the system which would not be present for a new user doing a clean install from pip. Obviously, we can do better than that which is why I’ve automated the uninstallation of smmap2 and gitdb2 before proceeding to upgrade GitPython. This also guarantees that the duplicate folder in site-packages situation does not happen at the same time.



The fact that the GitPython maintainers created this situation in the first place is rather annoying.



Thanks,

Nate



From: Bret Barkelew <Bret.Barkelew@microsoft.com<mailto:Bret.Barkelew@microsoft.com>>
Date: Thursday, March 19, 2020 at 12:44 PM
To: Ashley E Desimone <ashley.e.desimone@intel.com<mailto:ashley.e.desimone@intel.com>>, "Desimone, Nathaniel L" <nathaniel.l.desimone@intel.com<mailto:nathaniel.l.desimone@intel.com>>, "devel@edk2.groups.io<mailto:devel@edk2.groups.io>" <devel@edk2.groups.io<mailto:devel@edk2.groups.io>>
Cc: "Pandya, Puja" <puja.pandya@intel.com<mailto:puja.pandya@intel.com>>, "Bjorge, Erik C" <erik.c.bjorge@intel.com<mailto:erik.c.bjorge@intel.com>>
Subject: RE: [PATCH 1/4] EdkRepo: Installer should remove obsolete dependencies



Naïve question: why isn’t this upgrade handled when pip installs the new wheel? Are the dependencies not matched up correctly? I would think that pip would uninstall the old version on its own.



- Bret



From: Desimone, Ashley E<mailto:ashley.e.desimone@intel.com>
Sent: Thursday, March 19, 2020 12:32 PM
To: Desimone, Nathaniel L<mailto:nathaniel.l.desimone@intel.com>; devel@edk2.groups.io<mailto:devel@edk2.groups.io>
Cc: Pandya, Puja<mailto:puja.pandya@intel.com>; Bjorge, Erik C<mailto:erik.c.bjorge@intel.com>; Bret Barkelew<mailto:Bret.Barkelew@microsoft.com>
Subject: [EXTERNAL] RE: [PATCH 1/4] EdkRepo: Installer should remove obsolete dependencies



For the following section why are we singling out gitdb2 and smmap2 when deleting obsolete dependencies? Is there an alternative to hardcoding these values?

+                if (DeleteObsoletePackages)
+                {
+                    //
+                    // Delete obsolete dependencies
+                    //
+                    foreach (string PackageName in new string[] { "smmap2", "gitdb2" })
+                    {
+                        if (InstalledPackages.Where(p => p.Name == PackageName).FirstOrDefault() != null)
+                        {
+                            InstallLogger.Log(string.Format("Uninstalling {0}", PackageName));
+                            PythonOperations.UninstallPythonPackage(PythonPath, PackageName);
+                        }
+                    }
+                }

Thanks,
Ashley

-----Original Message-----
From: Desimone, Nathaniel L <nathaniel.l.desimone@intel.com<mailto:nathaniel.l.desimone@intel.com>>
Sent: Wednesday, March 18, 2020 8:17 PM
To: devel@edk2.groups.io<mailto:devel@edk2.groups.io>
Cc: Desimone, Ashley E <ashley.e.desimone@intel.com<mailto:ashley.e.desimone@intel.com>>; Pandya, Puja <puja.pandya@intel.com<mailto:puja.pandya@intel.com>>; Bjorge, Erik C <erik.c.bjorge@intel.com<mailto:erik.c.bjorge@intel.com>>; Bret Barkelew <Bret.Barkelew@microsoft.com<mailto:Bret.Barkelew@microsoft.com>>
Subject: [PATCH 1/4] EdkRepo: Installer should remove obsolete dependencies

Cc: Ashley DeSimone <ashley.e.desimone@intel.com<mailto:ashley.e.desimone@intel.com>>
Cc: Puja Pandya <puja.pandya@intel.com<mailto:puja.pandya@intel.com>>
Cc: Erik Bjorge <erik.c.bjorge@intel.com<mailto:erik.c.bjorge@intel.com>>
Cc: Bret Barkelew <Bret.Barkelew@microsoft.com<mailto:Bret.Barkelew@microsoft.com>>
Signed-off-by: Nate DeSimone <nathaniel.l.desimone@intel.com<mailto:nathaniel.l.desimone@intel.com>>
---
 .../EdkRepoInstaller/InstallWorker.cs         | 30 +++++++++-
 edkrepo_installer/linux-scripts/install.py    | 58 ++++++++++++-------
 2 files changed, 66 insertions(+), 22 deletions(-)

diff --git a/edkrepo_installer/EdkRepoInstaller/InstallWorker.cs b/edkrepo_installer/EdkRepoInstaller/InstallWorker.cs
index 8d824f2..b44e8fa 100644
--- a/edkrepo_installer/EdkRepoInstaller/InstallWorker.cs
+++ b/edkrepo_installer/EdkRepoInstaller/InstallWorker.cs
@@ -710,6 +710,7 @@ namespace TianoCore.EdkRepoInstaller
                 string PythonPath;
                 bool Has32Bit;
                 bool Has64Bit;
+                bool DeleteObsoletePackages = false;
                 PythonOperations.GetPythonBitness(PyInstance.Version.Major, PyInstance.Version.Minor, out Has32Bit, out Has64Bit);
                 if (Has32Bit && Has64Bit && PyInstance.Architecture == CpuArchitecture.IA32)
                 {
@@ -720,14 +721,39 @@ namespace TianoCore.EdkRepoInstaller
                     PythonPath = PythonOperations.FindPython(PyInstance.Version.Major, PyInstance.Version.Minor, false);
                 }
                 List<PythonPackage> InstalledPackages = PythonOperations.GetInstalledPythonPackages(PythonPath);
-                foreach(PythonWheel Wheel in PyInstance.Wheels)
+                foreach (PythonWheel Wheel in PyInstance.Wheels)
+                {
+                    //If a package is already installed, check if we have a newer version bundled in the installer
+                    //If yes, the package will be upgraded, make sure obsolete packages are uninstalled first
+                    PythonPackage InstalledPackage = InstalledPackages.Where(p => p.Name == Wheel.Package.Name.Replace('_', '-')).FirstOrDefault();
+                    if (InstalledPackage != null && InstalledPackage.Version < Wheel.Package.Version)
+                    {
+                        DeleteObsoletePackages = true;
+                        break;
+                    }
+                }
+                if (DeleteObsoletePackages)
+                {
+                    //
+                    // Delete obsolete dependencies
+                    //
+                    foreach (string PackageName in new string[] { "smmap2", "gitdb2" })
+                    {
+                        if (InstalledPackages.Where(p => p.Name == PackageName).FirstOrDefault() != null)
+                        {
+                            InstallLogger.Log(string.Format("Uninstalling {0}", PackageName));
+                            PythonOperations.UninstallPythonPackage(PythonPath, PackageName);
+                        }
+                    }
+                }
+                foreach (PythonWheel Wheel in PyInstance.Wheels)
                 {
                     //PythonPackage InstalledPackage = (from package in InstalledPackages
                     //                                  where package.Name == Wheel.Package.Name
                     //                                  select package).FirstOrDefault();
                     //If the package is already installed, check if we have a newer version bundled in the installer
                     //If so, upgrade the package
-                    PythonPackage InstalledPackage = InstalledPackages.Where(p => p.Name == Wheel.Package.Name).FirstOrDefault();
+                    PythonPackage InstalledPackage =
+ InstalledPackages.Where(p => p.Name == Wheel.Package.Name.Replace('_',
+ '-')).FirstOrDefault();
                     if (InstalledPackage != null)
                     {
                         if (InstalledPackage.Version < Wheel.Package.Version) diff --git a/edkrepo_installer/linux-scripts/install.py b/edkrepo_installer/linux-scripts/install.py
index 0ea486d..b2cdfed 100755
--- a/edkrepo_installer/linux-scripts/install.py
+++ b/edkrepo_installer/linux-scripts/install.py
@@ -3,7 +3,7 @@
 ## @file
 # install.py
 #
-# Copyright (c) 2018 - 2019, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2018 - 2020, Intel Corporation. All rights
+reserved.<BR>
 # SPDX-License-Identifier: BSD-2-Clause-Patent  #

@@ -53,6 +53,26 @@ def get_args():
     parser.add_argument('-v', '--verbose', action='store_true', default=False, help='Enables verbose output')
     return parser.parse_args()

+def get_installed_packages(python_command):
+    pip_cmd = [def_python, '-m', 'pip', 'list', '--legacy']
+    try:
+        res = default_run(pip_cmd)
+    except:
+        pip_cmd.pop(-1)
+        try:
+            res = default_run(pip_cmd)
+        except:
+            return ret_val
+    installed_packages = {}
+    for pip_mod in res.stdout.split('\n'):
+        try:
+            name, version = pip_mod.split()
+            version = version.strip().strip('()')
+        except:
+            continue
+        installed_packages[name] = version
+    return installed_packages
+
 def get_required_wheels():
     ret_val = collections.OrderedDict()
     if platform.machine() == 'x86_64':
@@ -79,27 +99,11 @@ def get_required_wheels():
                                                  'version':wheel.attrib['Version'],
                                                  'install':True}
             break
-    pip_cmd = [def_python, '-m', 'pip', 'list', '--legacy']
-    try:
-        res = default_run(pip_cmd)
-    except:
-        pip_cmd.pop(-1)
-        try:
-            res = default_run(pip_cmd)
-        except:
-            return ret_val
-    installed_modules = {}
-    for pip_mod in res.stdout.split('\n'):
-        try:
-            name, version = pip_mod.split()
-            version = version.strip().strip('()')
-        except:
-            continue
-        installed_modules[name] = version
+    installed_packages = get_installed_packages(def_python)
     for name in ret_val:
         #pip doesn't understand the difference between '_' and '-'
-        if name.replace('_','-') in installed_modules:
-            version = installed_modules[name.replace('_','-')]
+        if name.replace('_','-') in installed_packages:
+            version = installed_packages[name.replace('_','-')]
             if _check_version(version, ret_val[name]['version']) >= 0 and not ret_val[name]['uninstall']:
                 ret_val[name]['install'] = False
             else:
@@ -328,16 +332,30 @@ def do_install():
         if not os.path.isdir(whl_src_dir):
             log.info('- Missing wheel file directory')
             return 1
+        updating_edkrepo = False
         for whl_name in wheels_to_install:
             uninstall_whl = wheels_to_install[whl_name]['uninstall']
             whl_name = whl_name.replace('_','-')  #pip doesn't understand the difference between '_' and '-'
             if uninstall_whl:
+                updating_edkrepo = True
                 try:
                     res = default_run([def_python, '-m', 'pip', 'uninstall', '--yes', whl_name])
                 except:
                     log.info('- Failed to uninstall {}'.format(whl_name))
                     return 1
                 log.info('+ Uninstalled {}'.format(whl_name))
+
+        #Delete obsolete dependencies
+        if updating_edkrepo:
+            installed_packages = get_installed_packages(def_python)
+            for whl_name in ['smmap2', 'gitdb2']:
+                if whl_name in installed_packages:
+                    try:
+                        res = default_run([def_python, '-m', 'pip', 'uninstall', '--yes', whl_name])
+                    except:
+                        log.info('- Failed to uninstall {}'.format(whl_name))
+                        return 1
+                    log.info('+ Uninstalled {}'.format(whl_name))
         for whl_name in wheels_to_install:
             whl = wheels_to_install[whl_name]['wheel']
             install_whl = wheels_to_install[whl_name]['install']
--
2.24.0.windows.2







[-- Attachment #2: Type: text/html, Size: 38543 bytes --]

  reply	other threads:[~2020-03-22 18:18 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-19  3:16 [edk2-staging/EdkRepo] [PATCH 0/4] Update 3rd party dependencies Nate DeSimone
2020-03-19  3:16 ` [PATCH 1/4] EdkRepo: Installer should remove obsolete dependencies Nate DeSimone
2020-03-19 19:32   ` Desimone, Ashley E
2020-03-19 19:44     ` Bret Barkelew
2020-03-19 21:00       ` Nate DeSimone
2020-03-20 20:21         ` Desimone, Ashley E
2020-03-20 22:06           ` Bret Barkelew
2020-03-21 21:56             ` Nate DeSimone
2020-03-22 18:18               ` Bret Barkelew [this message]
2020-03-19  3:16 ` [edk2-staging/EdkRepo] [PATCH 2/4] EdkRepo: Remove old 3rd party dependencies Nate DeSimone
2020-03-19 16:48   ` Bjorge, Erik C
2020-03-19 19:39   ` Desimone, Ashley E
2020-03-19  3:16 ` [edk2-staging/EdkRepo] [PATCH 3/4] EdkRepo: Add new " Nate DeSimone
2020-03-19 16:49   ` Bjorge, Erik C
2020-03-19 19:40   ` Desimone, Ashley E
2020-03-19  3:16 ` [edk2-staging/EdkRepo] [PATCH 4/4] EdkRepo: Update 3rd party packages in installer config Nate DeSimone
2020-03-19 16:52   ` Bjorge, Erik C
2020-03-19 19:42   ` Desimone, Ashley E
2020-03-19 19:44 ` [edk2-staging/EdkRepo] [PATCH 0/4] Update 3rd party dependencies Desimone, Ashley E

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=CY4PR21MB0743060C3A668E45AC8A0032EFF30@CY4PR21MB0743.namprd21.prod.outlook.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