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

feat: make slf4j optional with fallback on JUL #1178

Merged
merged 2 commits into from
Sep 23, 2024

Conversation

headius
Copy link
Contributor

@headius headius commented Sep 18, 2024

In order to avoid the hard dependency on slf4j, this patch abstracts the Logger interface and LoggerFactory factory to fall back on a java.util.logging-based implementation if slf4j is not present.

Fixes #1094

@headius
Copy link
Contributor Author

headius commented Sep 18, 2024

Note I have only implemented the bare minimum interface necessary to allow this patch to drop into existing code. Additional log levels and log level methods can be implemented in the future if necessary.

@gotson
Copy link
Collaborator

gotson commented Sep 19, 2024

Hi, thanks for the PR. Can you check the failing CI tests ?

@gotson
Copy link
Collaborator

gotson commented Sep 19, 2024

looks like you may have forgotten to commit the new Logger class

@headius
Copy link
Contributor Author

headius commented Sep 19, 2024

looks like you may have forgotten to commit the new Logger class

Classic! Re-pushed with the missing files.

Makefile.common Outdated Show resolved Hide resolved
@headius
Copy link
Contributor Author

headius commented Sep 19, 2024

I pushed two changes to address failures in a previous job run:

  • Apply spotless formatting to the two small javadocs in Logger and LoggerFactory.
  • Revert the changes to Makefile and Makefile.common as the slf4j jar file appears to be needed in those builds.

@gotson
Copy link
Collaborator

gotson commented Sep 19, 2024

Revert the changes to Makefile and Makefile.common as the slf4j jar file appears to be needed in those builds.

it shouldn't be, but it's been a while since i looked at it

@headius
Copy link
Contributor Author

headius commented Sep 19, 2024

it shouldn't be, but it's been a while since i looked at it

@gotson Originally the slf4j jar was added to those files during the addition of slf4j logging. Without the jar in CLASSPATH, the "amalgamation" job failed to run its javac targets. It is green now with the jar restored.

@headius
Copy link
Contributor Author

headius commented Sep 19, 2024

Everything is green now. The job "test aarch64 ubuntu_latest jdk21" took a very long time, but I assume that is because it is running aarch64 tests in an emulator on an x86_64 job runner.

@gotson
Copy link
Collaborator

gotson commented Sep 19, 2024

Without the jar in CLASSPATH, the "amalgamation" job failed to run its javac targets. It is green now with the jar restored.

we need to fix this, it should not be required. I pulled your PR code and tested locally, and the make native fails because of some issues in NativeDB.java:

"$JAVA_HOME/bin/javac"  -d target/common-lib -sourcepath src/main/java -h target/common-lib src/main/java/org/sqlite/core/NativeDB.java
src/main/java/org/sqlite/util/LoggerFactory.java:89: error: package org.slf4j does not exist
        final org.slf4j.Logger logger;
                       ^
src/main/java/org/sqlite/util/LoggerFactory.java:92: error: package org.slf4j does not exist
            logger = org.slf4j.LoggerFactory.getLogger(hostClass);
                              ^

I would say it's because you define this field in SLF4JLogger: final org.slf4j.Logger logger;

You can achieve the same behaviour by commenting the slf4j compile only block in pom.xml.

@gotson
Copy link
Collaborator

gotson commented Sep 19, 2024

Not sure we can work around that though, maybe using reflection ?

pom.xml Outdated
@@ -415,6 +415,7 @@
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.36</version>
<scope>compile</scope>
Copy link
Contributor

Choose a reason for hiding this comment

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

compile is already the default scope for a dependency with Maven. Adding it doesn't change anything : https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#dependency-scope

I guess if we want to make it optional it should not be automatically added transitively as a dependency and we should use the <optional>true</optional> configuration ? https://maven.apache.org/guides/introduction/introduction-to-optional-and-excludes-dependencies.html

Copy link
Collaborator

Choose a reason for hiding this comment

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

i am not very familiar with Maven, but when we reference the SLF4J package, java needs to know the package, even if it is not included in the build, to compile the code.

i think we can leave it as is, and leave slf4j in the makefile to compile NativeDB.java

Copy link
Contributor

@jcgay jcgay Sep 19, 2024

Choose a reason for hiding this comment

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

