Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorporating Gradle tasks for automatically installing JEP #1400

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

akuleshov7
Copy link

What's Done:

  1. Introduced the installJep task to facilitate the automatic installation of JEP from https://github.com/icemachined/jep-distro/.

  2. Centralized and encapsulated the logic for JEP search and installation: all the relevant logic has been relocated to the Gradle task, separating it from the main code. The main code will now simply utilize the JEP stored in the build/jep directory.

…ng JEP binaries for the Python frontend

### What's Done:
1) Introduced the `installJep` task to facilitate the automatic installation of JEP from [https://github.com/icemachined/jep-distro/](https://github.com/icemachined/jep-distro/).

2) Centralized and encapsulated the logic for JEP search and installation: all the relevant logic has been relocated to the Gradle task, separating it from the main code. The main code will now simply utilize the JEP stored in the `build/jep` directory.
@CLAassistant
Copy link

CLAassistant commented Dec 24, 2023

CLA assistant check
All committers have signed the CLA.

)
}
// try system-wide paths, too
// TODO: is this still needed?
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, it is not... Except your GitHub CI:

            find /opt/hostedtoolcache/Python/ -name libjep.so -exec sudo cp '{}' /usr/lib/ \;

And actually you do the same with usr/lib that I did with build/jep

@akuleshov7
Copy link
Author

Please check @oxisto

@oxisto
Copy link
Member

oxisto commented Dec 25, 2023

cc @maximiliankaul

@oxisto
Copy link
Member

oxisto commented Dec 25, 2023

Thanks for your contribution! (And signing the CLA ;) Looks like an interesting idea, I will have some time between Christmas and New Years to look at this as well.

@akuleshov7
Copy link
Author

Thanks for your contribution! (And signing the CLA ;) Looks like an interesting idea, I will have some time between Christmas and New Years to look at this as well.

Thanks! Happy holidays! Please also approve a workflow (I added 1 commit, trying to fix build with JEP)

Copy link
Member

@oxisto oxisto left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In general, I like that idea of using the jep-distro files, but I wonder if moving the logic from runtime to compile time is a good idea for non-distro-supported systems.

MainInterpreter.setJepLibraryPath(it.toString())
// To understand how JEP is installed under the hood, check `installJep` task in
// build.gradle.kts. But the main idea is that it is always copied to `build/jep` directory.
val jepLocation = FileSystems.getDefault().getPath("build", "jep")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since you moved the detection logic from runtime to build-time I wonder what happens in the following scenario:

I am running on darwin/arm64 and if I use the CPG library as a dependency, I have no way of "injecting" my JEP into the jar that I am using. Do I then need to place my JEP locally somewhere in a build/jep folder? This seems counter-intuitive to me.

What was the reasoning behind moving this logic to the build-stage?

| Your system architecture, identified as <${System.getProperty("os.arch")}>, is not supported in icemachined/jep-distro.
| Consequently, you are required to install it manually. Here are the potential solutions:
| 1. Utilize Homebrew/pip package manager to facilitate the JEP installation process;
| 2. Create a virtual environment with the specified environment variable CPG_PYTHON_VIRTUALENV set to /(user.home)/.virtualenv/CPG_PYTHON_VIRTUALENV;
Copy link
Member

@oxisto oxisto Dec 27, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sometimes its .virtualenv and sometimes .virtualenvs

@maximiliankaul
Copy link
Contributor

Hi @akuleshov7 ,
thanks so much for our PR. I'm a bit undecided whether I like it or not:

  • The entire JEP installation / configuration process has always been a pain for us and we applaud any effort to improve this situation 👍
  • I'm very hesitant to include a dependency to icemachined as this does not seem to be related with the JEP project / it's unclear to me how well this will be maintained.
  • Your PR does not work on my machine (Linux). Setting the CPG_PYTHON_VIRTUALENV=cpg env variable still results in the Your system architecture, identified as <amd64>, is not supported in icemachined/jep-distro. error message.
  • Can you please comment on the following usecases which are important to us:
    • We are using the CPG in other projects as a dependency. How does this work with your PR?
    • Your PR / icemachined only supports x86, correct? We do not want do drop ARM support.
    • We have to fix a Python version in the build process (i.e. on Github) and this version is required on any client using the Github build, correct? We would like to avoid a scenario like this.

We will discuss testing this with some other projects and see if anything breaks. Any improvement in the JEP install logic is very welcome to us.

@akuleshov7
Copy link
Author

  • I'm very hesitant to include a dependency to icemachined as this does not seem to be related with the JEP project / it's unclear to me how well this will be maintained.

@icemachined, Dima, how well do you maintain JEP-distro? 😄

