MCPcopy Index your code
hub / github.com/SpongePowered/Configurate

github.com/SpongePowered/Configurate @4.2.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release 4.2.0 ↗ · + Follow
2,061 symbols 7,975 edges 248 files 716 documented · 35%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Configurate

GitHub Workflow Status (branch) MIT License Maven Central Sonatype Nexus (Snapshots)

Configurate is a simple configuration library for Java applications that provides a node-based representation of data, able to handle a wide variety of configuration formats.

Want to talk to us about Configurate? Join us in the #dev channel on our Discord or start a thread on our (new!) Discussions page.

The current supported formats are:

Project Structure

The project is split into different modules.

Configurate core

configurate-core is the base of the library, containing the main APIs used to manipulate configurations. It is generic, and does not depend on any specific format of configuration.

Configurate loaders

Each distinct configuration format is implemented as a "configuration loader", in a separate module.

A number of loader implementations are provided as standard in this project, however it is possible to implement a custom loader for a new format separately.

The current supported loaders provided by the project are:

  • configurate-gson - Implementation for the JSON format, using the Gson library for parsing and generation
  • configurate-hocon - Implementation for the HOCON format, using the lightbend config library for parsing and generation
  • configurate-jackson - Implementation for the JSON format, using the Jackson library for parsing and generation
  • configurate-xml - Implementation for the XML format, using the JAXP library for parsing and generation
  • configurate-yaml - Implementation for the YAML format, using the SnakeYAML library for parsing and generation

extras

Some features that don't need tight integration with Configurate itself are provided as separate modules. These are:

  • configurate-extra-dfu[2-4] - Integration between Mojang's DataFixerUpper and Configurate's systems.
  • configurate-extra-kotlin - Extensions to allow Configurate types to use Kotlin features, and support for Kotlin data classes in the object mapper.
  • configurate-extra-guice - Allows using a Guice Injector to create new object instances in the object mapper.

Usage

  • To use Configurate, your project must be configured to use Java 8 or higher.
  • Releases are on Maven Central and snapshot artifacts are hosted on Sonatype OSS. Builds are also included on SpongePowered's Maven Repository , available at https://repo.spongepowered.org/maven/.

If your project uses Maven or Gradle, just add the following to your build scripts.

Gradle

repositories {
    mavenCentral()
}

dependencies {
    // Modify this line to target the loader you wish to use.
    compile 'org.spongepowered:configurate-hocon:4.0.0'
}

Maven

<dependencies>
    <dependency>
        <groupId>org.spongepowered</groupId>

        <artifactId>configurate-hocon</artifactId>
        <version>4.0.0</version>
    </dependency>
</dependencies>

More detailed usage instructions can be found in the Configurate wiki.

Contributing

Clone

The following steps will ensure your project is cloned properly.

  1. git clone https://github.com/SpongePowered/Configurate.git --recurse-submodules
  2. cd Configurate

Building

Note: If you do not have Gradle 7.0+ installed then use ./gradlew for Unix systems or Git Bash and gradlew.bat for Windows systems in place of any 'gradle' command.

In order to build Configurate you simply need to run the gradle build command. You can find the compiled JAR files in ./build/libs (found in each subproject) labeled similarly to '-x.x.x-SNAPSHOT.jar'.

While the entire project can run on Java 8, the project requires Java 11 to build, and for multi-release JAR contents and some tests requires at least Java 16. Gradle will automatically download necessary JDK versions -- see their documentation for details on this feature, and how to point it at existing local installations.

Pull Requests

We love PRs! However, when contributing, here are some things to keep in mind:

  • Take a look at open issues first before you get too far in -- someone might already be working on what you were planning on doing
  • In general, we follow the Sponge style guidelines for code style -- see the Contributing Guidelines for details.
  • Please, please, please test PRs. It makes the process a lot easier for everybody :)

Extension points exported contracts — how you extend this code

MapFactory (Interface)
A factory which creates thread-safe map instances. @since 4.0.0 [8 implementers]
core/src/main/java/org/spongepowered/configurate/util/MapFactory.java
CommentHandler (Interface)
Extracts comments from a buffered reader or collection of lines. @since 4.0.0 [5 implementers]
core/src/main/java/org/spongepowered/configurate/loader/CommentHandler.java
ConfigurationVisitor (Interface)
A visitor to traverse node hierarchies in a depth-first order. Instances of stateful implementations may be reusable [3 …
core/src/main/java/org/spongepowered/configurate/ConfigurationVisitor.java
Disposable (Interface)
A representation of something that requires resources. @since 4.0.0 [3 implementers]
core/src/main/java/org/spongepowered/configurate/reactive/Disposable.java
Subscriber (Interface)
A listener to events that may be called by an Publisher. For every publisher this subscriber is subscribed t [3 implementers]
core/src/main/java/org/spongepowered/configurate/reactive/Subscriber.java

Core symbols most depended-on inside this repo

node
called by 401
core/src/main/java/org/spongepowered/configurate/ConfigurationNode.java
raw
called by 319
core/src/main/java/org/spongepowered/configurate/ConfigurationNode.java
set
called by 190
core/src/main/java/org/spongepowered/configurate/ConfigValue.java
root
called by 182
core/src/main/java/org/spongepowered/configurate/BasicConfigurationNode.java
get
called by 164
core/src/main/java/org/spongepowered/configurate/NodePath.java
getType
called by 119
extra/dfu2/src/main/java/org/spongepowered/configurate/extra/dfu/v2/ConfigurateOps.java
deserialize
called by 113
core/src/main/java/org/spongepowered/configurate/serialize/TypeSerializer.java
build
called by 111
core/src/main/java/org/spongepowered/configurate/objectmapping/ObjectMapper.java

Shape

Method 1,671
Class 285
Interface 60
Function 32
Enum 13

Languages

Java96%
Kotlin4%

Modules by API surface

core/src/test/java/org/spongepowered/configurate/serialize/TypeSerializersTest.java46 symbols
core/src/test/java/org/spongepowered/configurate/AbstractConfigurationNodeTest.java45 symbols
core/src/main/java/org/spongepowered/configurate/AbstractConfigurationNode.java44 symbols
core/src/main/java/org/spongepowered/configurate/serialize/ArraySerializer.java40 symbols
core/src/test/java/org/spongepowered/configurate/objectmapping/ObjectMapperTest.java39 symbols
extra/dfu4/src/main/java/org/spongepowered/configurate/extra/dfu/v4/ConfigurateOps.java38 symbols
extra/dfu3/src/main/java/org/spongepowered/configurate/extra/dfu/v3/ConfigurateOps.java38 symbols
core/src/main/java/org/spongepowered/configurate/ConfigurationNode.java38 symbols
core/src/main/java/org/spongepowered/configurate/serialize/TypeSerializerCollection.java36 symbols
core/src/main/java/org/spongepowered/configurate/util/Types.java32 symbols
core/src/main/java/org/spongepowered/configurate/loader/AbstractConfigurationLoader.java30 symbols
core/src/main/java/org/spongepowered/configurate/ConfigurationVisitor.java30 symbols

For agents

$ claude mcp add Configurate \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact