Sha256: 1eeffa8bc63adedda1528abe31de6b3fb6f9d41d9e51ca322550094d82fd0458

Contents?: true

Size: 1.53 KB

Versions: 5

Compression:

Stored size: 1.53 KB

Contents

=begin
    Copyright 2010-2022 Ecsypno <http://www.ecsypno.com>

    This file is part of the Arachni Framework project and is subject to
    redistribution and commercial restrictions. Please see the Arachni Framework
    web site for more information on licensing and terms of use.
=end

module Arachni
class State
class Framework

# State information for {Arachni::RPC::Server::Framework}.
#
# @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com>
class RPC

    # @return   [Support::LookUp::HashSet]
    attr_reader :distributed_pages

    # @return   [Set]
    attr_reader :distributed_elements

    def initialize
        @distributed_pages    = Support::LookUp::HashSet.new( hasher: :persistent_hash )
        @distributed_elements = Set.new
    end

    def statistics
        {
            distributed_pages:    @distributed_pages.size,
            distributed_elements: @distributed_elements.size
        }
    end

    def dump( directory )
        FileUtils.mkdir_p( directory )

        %w(distributed_pages distributed_elements).each do |attribute|
            IO.binwrite( "#{directory}/#{attribute}", Marshal.dump( send(attribute) ) )
        end
    end

    def self.load( directory )
        rpc = new

        rpc.distributed_elements.merge Marshal.load( IO.binread( "#{directory}/distributed_elements" ) )
        rpc.distributed_pages.merge Marshal.load( IO.binread( "#{directory}/distributed_pages" ) )

        rpc
    end

    def clear
        @distributed_pages.clear
        @distributed_elements.clear
    end

end

end
end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
arachni-1.6.1.3 lib/arachni/state/framework/rpc.rb
arachni-1.6.1.2 lib/arachni/state/framework/rpc.rb
arachni-1.6.1.1 lib/arachni/state/framework/rpc.rb
arachni-1.6.1 lib/arachni/state/framework/rpc.rb
arachni-1.6.0 lib/arachni/state/framework/rpc.rb