MainInterpreter.setJepLibraryPath(it.toString())
// To understand how JEP is installed under the hood, check `installJep` task in
// build.gradle.kts. But the main idea is that it is always copied to `build/jep` directory.
val jepLocation = FileSystems.getDefault().getPath("build", "jep")

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it's better to put jep in jep-distro/jep and then put jep-distro to include path.

// Based on the host OS we will determine the extension for the JEP binary
val os = System.getProperty("os.name")
val jepBinary = "libjep." + when {
os.contains("Mac") -> "jnilib"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

more common approach
os.contains("win")
os.contains("nix") || os.contains("nux") || os.contains("aix")
os.contains("mac")

else -> throw IllegalStateException("Cannot install JEP for this operating system: [$os]")
}

// If JEP already exists on the current host machine, there's no need to copy it from the distribution archive.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what if you want to install jep for different python version or distro version?

jepLocation /
("libjep." +
when {
os.contains("Mac") -> "jnilib"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

more common approach
os.contains("win")
os.contains("nix") || os.contains("nux") || os.contains("aix")
os.contains("mac")

config.redirectStdErr(System.err)
config.redirectStdout(System.out)

System.getenv("CPG_JEP_LIBRARY")?.let {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

need to keep possibility to use jep from custom location

@icemachined
Copy link

icemachined commented Dec 28, 2023

  • I'm very hesitant to include a dependency to icemachined as this does not seem to be related with the JEP project / it's unclear to me how well this will be maintained.

@icemachined, Dima, how well do you maintain JEP-distro? 😄

I'm not modifying jep I just perform jep build on github and publish it on maven, you can see the code here https://github.com/icemachined/jep-distro. If there will be any issues I can fix it or accept your fix.
@maximiliankaul we already collaborated with you in #1032 :)

@maximiliankaul
Copy link
Contributor

  * Your PR / icemachined only supports x86, correct? We do not want do drop ARM support.
  * We have to fix a Python version in the build process (i.e. on Github) and this version is required on any client using the Github build, correct? We would like to avoid a scenario like this.

Is there any update on these two points? @oxisto, if I remember correctly, we can live without the ARM support (although we would like to keep it as some of our team work on ARM machines), but the second point is a deal breaker for us, right?

@icemachined
Copy link

icemachined commented Mar 27, 2024

  • Your PR / icemachined only supports x86, correct? We do not want do drop ARM support.
  • We have to fix a Python version in the build process (i.e. on Github) and this version is required on any client using the Github build, correct? We would like to avoid a scenario like this.

Is there any update on these two points? @oxisto, if I remember correctly, we can live without the ARM support (although we would like to keep it as some of our team work on ARM machines), but the second point is a deal breaker for us, right?

Hi @maximiliankaul , jep-distro currently support ARM, latest release have ARM libraries tested on M2. so if you need we can update pr with ARM support

@maximiliankaul
Copy link
Contributor

  • Your PR / icemachined only supports x86, correct? We do not want do drop ARM support.
  • We have to fix a Python version in the build process (i.e. on Github) and this version is required on any client using the Github build, correct? We would like to avoid a scenario like this.

Is there any update on these two points? @oxisto, if I remember correctly, we can live without the ARM support (although we would like to keep it as some of our team work on ARM machines), but the second point is a deal breaker for us, right?

Hi @maximiliankaul , jep-distro currently support ARM, latest release have ARM libraries tested on M2. so if you need we can update pr with ARM support

That's great to hear :) When we first checked this PR, there was no support / we missed this.
However, as we mentioned above, the deal breaker is fixing the Python version at compile time. Please don't get me wrong: we don't like the current solution and welcome any improvements (and this PR is an improvement in many ways), but we don't want to lose the ability to build the CPG once (e.g. here on Github) and distribute it to machines running different versions of Python. This is not achievable with this PR right now, is it?

@icemachined
Copy link

icemachined commented Mar 27, 2024

That's great to hear :) When we first checked this PR, there was no support / we missed this. However, as we mentioned above, the deal breaker is fixing the Python version at compile time. Please don't get me wrong: we don't like the current solution and welcome any improvements (and this PR is an improvement in many ways), but we don't want to lose the ability to build the CPG once (e.g. here on Github) and distribute it to machines running different versions of Python. This is not achievable with this PR right now, is it?

Yes you are right seems like this is not achievable in this pr. But it is achievable in general, because jep-distro contains builds for all architectures and versions of python starting from 3.6 till 3.12. You could include all required versions in distro (the size is not very big) and unpack one of them in runtime to tmp depending on current version of python.
The only restriction is glibc version, currently it is build on github with ubuntu-20.04 , if you use earlier versions of linux with older glibc there can be incompartibilities. for x86 and arm there was no problems

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants