mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-13 17:53:11 +02:00
Put the string manipuuation utils in the cpp, and remove string_utils.h from the includes of netinfo.h. This spams that header into about 350 files, not all of which need it. Then go round and tidy up the places (most exporters and dialogs) where CPP files weren't including string_utils.h when they used it, as well as some other order-sensitive include issues that turned up.
271 lines
7.1 KiB
C++
271 lines
7.1 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, you may find one here:
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
|
|
#ifndef PCBEXPR_EVALUATOR_H
|
|
#define PCBEXPR_EVALUATOR_H
|
|
|
|
#include <unordered_map>
|
|
|
|
#include <layer_ids.h>
|
|
|
|
#include <properties/property.h>
|
|
#include <properties/property_mgr.h>
|
|
|
|
#include <libeval_compiler/libeval_compiler.h>
|
|
|
|
class BOARD;
|
|
class BOARD_ITEM;
|
|
|
|
class PCBEXPR_VAR_REF;
|
|
|
|
class PCBEXPR_UCODE final : public LIBEVAL::UCODE
|
|
{
|
|
public:
|
|
PCBEXPR_UCODE() {};
|
|
virtual ~PCBEXPR_UCODE() {};
|
|
|
|
virtual std::unique_ptr<LIBEVAL::VAR_REF> CreateVarRef( const wxString& aVar,
|
|
const wxString& aField ) override;
|
|
virtual LIBEVAL::FUNC_CALL_REF CreateFuncCall( const wxString& aName ) override;
|
|
};
|
|
|
|
|
|
class PCBEXPR_CONTEXT : public LIBEVAL::CONTEXT
|
|
{
|
|
public:
|
|
PCBEXPR_CONTEXT( int aConstraint = 0, PCB_LAYER_ID aLayer = F_Cu ) :
|
|
m_constraint( aConstraint ),
|
|
m_layer( aLayer )
|
|
{
|
|
m_items[0] = nullptr;
|
|
m_items[1] = nullptr;
|
|
}
|
|
|
|
void SetItems( BOARD_ITEM* a, BOARD_ITEM* b = nullptr )
|
|
{
|
|
m_items[0] = a;
|
|
m_items[1] = b;
|
|
}
|
|
|
|
BOARD* GetBoard() const;
|
|
|
|
int GetConstraint() const { return m_constraint; }
|
|
BOARD_ITEM* GetItem( int index ) const { return m_items[index]; }
|
|
PCB_LAYER_ID GetLayer() const { return m_layer; }
|
|
|
|
private:
|
|
int m_constraint;
|
|
BOARD_ITEM* m_items[2];
|
|
PCB_LAYER_ID m_layer;
|
|
};
|
|
|
|
|
|
class PCBEXPR_VAR_REF : public LIBEVAL::VAR_REF
|
|
{
|
|
public:
|
|
PCBEXPR_VAR_REF( int aItemIndex ) :
|
|
m_itemIndex( aItemIndex ),
|
|
m_type( LIBEVAL::VT_UNDEFINED ),
|
|
m_isEnum( false ),
|
|
m_isOptional( false )
|
|
{}
|
|
|
|
~PCBEXPR_VAR_REF() {};
|
|
|
|
void SetIsEnum( bool s ) { m_isEnum = s; }
|
|
bool IsEnum() const { return m_isEnum; }
|
|
|
|
void SetIsOptional( bool s = true ) { m_isOptional = s; }
|
|
bool IsOptional() const { return m_isOptional; }
|
|
|
|
void SetType( LIBEVAL::VAR_TYPE_T type ) { m_type = type; }
|
|
LIBEVAL::VAR_TYPE_T GetType() const override { return m_type; }
|
|
|
|
void AddAllowedClass( TYPE_ID type_hash, PROPERTY_BASE* prop )
|
|
{
|
|
m_matchingTypes[type_hash] = prop;
|
|
}
|
|
|
|
LIBEVAL::VALUE* GetValue( LIBEVAL::CONTEXT* aCtx ) override;
|
|
|
|
BOARD_ITEM* GetObject( const LIBEVAL::CONTEXT* aCtx ) const;
|
|
|
|
private:
|
|
std::unordered_map<TYPE_ID, PROPERTY_BASE*> m_matchingTypes;
|
|
int m_itemIndex;
|
|
LIBEVAL::VAR_TYPE_T m_type;
|
|
bool m_isEnum;
|
|
bool m_isOptional;
|
|
};
|
|
|
|
|
|
// "Object code" version of a netclass reference (for performance).
|
|
class PCBEXPR_NETCLASS_REF : public PCBEXPR_VAR_REF
|
|
{
|
|
public:
|
|
PCBEXPR_NETCLASS_REF( int aItemIndex ) :
|
|
PCBEXPR_VAR_REF( aItemIndex )
|
|
{
|
|
SetType( LIBEVAL::VT_STRING );
|
|
}
|
|
|
|
LIBEVAL::VALUE* GetValue( LIBEVAL::CONTEXT* aCtx ) override;
|
|
};
|
|
|
|
|
|
// "Object code" version of a component class reference (for performance).
|
|
class PCBEXPR_COMPONENT_CLASS_REF : public PCBEXPR_VAR_REF
|
|
{
|
|
public:
|
|
PCBEXPR_COMPONENT_CLASS_REF( int aItemIndex ) : PCBEXPR_VAR_REF( aItemIndex )
|
|
{
|
|
SetType( LIBEVAL::VT_STRING );
|
|
}
|
|
|
|
LIBEVAL::VALUE* GetValue( LIBEVAL::CONTEXT* aCtx ) override;
|
|
};
|
|
|
|
|
|
// "Object code" version of a netname reference (for performance).
|
|
class PCBEXPR_NETNAME_REF : public PCBEXPR_VAR_REF
|
|
{
|
|
public:
|
|
PCBEXPR_NETNAME_REF( int aItemIndex ) :
|
|
PCBEXPR_VAR_REF( aItemIndex )
|
|
{
|
|
SetType( LIBEVAL::VT_STRING );
|
|
}
|
|
|
|
LIBEVAL::VALUE* GetValue( LIBEVAL::CONTEXT* aCtx ) override;
|
|
};
|
|
|
|
|
|
class PCBEXPR_TYPE_REF : public PCBEXPR_VAR_REF
|
|
{
|
|
public:
|
|
PCBEXPR_TYPE_REF( int aItemIndex ) :
|
|
PCBEXPR_VAR_REF( aItemIndex )
|
|
{
|
|
SetType( LIBEVAL::VT_STRING );
|
|
}
|
|
|
|
LIBEVAL::VALUE* GetValue( LIBEVAL::CONTEXT* aCtx ) override;
|
|
};
|
|
|
|
|
|
class PCBEXPR_BUILTIN_FUNCTIONS
|
|
{
|
|
public:
|
|
PCBEXPR_BUILTIN_FUNCTIONS();
|
|
|
|
static PCBEXPR_BUILTIN_FUNCTIONS& Instance()
|
|
{
|
|
static PCBEXPR_BUILTIN_FUNCTIONS self;
|
|
return self;
|
|
}
|
|
|
|
LIBEVAL::FUNC_CALL_REF Get( const wxString& name )
|
|
{
|
|
return m_funcs[ name ];
|
|
}
|
|
|
|
const wxArrayString GetSignatures() const
|
|
{
|
|
return m_funcSigs;
|
|
}
|
|
|
|
void RegisterFunc( const wxString& funcSignature, LIBEVAL::FUNC_CALL_REF funcPtr )
|
|
{
|
|
wxString funcName = funcSignature.BeforeFirst( '(' );
|
|
m_funcs[std::string( funcName.Lower() )] = std::move( funcPtr );
|
|
m_funcSigs.Add( funcSignature );
|
|
}
|
|
|
|
void RegisterAllFunctions();
|
|
|
|
private:
|
|
std::map<wxString, LIBEVAL::FUNC_CALL_REF> m_funcs;
|
|
|
|
wxArrayString m_funcSigs;
|
|
};
|
|
|
|
|
|
class PCBEXPR_UNIT_RESOLVER : public LIBEVAL::UNIT_RESOLVER
|
|
{
|
|
public:
|
|
const std::vector<wxString>& GetSupportedUnits() const override;
|
|
const std::vector<EDA_UNITS>& GetSupportedUnitsTypes() const override;
|
|
|
|
wxString GetSupportedUnitsMessage() const override;
|
|
|
|
double Convert( const wxString& aString, int unitId ) const override;
|
|
};
|
|
|
|
|
|
class PCBEXPR_UNITLESS_RESOLVER : public LIBEVAL::UNIT_RESOLVER
|
|
{
|
|
public:
|
|
const std::vector<wxString>& GetSupportedUnits() const override;
|
|
const std::vector<EDA_UNITS>& GetSupportedUnitsTypes() const override;
|
|
|
|
double Convert( const wxString& aString, int unitId ) const override;
|
|
};
|
|
|
|
|
|
class PCBEXPR_COMPILER : public LIBEVAL::COMPILER
|
|
{
|
|
public:
|
|
PCBEXPR_COMPILER( LIBEVAL::UNIT_RESOLVER* aUnitResolver );
|
|
};
|
|
|
|
|
|
class PCBEXPR_EVALUATOR
|
|
{
|
|
public:
|
|
PCBEXPR_EVALUATOR( LIBEVAL::UNIT_RESOLVER* aUnitResolver );
|
|
~PCBEXPR_EVALUATOR();
|
|
|
|
bool Evaluate( const wxString& aExpr );
|
|
int Result() const { return m_result; }
|
|
EDA_UNITS Units() const { return m_units; }
|
|
|
|
void SetErrorCallback( std::function<void( const wxString& aMessage, int aOffset )> aCallback )
|
|
{
|
|
m_compiler.SetErrorCallback( std::move( aCallback ) );
|
|
}
|
|
|
|
bool IsErrorPending() const { return m_errorStatus.pendingError; }
|
|
const LIBEVAL::ERROR_STATUS& GetError() const { return m_errorStatus; }
|
|
|
|
private:
|
|
int m_result;
|
|
EDA_UNITS m_units;
|
|
|
|
PCBEXPR_COMPILER m_compiler;
|
|
PCBEXPR_UCODE m_ucode;
|
|
LIBEVAL::ERROR_STATUS m_errorStatus;
|
|
};
|
|
|
|
#endif
|