Version: 9.16.0
SALOMEDSImpl_AttributeTableOfReal.hxx
Go to the documentation of this file.
1// Copyright (C) 2007-2026 CEA, EDF, OPEN CASCADE
2//
3// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5//
6// This library is free software; you can redistribute it and/or
7// modify it under the terms of the GNU Lesser General Public
8// License as published by the Free Software Foundation; either
9// version 2.1 of the License, or (at your option) any later version.
10//
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14// Lesser General Public License for more details.
15//
16// You should have received a copy of the GNU Lesser General Public
17// License along with this library; if not, write to the Free Software
18// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19//
20// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21//
22
23// SALOME SALOMEDSImpl : data structure of SALOME and sources of Salome data server
24// File : SALOMEDSImpl_AttributeTableOfReal.hxx
25// Author : Michael Ponikarov
26// Module : SALOME
27//
28#ifndef _SALOMEDSImpl_AttributeTableOfReal_HeaderFile
29#define _SALOMEDSImpl_AttributeTableOfReal_HeaderFile
30
32#include "DF_Attribute.hxx"
33#include "DF_Label.hxx"
36
37#include <string>
38#include <vector>
39#include <map>
40
43{
44
45public:
46 virtual std::string Save();
47 virtual void Load(const std::string&);
48
49 static const std::string& GetID();
50 static SALOMEDSImpl_AttributeTableOfReal* Set(const DF_Label& label);
51
53
54 void SetNbColumns(const int theNbColumns);
55 void SetTitle(const std::string& theTitle);
56 std::string GetTitle() const;
57 void SetRowData(const int theRow, const std::vector<double>& theData);
58 std::vector<double> GetRowData(const int theRow);
59 void SetRowTitle(const int theRow, const std::string& theTitle);
60 void SetRowUnit(const int theRow, const std::string& theUnit);
61 std::string GetRowUnit(const int theRow) const;
62 void SetRowUnits(const std::vector<std::string>& theUnits);
63 std::vector<std::string> GetRowUnits();
64 void SetRowTitles(const std::vector<std::string>& theTitles);
65 std::vector<std::string> GetRowTitles();
66 std::string GetRowTitle(const int theRow) const;
67 void SetColumnData(const int theColumn, const std::vector<double>& theData);
68 std::vector<double> GetColumnData(const int theColumn);
69 void SetColumnTitle(const int theColumn, const std::string& theTitle);
70 void SetColumnTitles(const std::vector<std::string>& theTitles);
71 std::vector<std::string> GetColumnTitles();
72 std::string GetColumnTitle(const int theColumn) const;
73 int GetNbRows() const;
74 int GetNbColumns() const;
75
76 void PutValue(const double& theValue, const int theRow, const int theColumn);
77 bool HasValue(const int theRow, const int theColumn);
78 double GetValue(const int theRow, const int theColumn);
79 void RemoveValue(const int theRow, const int theColumn);
80 const std::string& ID() const;
81 void Restore(DF_Attribute* with);
82 DF_Attribute* NewEmpty() const;
83 void Paste(DF_Attribute* into);
84
85 std::vector<int> GetSetRowIndices(const int theRow);
86 std::vector<int> GetSetColumnIndices(const int theColumn);
87
88 std::vector<int> SortRow(const int theRow, SortOrder sortOrder, SortPolicy sortPolicy);
89 std::vector<int> SortColumn(const int theColumn, SortOrder sortOrder, SortPolicy sortPolicy);
90 std::vector<int> SortByRow(const int theRow, SortOrder sortOrder, SortPolicy sortPolicy);
91 std::vector<int> SortByColumn(const int theColumn, SortOrder sortOrder, SortPolicy sortPolicy);
92
93 void SwapCells(const int theRow1, const int theColumn1, const int theRow2, const int theColumn2);
94 void SwapRows(const int theRow1, const int theRow2);
95 void SwapColumns(const int theColumn1, const int theColumn2);
96
98
99private:
100 std::map<int, double> myTable;
101 std::string myTitle;
102 std::vector<std::string> myRows;
103 std::vector<std::string> myCols;
106};
107
108#endif
#define SALOMEDSIMPL_EXPORT
Definition: SALOMEDSImpl_Defines.hxx:34
Definition: DF_Attribute.hxx:30
virtual void Restore(DF_Attribute *theAttribute)=0
virtual const std::string & ID() const =0
virtual std::string Save()
Definition: DF_Attribute.hxx:47
virtual DF_Attribute * NewEmpty() const =0
virtual void Load(const std::string &)
Definition: DF_Attribute.hxx:48
virtual void Paste(DF_Attribute *theIntoAttribute)=0
Definition: DF_Label.hxx:65
Definition: SALOMEDSImpl_AttributeTableOfReal.hxx:43
std::map< int, double > myTable
Definition: SALOMEDSImpl_AttributeTableOfReal.hxx:100
std::vector< std::string > myRows
Definition: SALOMEDSImpl_AttributeTableOfReal.hxx:102
std::string myTitle
Definition: SALOMEDSImpl_AttributeTableOfReal.hxx:101
int myNbColumns
Definition: SALOMEDSImpl_AttributeTableOfReal.hxx:105
~SALOMEDSImpl_AttributeTableOfReal()
Definition: SALOMEDSImpl_AttributeTableOfReal.hxx:97
int myNbRows
Definition: SALOMEDSImpl_AttributeTableOfReal.hxx:104
std::vector< std::string > myCols
Definition: SALOMEDSImpl_AttributeTableOfReal.hxx:103
Definition: SALOMEDSImpl_AttributeTable.hxx:29
SortPolicy
Sort policy (specifies how empty cells are taken into account when sorting)
Definition: SALOMEDSImpl_AttributeTable.hxx:38
SortOrder
Sort order.
Definition: SALOMEDSImpl_AttributeTable.hxx:32
Definition: SALOMEDSImpl_GenericAttribute.hxx:39