class EIFFEL_CLASS_PARSER
Multi-core distributed class parser
note
description: "Multi-core distributed class parser"
author: "Finnian Reilly"
copyright: "Copyright (c) 2001-2022 Finnian Reilly"
contact: "finnian at eiffel hyphen loop dot com"
license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
date: "2022-11-15 19:56:04 GMT (Tuesday 15th November 2022)"
revision: "12"
class
EIFFEL_CLASS_PARSER
inherit
EL_DISTRIBUTED_PROCEDURE_CALLBACK
create
make
feature -- Basic operations
queue (add_class: PROCEDURE [EIFFEL_CLASS]; source_path: FILE_PATH)
require
target_is_ecf: attached {EIFFEL_CONFIGURATION_FILE} add_class.target
do
wait_apply (agent filled_procedure (add_class, source_path))
end
feature {NONE} -- Separate function
filled_procedure (add_class: PROCEDURE [EIFFEL_CLASS]; source_path: FILE_PATH): PROCEDURE
do
if attached {EIFFEL_CONFIGURATION_FILE} add_class.target as ecf then
add_class.set_operands ([ecf.new_class (source_path)])
end
Result := add_class
end
end