Class: Rambling::Trie::Serializers::Zip
- Inherits:
-
Object
- Object
- Rambling::Trie::Serializers::Zip
- Defined in:
- lib/rambling/trie/serializers/zip.rb
Overview
Zip file serializer. Dumps/loads contents from zip files. Automatically detects if zip file contains ‘.marshal` or `.yml` file
Instance Method Summary collapse
-
#dump(contents, filepath) ⇒ Numeric
Dumps contents and zips into a specified filepath.
-
#initialize(properties) ⇒ Zip
constructor
Creates a new Zip serializer.
-
#load(filepath) ⇒ String
Unzip contents from specified filepath and load in contents from unzipped files.
Constructor Details
#initialize(properties) ⇒ Zip
Creates a new Zip serializer.
12 13 14 |
# File 'lib/rambling/trie/serializers/zip.rb', line 12 def initialize properties @properties = properties end |
Instance Method Details
#dump(contents, filepath) ⇒ Numeric
Dumps contents and zips into a specified filepath.
41 42 43 44 45 46 47 48 49 50 51 52 53 |
# File 'lib/rambling/trie/serializers/zip.rb', line 41 def dump contents, filepath require 'zip' ::Zip::File.open filepath, ::Zip::File::CREATE do |zip| filename = ::File.basename filepath, '.zip' entry_path = path filename serializer = serializers.resolve filename serializer.dump contents, entry_path zip.add filename, entry_path end end |
#load(filepath) ⇒ String
Unzip contents from specified filepath and load in contents from unzipped files.
22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/rambling/trie/serializers/zip.rb', line 22 def load filepath require 'zip' ::Zip::File.open filepath do |zip| entry = zip.entries.first entry_path = path entry.name entry.extract entry_path serializer = serializers.resolve entry.name serializer.load entry_path end end |