7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-04 23:35:31 +00:00

API: add GetKiCadBinaryPath

This commit is contained in:
Jon Evans 2025-01-04 10:14:03 -05:00
parent 154634b1f6
commit 1fa432b029
3 changed files with 35 additions and 1 deletions
api/proto/common/commands
common/api
include/api

View File

@ -37,6 +37,19 @@ message Ping
{
}
// Returns the full path to the given KiCad binary
message GetKiCadBinaryPath
{
// The short name of the binary, such as `kicad-cli` or `kicad-cli.exe`. If on Windows, an `.exe`
// extension will be assumed if not present.
string binary_name = 1;
}
message PathResponse
{
string path = 1;
}
// returns kiapi.common.types.Box2
message GetTextExtents
{

View File

@ -24,6 +24,7 @@
#include <build_version.h>
#include <eda_shape.h>
#include <eda_text.h>
#include <gestfich.h>
#include <geometry/shape_compound.h>
#include <google/protobuf/empty.pb.h>
#include <paths.h>
@ -43,7 +44,9 @@ using google::protobuf::Empty;
API_HANDLER_COMMON::API_HANDLER_COMMON() :
API_HANDLER()
{
registerHandler<commands::GetVersion, GetVersionResponse>( &API_HANDLER_COMMON::handleGetVersion );
registerHandler<GetVersion, GetVersionResponse>( &API_HANDLER_COMMON::handleGetVersion );
registerHandler<GetKiCadBinaryPath, PathResponse>(
&API_HANDLER_COMMON::handleGetKiCadBinaryPath );
registerHandler<GetNetClasses, NetClassesResponse>( &API_HANDLER_COMMON::handleGetNetClasses );
registerHandler<SetNetClasses, Empty>( &API_HANDLER_COMMON::handleSetNetClasses );
registerHandler<Ping, Empty>( &API_HANDLER_COMMON::handlePing );
@ -78,6 +81,21 @@ HANDLER_RESULT<GetVersionResponse> API_HANDLER_COMMON::handleGetVersion(
}
HANDLER_RESULT<PathResponse> API_HANDLER_COMMON::handleGetKiCadBinaryPath(
const HANDLER_CONTEXT<GetKiCadBinaryPath>& aCtx )
{
wxFileName fn( wxEmptyString, wxString::FromUTF8( aCtx.Request.binary_name() ) );
#ifdef _WIN32
fn.SetExt( wxT( "exe" ) );
#endif
wxString path = FindKicadFile( fn.GetFullName() );
PathResponse reply;
reply.set_path( path.ToUTF8() );
return reply;
}
HANDLER_RESULT<NetClassesResponse> API_HANDLER_COMMON::handleGetNetClasses(
const HANDLER_CONTEXT<GetNetClasses>& aCtx )
{

View File

@ -41,6 +41,9 @@ private:
HANDLER_RESULT<commands::GetVersionResponse> handleGetVersion(
const HANDLER_CONTEXT<commands::GetVersion>& aCtx );
HANDLER_RESULT<commands::PathResponse> handleGetKiCadBinaryPath(
const HANDLER_CONTEXT<commands::GetKiCadBinaryPath>& aCtx );
HANDLER_RESULT<commands::NetClassesResponse> handleGetNetClasses(
const HANDLER_CONTEXT<commands::GetNetClasses>& aCtx );