1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
module RGen
module Fragment
# Caches model fragments in Ruby dump files.
#
# Dump files are created per each fragment file.
#
# The main goal is to support fast loading and joining of fragments. Therefore the cache
# stores additional information which makes the joining process faster (adding to
# environment, resolving references)
#
class DumpFileCache
# +cache_map+ must be an object responding to +load_data+ and +store_data+
# for loading or storing data associated with a file;
# this can be an instance of Util::FileCacheMap
def initialize(cache_map)
@cache_map = cache_map
end
# Note that the fragment must not be connected to other fragments by resolved references
# unresolve the fragment if necessary
def store(fragment)
fref = fragment.fragment_ref
# temporarily remove the reference to the fragment to avoid dumping the fragment
fref.fragment = nil
@cache_map.store_data(fragment.location,
Marshal.dump({
:root_elements => fragment.root_elements,
:elements => fragment.elements,
:index => fragment.index,
:unresolved_refs => fragment.unresolved_refs,
:fragment_ref => fref,
:data => fragment.data
}))
fref.fragment = fragment
end
def load(fragment)
dump = @cache_map.load_data(fragment.location)
return :invalid if dump == :invalid
header = Marshal.load(dump)
fragment.set_root_elements(header[:root_elements],
:elements => header[:elements],
:index => header[:index],
:unresolved_refs => header[:unresolved_refs])
fragment.data = header[:data]
if header[:fragment_ref]
fragment.fragment_ref = header[:fragment_ref]
fragment.fragment_ref.fragment = fragment
else
raise "no fragment_ref in fragment loaded from cache"
end
end
end
end
end
|