Skip to content

alebastrov/exist

 
 

Repository files navigation

eXist Native XML Database

Build Status Java 8 License Download HipChat

This is the GitHub for the eXist Native XML Database.

If you're looking to work with the eXist source code, you've come to the right place. If not, you're probably looking for the eXist Documentation. The latest eXist release is available from http://www.exist-db.org, alternatively if you want the bleeding-edge then nightly builds are also available.

If you're looking for help or discussion, visit the eXist community mailing lists or consider purchasing the eXist book from O'Reilly.

Information for Developers

If you wish to work on the eXist source code we're now using Git (and GitHub) for our source code management. If you're not familiar with Git, we recommend this excellent online interactive tutorial.

Building eXist from Source

eXist itself is written in Java 8. The build system is Apache Ant.

To build eXist:

  • Checkout the Git Repository
  • Execute Ant to compile eXist
$ git clone git@github.com:eXist-db/exist.git
$ cd exist
$ git checkout master
$ ./build.sh

NOTE: In the above example, we switched the current (checked-out) branch from develop to master. We use the GitFlow for eXist process:

  • develop is the current (and stable) work-in-progress (the next release)
  • master is the latest release The choice of which to use is up to you.

HINT: In the example above, we use the SSH form of the GitHub repo URL to clone eXist. However, if you're behind a HTTP proxy and your organisation doesn't allow outgoing SSH connections, try the HTTPS URL for our GitHub repo https://github.com/eXist-db/exist.git.

From here, you now have a compiled version of eXist that you may use just as you would an installed version of eXist, however it may be desirable to package this up for easy installation elsewhere. If you wish to create a simple ZIP distribution of eXist, run:

$ ./build.sh dist-zip

To build a full Installer for eXist, you'll need to have IzPack installed. Set your path to IzPack in exist/build.properties and run:

$ ./build.sh installer

Otherwise, you may wish to deploy eXist into a Web Application Server as a WAR file. We provide a build for that, too:

$ ./build.sh dist-war

For more build options, see the eXist Build Documentation.

Contributing to eXist

We welcome all contributions to eXist!

We strongly suggest that you join the eXist-development mailing list and also subscribe to the eXist-commits mailing list, so that you can collaborate with the eXist team and be kept up to date with changes to the codebase.

eXist uses the GitFlow branching model for development. Specifically, we're using the AVH Edition of GitFlow tools version.

If you're not familiar with GitFlow, check out some of the good tutorials linked in "Getting Started" of the GitFlow AVH Edition page. There's also a very good git-flow cheatsheet.

If you wish to contribute, the general approach is:

  • Fork the repo on GitHub
  • git clone your fork
  • Make sure you've GitFlow AVH Edition installed
  • Run git flow init on the cloned repo using these settings.
  • Use Git Flow to start a hotfix or feature i.e. git flow feature start my-feature.
  • Do your stuff! :-)
  • Commit to your repo. We like small, atomic commits that don't mix concerns.
  • Do NOT finish the hotfix or feature with GitFlow.
  • Make sure your branch is based on the latest eXist develop branch before making a pull-request. This will ensure that we can easily merge in your changes. See Syncing a Fork.
  • Push your hotfix or feature branch to your GitHub using GitFlow: git flow feature publish my-feature.
  • Send us a Pull Request on GitHub from your branch to our develop branch.
  • Once the Pull Request is merged you can delete your branch, you need not finish or merge it, you will however want to sync your develop branch to bring back your changes. See Syncing a Fork.

Pull Requests are reviewed and tested before they're merged by the core development team. However, we have one golden rule, even within the core team: never merge your own pull request. This simple-but-important rule ensures that at least two people have considered the change.

Although the following are taken from our Developer Manifesto and Code Review Guide, the main things that get a Pull Request accepted are:

  • Only change what you need to. If you must reformat code, keep it in a separate commit to any syntax or functionality changes.
  • Test. If you fix something prove it, write a test that illustrates the issue before you fix the issue and validate the test. If you add a new feature it needs tests, so that we can understand its intent and try to avoid regressions in future as much as possible.
  • Make sure the appropriate licence header appears at the top of your source code file. We use LGPL v2.1 for eXist and strongly encourage that, but ultimately any compatible OSI approved license without further restrictions may be used.
  • Run the full eXist test suite. We don't accept code that causes regressions.

Do I work on a bug-fix using a feature or a hotfix?

If you want to contribute a bug-fix, you need to consider whether this is a feature or a hotfix in GitFlow terminology.

