Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [cdt-dev] User defined CLI command in CommandFactory?

How about:

public ICommand<MIInfo> createCLICommand(IDMContext ctx, String command)
{
	if (command == null) {
		command = new String();
	}
	return new CLICommand(ctx, command);
}

The checking of null is a self-protected so the MICommand.getOperation()
won't return null.

We shouldn't need to do output parse because the user of this method
knows how to parse the output using its specific domain knowledge.


-----Original Message-----
From: Marc Khouzam <marc.khouzam@xxxxxxxxxxxx>
Reply-to: "CDT General developers list." <cdt-dev@xxxxxxxxxxx>
To: 'CDT General developers list.' <cdt-dev@xxxxxxxxxxx>
Subject: RE: [cdt-dev] User defined CLI command in CommandFactory?
Date: Thu, 11 Mar 2010 12:07:41 -0500

That could be a good idea, but such a CLI command would
be limited by not being able to get any output parsed, I think.

What would be the return type of the proposed  
createCLICommand(IDMContext ctx, String command)


> -----Original Message-----
> From: cdt-dev-bounces@xxxxxxxxxxx 
> [mailto:cdt-dev-bounces@xxxxxxxxxxx] On Behalf Of Andy Jin
> Sent: Thursday, March 11, 2010 10:32 AM
> To: cdt-dev@xxxxxxxxxxx
> Subject: [cdt-dev] User defined CLI command in CommandFactory?
> 
> In "org.eclipse.cdt.dsf.mi.service.command.CommandFactory" class, it
> pre-defines CLI commands and MI commands, but it does not allow a user
> defined CLI command to be factored from it. Is it a reason 
> why we don't
> provide such a method like below?
> 
> createCLICommand(IDMContext ctx, String command)
> 
> In JTag final launch sequence I have to run specific CLI commands but
> have to create CLICommand objects for them. Would be better if I could
> use the factory class to do it.
> 
> Thanks,
> Andy
> 
> _______________________________________________
> cdt-dev mailing list
> cdt-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/cdt-dev
> _______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/cdt-dev



Back to the top