2020-06-13 23:28:08 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2020 KiCad Developers, see change_log.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
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <fctsys.h>
|
|
|
|
#include <class_board.h>
|
|
|
|
#include <class_board_item.h>
|
2020-07-22 23:05:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
#include <drc_proto/drc_rule.h>
|
2020-06-13 23:28:08 +00:00
|
|
|
#include <pcb_expr_evaluator.h>
|
|
|
|
|
|
|
|
|
|
|
|
test::DRC_RULE::DRC_RULE()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
test::DRC_RULE::~DRC_RULE()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
test::DRC_RULE_CONDITION::DRC_RULE_CONDITION()
|
|
|
|
{
|
2020-06-19 21:34:19 +00:00
|
|
|
m_ucode = nullptr;
|
2020-06-13 23:28:08 +00:00
|
|
|
}
|
|
|
|
|
2020-07-19 21:22:49 +00:00
|
|
|
|
2020-06-13 23:28:08 +00:00
|
|
|
test::DRC_RULE_CONDITION::~DRC_RULE_CONDITION()
|
|
|
|
{
|
2020-07-19 21:22:49 +00:00
|
|
|
delete m_ucode;
|
2020-06-13 23:28:08 +00:00
|
|
|
}
|
|
|
|
|
2020-07-19 21:22:49 +00:00
|
|
|
|
|
|
|
bool test::DRC_RULE_CONDITION::EvaluateFor( const BOARD_ITEM* aItemA, const BOARD_ITEM* aItemB )
|
2020-06-13 23:28:08 +00:00
|
|
|
{
|
2020-07-22 13:08:57 +00:00
|
|
|
BOARD_ITEM* a = const_cast<BOARD_ITEM*>( aItemA );
|
|
|
|
BOARD_ITEM* b = aItemB ? const_cast<BOARD_ITEM*>( aItemB ) : DELETED_BOARD_ITEM::GetInstance();
|
2020-07-24 14:19:26 +00:00
|
|
|
LIBEVAL::CONTEXT ctx;
|
|
|
|
m_ucode->SetItems( a, b );
|
|
|
|
ctx.Run( m_ucode );
|
2020-07-22 13:08:57 +00:00
|
|
|
|
2020-07-24 14:19:26 +00:00
|
|
|
return ctx.GetResult()->AsDouble() != 0.0;
|
2020-06-13 23:28:08 +00:00
|
|
|
}
|
|
|
|
|
2020-07-19 21:22:49 +00:00
|
|
|
|
2020-06-13 23:28:08 +00:00
|
|
|
bool test::DRC_RULE_CONDITION::Compile()
|
|
|
|
{
|
|
|
|
PCB_EXPR_COMPILER compiler;
|
2020-07-19 21:22:49 +00:00
|
|
|
|
2020-06-13 23:28:08 +00:00
|
|
|
if (!m_ucode)
|
|
|
|
m_ucode = new PCB_EXPR_UCODE;
|
|
|
|
|
2020-07-28 19:31:48 +00:00
|
|
|
bool ok = compiler.Compile( m_Expression.ToUTF8().data(), m_ucode );
|
2020-06-13 23:28:08 +00:00
|
|
|
|
|
|
|
if( ok )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
m_compileError = compiler.GetErrorStatus();
|
|
|
|
|
2020-07-22 23:05:37 +00:00
|
|
|
printf( "Fail: %s (pos: %d)\n", (const char *) m_compileError.message.c_str(), m_compileError.srcPos );
|
|
|
|
|
2020-06-13 23:28:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-07-19 21:22:49 +00:00
|
|
|
|
2020-06-13 23:28:08 +00:00
|
|
|
LIBEVAL::ERROR_STATUS test::DRC_RULE_CONDITION::GetCompilationError()
|
|
|
|
{
|
|
|
|
return m_compileError;
|
|
|
|
}
|