Skip to content

hathitrust/ht-pairtree

Repository files navigation

HathiTrust::Pairtree

Tests

Deal with a Pairtree given an HTID.

Allows both reading and creation of the underlying pairtree directories

Examples

require 'ht/pairtree'

# rootdir defaults to ENV['SDRDATAROOT']/obj || '/sdr1/obj'
pt = HathiTrust::Pairtree.new 

# or pass it in explicitly
rootdir = '/mypairtree/root' 
pt = HathiTrust::Pairtree.new(root: rootdir)


id = 'uc1.c3292592'

pt.path_for(id)
# => #<Pathname:/sdr1/obj/uc1/pairtree_root/c3/29/25/92/c3292592>

# Equivalent method names
pt.path_to(id)
pt.dir(id)

# Get the underlying Pairtree object for an id

pairtree = pt.pairtree(id)

# ... or use the alias

pairtree = pt[id] 


### Create a new pairtree object (directory)

newthing = pt.create('one.two3four')
#=> HathiTrust::Pairtree::NamespaceDoesNotExist (because there's no pairtree at .../obj/one)
 
newthing = pt.create('one.two3four', new_namespace_allowed: true)
#=> Pairtree::Obj<blah blah blah>

htdir command line utility

ht-pairtree ships with a command-line utility htdir <id> <optional root> give a string representation of the directory for an htid. Potentially useful for something like

cd `htdir 'ia.ark:/13960/t9w10cs7x'`

I wanted to include an 'htcd' utility which would do exactly what's above, but ruby gems can't ship with shell scripts that will get found on the path, and ruby processes can't change the working directory for the parent shell. You can get the same effect with

function htcd() {
  cd `htdir "$1"`
}

Installation

Add this line to your application's Gemfile:

gem 'ht-pairtree'

And then execute:

    $ bundle

Or, install it yourself as:

$ gem install 'ht-pairtree'

Require it as

require 'ht/pairtree'

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/hathitrust/ht-pairtree

License

The gem is available as open source under the terms of the MIT License

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published