Making the determination involves considering how the bug-fix is to be applied and how it is to be applied. First, you should carefully read the "Feature branches" and "Hotfix branches" sections from A successful Git branching model.

If you're still unsure, consider:

  • The bug-fix is a hotfix if it is critical and needs to go into a very soon to be released revision version i.e. 2.1.n to address an immediate production issue.
  • Otherwise it is a feature, i.e. its just standard development towards the next release of eXist.

Even for a bug-fix you should most probably use a feature. If you're certain you want to create a hotfix, please consider discussing first via the exist-development mailing list.

Help! I am a human, what does this all mean?

  • You work in features using GitFlow in your own fork of our repo.
  • If you want to push your feature to your fork before you have finished it locally, i.e. for the purposes of backup or collaboration, you can use git flow feature publish my-feature.
  • You will only ever send Pull Requests between your 'develop' branch and our 'develop' branch. i.e. finished features.
  • If you follow the details above and make it easy for us to accept your Pull Requests, they will get accepted and merged quickly!

Syncing a Fork

Your fork will eventually become out of sync with the upstream repo as others contribute to eXist. To pull upstream changes into your fork, you have two options:

  1. Merging.
  2. Rebasing.

Rebasing leads to a cleaner revision history which is much easier to follow and is our preferred approach. However, git rebase is a very sharp tool and must be used with care. For those new to rebase, we would suggest having a backup of your local (and possibly remote) git repos before continuing. Read on to learn how to sync using rebase.

Rebase Example

Lets say that you have a fork of eXist's GitHub repo, and you have been working in your feature branch called my-feature for sometime, you are happy with how your work is progressing, but you want to sync so that your changes are based on the latest and greatest changes from eXist. The way to do this using git rebase is as follows:

  1. If you have any un-committed changes you need to stash them using: git stash save "changes before rebase".

  2. If you have not added eXist's GitHub as an upstream remote, you need to do so by running git remote add upstream https://github.com/exist-db/exist.git. You can view your existing remotes, by running git remote -v.

  3. You need to fetch the latest changes from eXist's GitHub: git fetch upstream. This will not yet change your local branches in any way.

  4. You should first sync your develop branch with eXist's develop branch. As you always work in feature branches, this should a simple fast-forward by running: git checkout develop and then git rebase upstream/develop.

  5. If all goes well in (4) then you can push your develop branch to your remote server (e.g. GitHub) with git push origin develop.

  6. You can then replay your work in your feature branch my-feature atop the lastest changes from the develop branch by running: git checkout feature/my-feature and then git rebase develop.

  7. Should you encounter any conflicts during (5) you can resolve them using git mergetool and then git rebase --continue.

  8. If all goes well in (5), and take care to check your history is correct with git log, then you can force push your feature/my-feature branch to your remote server (e.g. GitHub) with git push -f origin feature/my-feature. NOTE the reason you need to use the -f to force the push is because the commit ids of your revisions will have changed after the rebase.

Note that it is worth syncing your branches that you are working on relatively frequently to prevent any large rebases which could lead to resolving many conflicting changes where your branch has diverged over a long period of time.

Our git-flow init settings

When we started working with the eXist repo we needed to configure it for GitFlow:

$ git flow init

Which branch should be used for bringing forth production releases?
   - master
Branch name for production releases: [master] 
Branch name for "next release" development: [develop] 

How to name your supporting branch prefixes?
Feature branches? [feature/] 
Release branches? [release/] 
Hotfix branches? [hotfix/] 
Support branches? [support/] 
Version tag prefix? [] eXist-
Hooks and filters directory? [.git/hooks]

A new develop branch is created, and checked out.

Verify it like this:

$ git status
# On branch develop

As we have already started with GitFlow, when you run git flow init, you'll get slightly different prompts--but the same answers apply!

You must use the following settings:

$ git flow init

Which branch should be used for bringing forth production releases?
   - develop
Branch name for production releases: [] master

Which branch should be used for integration of the "next release"?
   - develop
Branch name for "next release" development: [develop] 

How to name your supporting branch prefixes?
Feature branches? [feature/] 
Release branches? [release/] 
Hotfix branches? [hotfix/] 
Support branches? [support/] 
Version tag prefix? [] eXist-
Hooks and filters directory? [.git/hooks]

About

eXist Native XML Database and Application Platform

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 94.9%
  • XQuery 2.3%
  • JavaScript 1.2%
  • GAP 0.7%
  • HTML 0.4%
  • Shell 0.1%
  • Other 0.4%