Salome HOME
Add copyright header according to request of CEA from 06.06.2017
[modules/shaper.git] / src / CollectionPlugin / CollectionPlugin_Field.cpp
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include "CollectionPlugin_Field.h"
22
23 #include <ModelAPI_Data.h>
24 #include <ModelAPI_Document.h>
25 #include <ModelAPI_AttributeStringArray.h>
26 #include <ModelAPI_AttributeSelectionList.h>
27 #include <ModelAPI_AttributeIntArray.h>
28 #include <ModelAPI_AttributeTables.h>
29 #include <ModelAPI_ResultField.h>
30 #include <ModelAPI_Session.h>
31 #include <ModelAPI_Validator.h>
32
33 CollectionPlugin_Field::CollectionPlugin_Field()
34 {
35 }
36
37 void CollectionPlugin_Field::initAttributes()
38 {
39   data()->addAttribute(SELECTED_ID(), ModelAPI_AttributeSelectionList::typeId());
40   // for the whole part result it is not obligatory
41   ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), SELECTED_ID());
42
43   data()->addAttribute(COMPONENTS_NAMES_ID(), ModelAPI_AttributeStringArray::typeId());
44   data()->addAttribute(STAMPS_ID(), ModelAPI_AttributeIntArray::typeId());
45   data()->addAttribute(VALUES_ID(), ModelAPI_AttributeTables::typeId());
46 }
47
48 void CollectionPlugin_Field::execute()
49 {
50   if (results().empty() || firstResult()->isDisabled()) { // just create result if not exists
51     ResultPtr aField = document()->createField(data());
52     setResult(aField);
53   }
54 }