Class: Moab::StorageServices
- Inherits:
-
Object
- Object
- Moab::StorageServices
- Defined in:
- lib/moab/storage_services.rb
Overview
Copyright © 2012 by The Board of Trustees of the Leland Stanford Junior University. All rights reserved. See LICENSE for details.
An interface class to support access to SDR storage via a RESTful server
Data Model
-
StorageRepository = represents a digital object repository storage node
-
StorageServices = supports application layer access to the repository’s objects, data, and metadata
-
StorageObject = represents a digital object’s repository storage location and ingest/dissemination methods
-
StorageObjectVersion [1..*] = represents a version subdirectory within an object’s home directory
-
Bagger [1] = utility for creating bagit packages for ingest or dissemination
-
-
-
Direct Known Subclasses
Constant Summary collapse
- @@repository =
Returns an instance of the interface to SDR storage.
Moab::StorageRepository.new
Class Method Summary collapse
-
.current_version(object_id) ⇒ Integer
The version number of the currently highest version.
-
.deposit_branch(object_id) ⇒ Pathname
The branch segment of the object deposit path.
-
.deposit_trunk ⇒ String
The trunk segment of the object deposit path.
-
.find_storage_object(object_id, include_deposit = false) ⇒ StorageObject
The representation of a digitial object’s storage directory, which might not exist yet.
-
.object_path(object_id) ⇒ String
The location of the storage object.
-
.object_version_path(object_id, version_id = nil) ⇒ String
The location of the storage object version.
- .repository ⇒ Object
-
.retrieve_file(file_category, file_id, object_id, version_id = nil) ⇒ Pathname
Pathname object containing the full path for the specified file.
-
.retrieve_file_group(file_category, object_id, version_id = nil) ⇒ FileInventory
The file inventory for the specified object version.
-
.retrieve_file_signature(file_category, file_id, object_id, version_id = nil) ⇒ FileSignature
The signature of the file.
-
.retrieve_file_using_signature(file_category, file_signature, object_id, version_id = nil) ⇒ Pathname
Pathname object containing the full path for the specified file.
-
.storage_object(object_id, create = false) ⇒ StorageObject
The representation of a digitial object’s storage directory, which must exist.
-
.storage_roots ⇒ Array<Pathname>
A list of the filesystems currently used for storage.
-
.version_differences(object_id, base_version_id, compare_version_id) ⇒ FileInventoryDifference
The report of the version differences.
-
.version_metadata(object_id) ⇒ Pathname
Pathname object containing the full path for the specified file.
Class Method Details
.current_version(object_id) ⇒ Integer
Returns The version number of the currently highest version.
70 71 72 |
# File 'lib/moab/storage_services.rb', line 70 def self.current_version(object_id) @@repository.storage_object(object_id).current_version_id end |
.deposit_branch(object_id) ⇒ Pathname
Returns The branch segment of the object deposit path.
37 38 39 |
# File 'lib/moab/storage_services.rb', line 37 def self.deposit_branch(object_id) @@repository.deposit_branch(object_id) end |
.deposit_trunk ⇒ String
Returns The trunk segment of the object deposit path.
31 32 33 |
# File 'lib/moab/storage_services.rb', line 31 def self.deposit_trunk @@repository.deposit_trunk end |
.find_storage_object(object_id, include_deposit = false) ⇒ StorageObject
Returns The representation of a digitial object’s storage directory, which might not exist yet.
44 45 46 |
# File 'lib/moab/storage_services.rb', line 44 def self.find_storage_object(object_id, include_deposit=false) @@repository.find_storage_object(object_id, include_deposit) end |
.object_path(object_id) ⇒ String
Returns the location of the storage object.
57 58 59 |
# File 'lib/moab/storage_services.rb', line 57 def self.object_path(object_id) @@repository.storage_object(object_id).object_pathname.to_s end |
.object_version_path(object_id, version_id = nil) ⇒ String
Returns the location of the storage object version.
64 65 66 |
# File 'lib/moab/storage_services.rb', line 64 def self.object_version_path(object_id,version_id=nil) @@repository.storage_object(object_id).find_object_version(version_id).version_pathname.to_s end |
.repository ⇒ Object
21 22 23 |
# File 'lib/moab/storage_services.rb', line 21 def self.repository @@repository end |
.retrieve_file(file_category, file_id, object_id, version_id = nil) ⇒ Pathname
Returns Pathname object containing the full path for the specified file.
99 100 101 102 |
# File 'lib/moab/storage_services.rb', line 99 def self.retrieve_file(file_category, file_id, object_id, version_id=nil) storage_object_version = @@repository.storage_object(object_id).find_object_version(version_id) file_pathname = storage_object_version.find_filepath(file_category, file_id) end |
.retrieve_file_group(file_category, object_id, version_id = nil) ⇒ FileInventory
Returns the file inventory for the specified object version.
83 84 85 86 87 88 89 90 91 92 |
# File 'lib/moab/storage_services.rb', line 83 def self.retrieve_file_group(file_category, object_id, version_id=nil) storage_object_version = @@repository.storage_object(object_id).find_object_version(version_id) if file_category =~ /manifest/ inventory_type = file_category = 'manifests' else inventory_type = 'version' end inventory = storage_object_version.file_inventory(inventory_type) inventory.group(file_category) end |
.retrieve_file_signature(file_category, file_id, object_id, version_id = nil) ⇒ FileSignature
Returns The signature of the file.
119 120 121 122 |
# File 'lib/moab/storage_services.rb', line 119 def self.retrieve_file_signature(file_category, file_id, object_id, version_id=nil) storage_object_version = @@repository.storage_object(object_id).find_object_version(version_id) file_pathname = storage_object_version.find_signature(file_category, file_id) end |
.retrieve_file_using_signature(file_category, file_signature, object_id, version_id = nil) ⇒ Pathname
Returns Pathname object containing the full path for the specified file.
109 110 111 112 |
# File 'lib/moab/storage_services.rb', line 109 def self.retrieve_file_using_signature(file_category, file_signature, object_id, version_id=nil) storage_object_version = @@repository.storage_object(object_id).find_object_version(version_id) file_pathname = storage_object_version.find_filepath_using_signature(file_category, file_signature) end |
.storage_object(object_id, create = false) ⇒ StorageObject
Returns The representation of a digitial object’s storage directory, which must exist.
51 52 53 |
# File 'lib/moab/storage_services.rb', line 51 def self.storage_object(object_id, create=false) @@repository.storage_object(object_id, create) end |
.storage_roots ⇒ Array<Pathname>
Returns A list of the filesystems currently used for storage.
26 27 28 |
# File 'lib/moab/storage_services.rb', line 26 def self.storage_roots @@repository.storage_roots end |
.version_differences(object_id, base_version_id, compare_version_id) ⇒ FileInventoryDifference
Returns The report of the version differences.
128 129 130 131 132 133 134 |
# File 'lib/moab/storage_services.rb', line 128 def self.version_differences(object_id, base_version_id,compare_version_id) base_version = @@repository.storage_object(object_id).storage_object_version(base_version_id) compare_version = @@repository.storage_object(object_id).storage_object_version(compare_version_id) base_inventory=base_version.file_inventory('version') compare_inventory=compare_version.file_inventory('version') FileInventoryDifference.new.compare(base_inventory,compare_inventory) end |
.version_metadata(object_id) ⇒ Pathname
Returns Pathname object containing the full path for the specified file.
76 77 78 |
# File 'lib/moab/storage_services.rb', line 76 def self.(object_id) self.retrieve_file('metadata', 'versionMetadata.xml', object_id) end |