Giter Site home page Giter Site logo

archaeologist's Introduction

Archaeologist

Build Status

A Clojure library to help you read versioned directories at a specific moment of time. Used internally in Beanstalk. It works with local Subversion and Git repositories as well as regular unversioned directories. VCS support is provided by SVNKit and JGit.

Installation

Add the following dependency to your project.clj file:

[archaeologist "0.1.1"]

Usage

Require the core and all needed VCS adapters:

(require '[archaeologist.core :refer :all])
(require '[archaeologist.git :as git])
(require '[archaeologist.subversion :as subversion])
(require '[archaeologist.fs :as fs])

Recursively list files for current mainstream version:

(with-repository [repo (git/open-repository "test/fixtures/git")]
  (list-files repo (get-default-version repo)))

; => [{:kind "file", :path "a"} {:kind "file", :path "b"} {:kind "dir", :path "c"} {:kind "file", :path "c/d"} {:kind "file", :path "c/e"} {:kind "dir", :path "c/f"} {:kind "file", :path "c/f/g"}]

Recursively list files in directory:

(with-repository [repo (subversion/open-repository "test/fixtures/svn")]
  (list-files repo (get-default-version repo) "c"))

; => [{:kind "dir", :path "f"} {:kind "file", :path "f/g"} {:kind "file", :path "d"} {:kind "file", :path "e"}]

Read a file:

(with-repository [repo (fs/open-repository "test/fixtures/fs")]
  (read-file repo (get-default-version repo) "c/f/g"))

; => #<byte[] [B@6c017b07>

By composing these simple operations you should be able to work with versioned directory trees as if they were regular directories. Check out the tests for more usage examples.

Running tests locally

Unzip fixtures into test directory:

unzip test/fixtures.zip -d test

License

Copyright © 2014 Wildbit, LLC

Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.

archaeologist's People

Contributors

dsabanin avatar temochka avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Forkers

seanpm2001

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.