mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
* #7797 Well Targets: Add scripting capability * #7794 Python : Do not update childField or childFieldArray * #7797: Python - Add scripting to well path collection - Extend the pdmobject.py with method add_object() - allow objects to be created from Python in well path collections - add well targets to modelled well path * #7795 Python : Make sure referenced generated classes are defined * #7810 StimPlanModel: clean-up python generation * Python : Always use empty string as default value for ptrFieldValue It can happen that a ptrField is assigned to a pointer on object construction. (FaciesProperties) Make sure that constructor always assigns an empty string. Co-authored-by: magnesj <magnesj@users.noreply.github.com> Co-authored-by: Kristian Bendiksen <kristian.bendiksen@gmail.com>
271 lines
9.7 KiB
C++
271 lines
9.7 KiB
C++
//##################################################################################################
|
||
//
|
||
// Custom Visualization Core library
|
||
// Copyright (C) Ceetron Solutions AS
|
||
//
|
||
// This library may be used under the terms of either the GNU General Public License or
|
||
// the GNU Lesser General Public License as follows:
|
||
//
|
||
// GNU General Public License Usage
|
||
// This library 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 3 of the License, or
|
||
// (at your option) any later version.
|
||
//
|
||
// This library 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 at <<http://www.gnu.org/licenses/gpl.html>>
|
||
// for more details.
|
||
//
|
||
// GNU Lesser General Public License Usage
|
||
// This library is free software; you can redistribute it and/or modify
|
||
// it under the terms of the GNU Lesser General Public License as published by
|
||
// the Free Software Foundation; either version 2.1 of the License, or
|
||
// (at your option) any later version.
|
||
//
|
||
// This library 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 Lesser General Public License at <<http://www.gnu.org/licenses/lgpl-2.1.html>>
|
||
// for more details.
|
||
//
|
||
//##################################################################################################
|
||
|
||
#include "gtest/gtest.h"
|
||
|
||
#include "cafAppEnum.h"
|
||
#include "cafPdmChildArrayField.h"
|
||
#include "cafPdmChildField.h"
|
||
#include "cafPdmCodeGenerator.h"
|
||
#include "cafPdmDocument.h"
|
||
#include "cafPdmField.h"
|
||
#include "cafPdmFieldScriptingCapability.h"
|
||
#include "cafPdmObject.h"
|
||
#include "cafPdmObjectGroup.h"
|
||
#include "cafPdmPointer.h"
|
||
#include "cafPdmProxyValueField.h"
|
||
#include "cafPdmReferenceHelper.h"
|
||
|
||
#include <QFile>
|
||
|
||
#include "cafPdmObjectScriptingCapability.h"
|
||
#include <memory>
|
||
|
||
/// Demo objects to show the usage of the Pdm system
|
||
|
||
class SimpleObj : public caf::PdmObject
|
||
{
|
||
CAF_PDM_HEADER_INIT;
|
||
|
||
public:
|
||
SimpleObj()
|
||
: PdmObject()
|
||
, m_doubleMember( 0.0 )
|
||
{
|
||
CAF_PDM_InitObject( "SimpleObj", "", "Tooltip SimpleObj", "WhatsThis SimpleObj" );
|
||
|
||
CAF_PDM_InitField( &m_position, "Position", 8765.2, "Position", "", "Tooltip", "WhatsThis" );
|
||
CAF_PDM_InitField( &m_dir, "Dir", 123.56, "Direction", "", "Tooltip", "WhatsThis" );
|
||
CAF_PDM_InitField( &m_up, "Up", 0.0, "Up value", "", "Tooltip", "WhatsThis" );
|
||
CAF_PDM_InitFieldNoDefault( &m_numbers, "Numbers", "Important Numbers", "", "Tooltip", "WhatsThis" );
|
||
#if 1
|
||
m_proxyDouble.registerSetMethod( this, &SimpleObj::setDoubleMember );
|
||
m_proxyDouble.registerGetMethod( this, &SimpleObj::doubleMember );
|
||
AddUiCapabilityToField( &m_proxyDouble );
|
||
AddXmlCapabilityToField( &m_proxyDouble );
|
||
CAF_PDM_InitFieldNoDefault( &m_proxyDouble, "ProxyDouble", "ProxyDouble", "", "", "" );
|
||
#endif
|
||
}
|
||
|
||
/// Assignment and copying of PDM objects is not focus for the features. This is only a
|
||
/// "would it work" test
|
||
SimpleObj( const SimpleObj& other )
|
||
: PdmObject()
|
||
{
|
||
CAF_PDM_InitField( &m_position, "Position", 8765.2, "Position", "", "", "WhatsThis" );
|
||
CAF_PDM_InitField( &m_dir, "Dir", 123.56, "Direction", "", "", "WhatsThis" );
|
||
CAF_PDM_InitField( &m_up, "Up", 0.0, "Up value", "", "", "WhatsThis" );
|
||
|
||
CAF_PDM_InitFieldNoDefault( &m_numbers, "Numbers", "Important Numbers", "", "", "WhatsThis" );
|
||
|
||
m_position = other.m_position;
|
||
m_dir = other.m_dir;
|
||
m_up = other.m_up;
|
||
m_numbers = other.m_numbers;
|
||
m_doubleMember = other.m_doubleMember;
|
||
}
|
||
|
||
~SimpleObj() {}
|
||
|
||
caf::PdmField<double> m_position;
|
||
caf::PdmField<double> m_dir;
|
||
caf::PdmField<double> m_up;
|
||
caf::PdmField<std::vector<double>> m_numbers;
|
||
caf::PdmProxyValueField<double> m_proxyDouble;
|
||
|
||
void setDoubleMember( const double& d )
|
||
{
|
||
m_doubleMember = d;
|
||
std::cout << "setDoubleMember" << std::endl;
|
||
}
|
||
double doubleMember() const
|
||
{
|
||
std::cout << "doubleMember" << std::endl;
|
||
return m_doubleMember;
|
||
}
|
||
|
||
double m_doubleMember;
|
||
};
|
||
CAF_PDM_SOURCE_INIT( SimpleObj, "SimpleObj" );
|
||
|
||
class DemoPdmObject : public caf::PdmObject
|
||
{
|
||
CAF_PDM_HEADER_INIT;
|
||
|
||
public:
|
||
DemoPdmObject()
|
||
{
|
||
CAF_PDM_InitObject( "DemoPdmObject", "", "Tooltip DemoPdmObject", "WhatsThis DemoPdmObject" );
|
||
|
||
CAF_PDM_InitField( &m_doubleField,
|
||
"BigNumber",
|
||
0.0,
|
||
"",
|
||
"",
|
||
"Enter a big number here",
|
||
"This is a place you can enter a big real value if you want" );
|
||
|
||
CAF_PDM_InitField( &m_intField,
|
||
"IntNumber",
|
||
0,
|
||
"",
|
||
"",
|
||
"Enter some small number here",
|
||
"This is a place you can enter a small integer value if you want" );
|
||
|
||
CAF_PDM_InitField( &m_textField, "TextField", QString( "<EFBFBD><EFBFBD><EFBFBD> Test text end" ), "TextField", "", "Tooltip", "WhatsThis" );
|
||
CAF_PDM_InitFieldNoDefault( &m_simpleObjPtrField, "SimpleObjPtrField", "SimpleObjPtrField", "", "Tooltip", "WhatsThis" );
|
||
CAF_PDM_InitFieldNoDefault( &m_simpleObjPtrField2, "SimpleObjPtrField2", "SimpleObjPtrField2", "", "Tooltip", "WhatsThis" );
|
||
m_simpleObjPtrField2 = new SimpleObj;
|
||
}
|
||
|
||
~DemoPdmObject()
|
||
{
|
||
delete m_simpleObjPtrField();
|
||
delete m_simpleObjPtrField2();
|
||
}
|
||
|
||
// Fields
|
||
caf::PdmField<double> m_doubleField;
|
||
caf::PdmField<int> m_intField;
|
||
caf::PdmField<QString> m_textField;
|
||
|
||
caf::PdmChildField<SimpleObj*> m_simpleObjPtrField;
|
||
caf::PdmChildField<SimpleObj*> m_simpleObjPtrField2;
|
||
};
|
||
|
||
CAF_PDM_SOURCE_INIT( DemoPdmObject, "DemoPdmObject" );
|
||
|
||
class InheritedDemoObj : public DemoPdmObject
|
||
{
|
||
CAF_PDM_HEADER_INIT;
|
||
|
||
public:
|
||
enum TestEnumType
|
||
{
|
||
T1,
|
||
T2,
|
||
T3
|
||
};
|
||
|
||
InheritedDemoObj()
|
||
{
|
||
CAF_PDM_InitScriptableObjectWithNameAndComment( "InheritedDemoObj",
|
||
"",
|
||
"ToolTip InheritedDemoObj",
|
||
"Whatsthis InheritedDemoObj",
|
||
"ScriptClassName_InheritedDemoObj",
|
||
"Script comment test" );
|
||
|
||
CAF_PDM_InitScriptableFieldNoDefault( &m_texts, "Texts", "Some words", "", "", "" );
|
||
CAF_PDM_InitScriptableFieldNoDefault( &m_numbers, "Numbers", "Some words", "", "", "" );
|
||
CAF_PDM_InitFieldNoDefault( &m_testEnumField, "TestEnumValue", "An Enum", "", "", "" );
|
||
CAF_PDM_InitFieldNoDefault( &m_simpleObjectsField,
|
||
"SimpleObjects",
|
||
"SimpleObjectsField",
|
||
"",
|
||
"ToolTip SimpleObjectsField",
|
||
"Whatsthis SimpleObjectsField" );
|
||
}
|
||
|
||
~InheritedDemoObj() { m_simpleObjectsField.deleteAllChildObjects(); }
|
||
|
||
caf::PdmField<std::vector<QString>> m_texts;
|
||
caf::PdmField<std::vector<double>> m_numbers;
|
||
|
||
caf::PdmField<caf::AppEnum<TestEnumType>> m_testEnumField;
|
||
caf::PdmChildArrayField<SimpleObj*> m_simpleObjectsField;
|
||
};
|
||
CAF_PDM_SOURCE_INIT( InheritedDemoObj, "InheritedDemoObj" );
|
||
|
||
class MyPdmDocument : public caf::PdmDocument
|
||
{
|
||
CAF_PDM_HEADER_INIT;
|
||
|
||
public:
|
||
MyPdmDocument()
|
||
{
|
||
CAF_PDM_InitObject( "PdmObjectCollection", "", "", "" );
|
||
CAF_PDM_InitFieldNoDefault( &objects, "PdmObjects", "", "", "", "" )
|
||
}
|
||
|
||
~MyPdmDocument() { objects.deleteAllChildObjects(); }
|
||
|
||
caf::PdmChildArrayField<PdmObjectHandle*> objects;
|
||
};
|
||
CAF_PDM_SOURCE_INIT( MyPdmDocument, "MyPdmDocument" );
|
||
|
||
namespace caf
|
||
{
|
||
template <>
|
||
void AppEnum<InheritedDemoObj::TestEnumType>::setUp()
|
||
{
|
||
addItem( InheritedDemoObj::T1, "T1", "An A letter" );
|
||
addItem( InheritedDemoObj::T2, "T2", "A B letter" );
|
||
addItem( InheritedDemoObj::T3, "T3", "A B letter" );
|
||
setDefault( InheritedDemoObj::T1 );
|
||
}
|
||
|
||
} // namespace caf
|
||
|
||
//--------------------------------------------------------------------------------------------------
|
||
//--------------------------------------------------------------------------------------------------
|
||
TEST( PdmScriptingTest, BasicUse )
|
||
{
|
||
std::unique_ptr<MyPdmDocument> document( new MyPdmDocument );
|
||
|
||
std::string fileExt = "py";
|
||
|
||
std::unique_ptr<caf::PdmCodeGenerator> generator( caf::PdmCodeGeneratorFactory::instance()->create( fileExt ) );
|
||
std::vector<QString> logMessages;
|
||
auto generatedText = generator->generate( caf::PdmDefaultObjectFactory::instance(), logMessages );
|
||
|
||
auto string = generatedText.toStdString();
|
||
}
|
||
|
||
//--------------------------------------------------------------------------------------------------
|
||
//--------------------------------------------------------------------------------------------------
|
||
TEST( PdmScriptingTest, CheckIsVector )
|
||
{
|
||
InheritedDemoObj obj;
|
||
|
||
auto isVector = obj.m_numbers.xmlCapability()->isVectorField();
|
||
EXPECT_TRUE( isVector );
|
||
|
||
// auto xmlCap = obj.xmlCapability();
|
||
// auto string = xmlCap->writeObjectToXmlString();
|
||
}
|