geom/src/GEOMAlgo/GEOMAlgo_PassKey.cxx

241 lines
7.1 KiB
C++
Raw Normal View History

2014-02-18 12:44:41 +06:00
// Copyright (C) 2007-2014 CEA/DEN, EDF R&D, OPEN CASCADE
2005-12-05 21:23:52 +05:00
//
2012-08-09 13:58:02 +06:00
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
2005-12-05 21:23:52 +05:00
//
2012-08-09 13:58:02 +06:00
// 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
2014-02-18 12:44:41 +06:00
// version 2.1 of the License, or (at your option) any later version.
2005-12-05 21:23:52 +05:00
//
2012-08-09 13:58:02 +06:00
// 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 for more details.
2009-02-13 17:16:39 +05:00
//
2012-08-09 13:58:02 +06:00
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2009-02-13 17:16:39 +05:00
//
2012-08-09 13:58:02 +06:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
//
2012-08-09 13:58:02 +06:00
// File: GEOMAlgo_PassKey.cxx
// Created:
// Author: Peter KURNEV
// <peter@PREFEX>
2009-02-13 17:16:39 +05:00
//
2012-08-09 13:58:02 +06:00
#include <GEOMAlgo_PassKey.hxx>
2004-12-17 16:18:33 +05:00
#include <stdio.h>
#include <string.h>
#include <TColStd_ListIteratorOfListOfInteger.hxx>
#include <TColStd_ListOfInteger.hxx>
2004-12-17 16:18:33 +05:00
#ifdef WIN32
2012-08-09 13:58:02 +06:00
#pragma warning( disable : 4101)
2004-12-17 16:18:33 +05:00
#endif
static
Standard_Integer NormalizedId(const Standard_Integer aId,
2012-08-09 13:58:02 +06:00
const Standard_Integer aDiv);
2004-12-17 16:18:33 +05:00
//=======================================================================
//function :
2012-08-09 13:58:02 +06:00
//purpose :
2004-12-17 16:18:33 +05:00
//=======================================================================
GEOMAlgo_PassKey::GEOMAlgo_PassKey()
{
2012-08-09 13:58:02 +06:00
Clear();
}
//=======================================================================
//function :
2012-08-09 13:58:02 +06:00
//purpose :
//=======================================================================
GEOMAlgo_PassKey::GEOMAlgo_PassKey(const GEOMAlgo_PassKey& aOther)
{
myNbIds=aOther.myNbIds;
mySum=aOther.mySum;
myMap=aOther.myMap;
2004-12-17 16:18:33 +05:00
}
//=======================================================================
//function :Assign
2012-08-09 13:58:02 +06:00
//purpose :
2004-12-17 16:18:33 +05:00
//=======================================================================
GEOMAlgo_PassKey& GEOMAlgo_PassKey::Assign(const GEOMAlgo_PassKey& aOther)
2004-12-17 16:18:33 +05:00
{
myNbIds=aOther.myNbIds;
mySum=aOther.mySum;
myMap=aOther.myMap;
2004-12-17 16:18:33 +05:00
return *this;
}
//=======================================================================
//function :~
2012-08-09 13:58:02 +06:00
//purpose :
//=======================================================================
GEOMAlgo_PassKey::~GEOMAlgo_PassKey()
{
}
//=======================================================================
//function :Clear
2012-08-09 13:58:02 +06:00
//purpose :
//=======================================================================
void GEOMAlgo_PassKey::Clear()
{
myNbIds=0;
mySum=0;
myMap.Clear();
}
//=======================================================================
2004-12-17 16:18:33 +05:00
//function :SetIds
2012-08-09 13:58:02 +06:00
//purpose :
2004-12-17 16:18:33 +05:00
//=======================================================================
void GEOMAlgo_PassKey::SetIds(const Standard_Integer aId1)
2012-08-09 13:58:02 +06:00
2004-12-17 16:18:33 +05:00
{
Clear();
2004-12-17 16:18:33 +05:00
myNbIds=1;
myMap.Add(aId1);
mySum=NormalizedId(aId1, myNbIds);
2004-12-17 16:18:33 +05:00
}
//=======================================================================
//function :SetIds
2012-08-09 13:58:02 +06:00
//purpose :
2004-12-17 16:18:33 +05:00
//=======================================================================
void GEOMAlgo_PassKey::SetIds(const Standard_Integer aId1,
2012-08-09 13:58:02 +06:00
const Standard_Integer aId2)
2004-12-17 16:18:33 +05:00
{
TColStd_ListOfInteger aLI;
2004-12-17 16:18:33 +05:00
//
aLI.Append(aId1);
aLI.Append(aId2);
SetIds(aLI);
2004-12-17 16:18:33 +05:00
}
//=======================================================================
//function :SetIds
2012-08-09 13:58:02 +06:00
//purpose :
2004-12-17 16:18:33 +05:00
//=======================================================================
void GEOMAlgo_PassKey::SetIds(const Standard_Integer aId1,
2012-08-09 13:58:02 +06:00
const Standard_Integer aId2,
const Standard_Integer aId3)
2004-12-17 16:18:33 +05:00
{
TColStd_ListOfInteger aLI;
//
aLI.Append(aId1);
aLI.Append(aId2);
aLI.Append(aId3);
SetIds(aLI);
2004-12-17 16:18:33 +05:00
}
//=======================================================================
//function :SetIds
2012-08-09 13:58:02 +06:00
//purpose :
2004-12-17 16:18:33 +05:00
//=======================================================================
void GEOMAlgo_PassKey::SetIds(const Standard_Integer aId1,
2012-08-09 13:58:02 +06:00
const Standard_Integer aId2,
const Standard_Integer aId3,
const Standard_Integer aId4)
{
TColStd_ListOfInteger aLI;
//
aLI.Append(aId1);
aLI.Append(aId2);
aLI.Append(aId3);
aLI.Append(aId4);
SetIds(aLI);
2004-12-17 16:18:33 +05:00
}
//=======================================================================
//function :SetIds
2012-08-09 13:58:02 +06:00
//purpose :
2004-12-17 16:18:33 +05:00
//=======================================================================
void GEOMAlgo_PassKey::SetIds(const TColStd_ListOfInteger& aLI)
2004-12-17 16:18:33 +05:00
{
Standard_Integer i, aId, aIdN;
TColStd_ListIteratorOfListOfInteger aIt;
2004-12-17 16:18:33 +05:00
//
Clear();
aIt.Initialize(aLI);
for (; aIt.More(); aIt.Next()) {
aId=aIt.Value();
myMap.Add(aId);
2004-12-17 16:18:33 +05:00
}
myNbIds=myMap.Extent();
for(i=1; i<=myNbIds; ++i) {
aId=myMap(i);
aIdN=NormalizedId(aId, myNbIds);
mySum+=aIdN;
}
}
//=======================================================================
//function :NbIds
2012-08-09 13:58:02 +06:00
//purpose :
2004-12-17 16:18:33 +05:00
//=======================================================================
Standard_Integer GEOMAlgo_PassKey::NbIds()const
2004-12-17 16:18:33 +05:00
{
return myNbIds;
2004-12-17 16:18:33 +05:00
}
//=======================================================================
//function :Id
2012-08-09 13:58:02 +06:00
//purpose :
2004-12-17 16:18:33 +05:00
//=======================================================================
Standard_Integer GEOMAlgo_PassKey::Id(const Standard_Integer aIndex) const
2004-12-17 16:18:33 +05:00
{
if (aIndex<1 || aIndex>myNbIds) {
return -1;
}
return myMap(aIndex);
2004-12-17 16:18:33 +05:00
}
//=======================================================================
//function :IsEqual
2012-08-09 13:58:02 +06:00
//purpose :
2004-12-17 16:18:33 +05:00
//=======================================================================
Standard_Boolean GEOMAlgo_PassKey::IsEqual(const GEOMAlgo_PassKey& aOther) const
2004-12-17 16:18:33 +05:00
{
Standard_Boolean bRet;
Standard_Integer i, aId;
2004-12-17 16:18:33 +05:00
//
bRet=Standard_False;
//
if (myNbIds!=aOther.myNbIds) {
return bRet;
2004-12-17 16:18:33 +05:00
}
for (i=1; i<=myNbIds; ++i) {
aId=myMap(i);
if (!aOther.myMap.Contains(aId)) {
return bRet;
}
}
return !bRet;
2004-12-17 16:18:33 +05:00
}
//=======================================================================
//function : HashCode
2012-08-09 13:58:02 +06:00
//purpose :
2004-12-17 16:18:33 +05:00
//=======================================================================
Standard_Integer GEOMAlgo_PassKey::HashCode(const Standard_Integer aUpper) const
2004-12-17 16:18:33 +05:00
{
return ::HashCode(mySum, aUpper);
2004-12-17 16:18:33 +05:00
}
//=======================================================================
//function : Dump
2012-08-09 13:58:02 +06:00
//purpose :
2004-12-17 16:18:33 +05:00
//=======================================================================
void GEOMAlgo_PassKey::Dump(const Standard_Integer )const
2004-12-17 16:18:33 +05:00
{
}
//=======================================================================
// function: NormalizedId
2012-08-09 13:58:02 +06:00
// purpose :
//=======================================================================
Standard_Integer NormalizedId(const Standard_Integer aId,
2012-08-09 13:58:02 +06:00
const Standard_Integer aDiv)
{
Standard_Integer aMax, aTresh, aIdRet;
//
aIdRet=aId;
aMax=::IntegerLast();
aTresh=aMax/aDiv;
if (aId>aTresh) {
aIdRet=aId%aTresh;
}
return aIdRet;
}