class PYXIS_ECF_CONVERTER_APP

(source code)

description

Command line interface to command PYXIS_ECF_CONVERTER

notes

Converts Pyxis format Eiffel project configuration with .pecf extension to .ecf XML file

Usage:

el_eiffel -pecf_to_xml -in <project.pecf> [-out <name>]
note
	description: "Command line interface to command ${PYXIS_ECF_CONVERTER}"
	notes: "[
		Converts Pyxis format Eiffel project configuration with `.pecf' extension to `.ecf' XML file
		
		Usage:
		
			el_eiffel -pecf_to_xml -in <project.pecf> [-out <name>]

	]"

	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: "2024-01-20 19:18:27 GMT (Saturday 20th January 2024)"
	revision: "10"

class
	PYXIS_ECF_CONVERTER_APP

inherit
	EL_COMMAND_LINE_APPLICATION [PYXIS_ECF_CONVERTER]
		redefine
			Option_name, visible_types
		end

create
	make

feature {NONE} -- Implementation

	argument_specs: ARRAY [EL_COMMAND_ARGUMENT]
		do
			Result := <<
				required_argument ("in", "Input file path", << file_must_exist >>),
				optional_argument ("out", "Output file path", No_checks)
			>>
		end

	default_make: PROCEDURE [like command]
		do
			Result := agent {like command}.make (create {FILE_PATH}, create {FILE_PATH})
		end

	visible_types: TUPLE [PYXIS_ECF_CONVERTER]
		-- types with lio output visible in console
		-- See: {EL_CONSOLE_MANAGER_I}.show_all
		do
			create Result
		end

feature {NONE} -- Constants

	Option_name: STRING = "pecf_to_xml"

end