The <optional> configuration does not exclude the dependency for the sqlite-jdbc build. It will still be added to the classpath when compiling.

The <optional> configuration will only affect builds which depends on sqlite-jdbc. The slf4j-api will not be added as a transitive dependency. It should make the consumption easier like:

  • one that don't want to use SLF4J would add:
<dependencies>
    <dependency>
      <groupId>org.xerial</groupId>
      <artifactId>sqlite-jdbc</artifactId>
      <version>3.46.1.0</version>
    </dependency>
</dependencies>

instead of:

<dependencies>
    <dependency>
      <groupId>org.xerial</groupId>
      <artifactId>sqlite-jdbc</artifactId>
      <version>3.46.1.0</version>
    </dependency>
    <exclusions>
       <exclusion>
         <groupId>org.slf4j</groupId>
         <artifactId>slf4j-api</artifactId>
       </exclusion>
     </exclusions>
</dependencies>
  • one that want to use SLF4J would add:
<dependencies>
    <dependency>
      <groupId>org.xerial</groupId>
      <artifactId>sqlite-jdbc</artifactId>
      <version>3.46.1.0</version>
    </dependency>
<dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>1.7.36</version>
    </dependency>
</dependencies>

But if we want to use SLF4J the dependency should be already declared somewhere 😇.

It just triggers me because we say SLF4J is optional but it will still be added in the dependency graph if we don't exclude it explicitly. It may be not what people expect when using sqlite-jdbc but this is not necessarily a big deal if this is documented 😇.

Copy link
Collaborator

Choose a reason for hiding this comment

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

i guess optional would be better than compile then ?

Copy link
Contributor

@jcgay jcgay Sep 20, 2024

Choose a reason for hiding this comment

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

In fact this is an addition to the compile scope, it would be:

<dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>1.7.36</version>
            <scope>compile</scope>
            <optional>true</optional>
</dependency>

or just (which is equivalent):

<dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>1.7.36</version>
            <optional>true</optional>
</dependency>

Because with Maven, when a scope is not set, it is compile by default.

The other way to reproduce the same transitive mechanism behavior (not adding slf4j-api automatically in the classpath when you depend on sqlite-jdbc) would be to replace the compile scope by provided. But it does change a little the meaning because it would indicate that we really need slf4j-api at runtime and that it should be provided by something else (an application server, etc): https://stackoverflow.com/questions/40393098/when-to-use-optional-dependencies-and-when-to-use-provided-scope

My 2 cents is to make the dependency <optional> in sqlite-jdbc which will not resolve slf4j-api transitively when we depend on sqlite-jdbc and let the consumer use this logging facade or not 😇.

Copy link
Collaborator

Choose a reason for hiding this comment

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

My 2 cents is to make the dependency <optional> in sqlite-jdbc which will not resolve slf4j-api transitively when we depend on sqlite-jdbc and let the consumer use this logging facade or not 😇.

i am OK with that

Copy link
Contributor Author

@headius headius Sep 21, 2024

Choose a reason for hiding this comment

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

My 2 cents is to make the dependency <optional>

I did not know this! I will make the change and re-push.

In order to avoid the hard dependency on slf4j, this patch
abstracts the Logger interface and LoggerFactory factory to fall
back on a java.util.logging-based implementation if slf4j is not
present.

Fixes xerial#1094
@headius
Copy link
Contributor Author

headius commented Sep 21, 2024

I have updated the build to make slf4j optional, as @jcgay suggested. This should resolve the last few concerns about this PR, but let me know if anything else needs to change!

@gotson
Copy link
Collaborator

gotson commented Sep 23, 2024

@headius thanks for the PR. I have added one commit to update the coding tests for loggers. Thanks @jcgay for the maven insights.

@gotson gotson changed the title Make slf4j optional, fall back on j.u.logging feat: make slf4j optional with fallback on JUL Sep 23, 2024
@gotson gotson merged commit b8ea5ca into xerial:master Sep 23, 2024
31 checks passed
@headius headius deleted the optional_slf4j branch September 23, 2024 12:36
@headius
Copy link
Contributor Author

headius commented Sep 23, 2024

@gotson Thank you! Looking forward to the release.

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

Successfully merging this pull request may close these issues.

why was slf4j-api added as a dependency?
3 participants