Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:05:19

0001 // Created on: 2002-01-16
0002 // Created by: Michael PONIKAROV
0003 // Copyright (c) 2002-2014 OPEN CASCADE SAS
0004 //
0005 // This file is part of Open CASCADE Technology software library.
0006 //
0007 // This library is free software; you can redistribute it and/or modify it under
0008 // the terms of the GNU Lesser General Public License version 2.1 as published
0009 // by the Free Software Foundation, with special exception defined in the file
0010 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0011 // distribution for complete text of the license and disclaimer of any warranty.
0012 //
0013 // Alternatively, this file may be used under the terms of Open CASCADE
0014 // commercial license or contractual agreement.
0015 
0016 #ifndef _TDataStd_ExtStringArray_HeaderFile
0017 #define _TDataStd_ExtStringArray_HeaderFile
0018 
0019 #include <Standard.hxx>
0020 
0021 #include <TColStd_HArray1OfExtendedString.hxx>
0022 #include <TDF_Attribute.hxx>
0023 #include <Standard_Integer.hxx>
0024 #include <Standard_OStream.hxx>
0025 #include <Standard_GUID.hxx>
0026 
0027 class TDF_Label;
0028 class TCollection_ExtendedString;
0029 class TDF_RelocationTable;
0030 class TDF_DeltaOnModification;
0031 
0032 
0033 class TDataStd_ExtStringArray;
0034 DEFINE_STANDARD_HANDLE(TDataStd_ExtStringArray, TDF_Attribute)
0035 
0036 //! ExtStringArray Attribute. Handles an array of UNICODE strings (represented by the TCollection_ExtendedString class).
0037 class TDataStd_ExtStringArray : public TDF_Attribute
0038 {
0039   friend class TDataStd_DeltaOnModificationOfExtStringArray;
0040   DEFINE_STANDARD_RTTIEXT(TDataStd_ExtStringArray, TDF_Attribute)
0041 public:
0042 
0043   //! class methods
0044   //! =============
0045   //! Returns the GUID for the attribute.
0046   Standard_EXPORT static const Standard_GUID& GetID();
0047   
0048   //! Finds, or creates, an ExtStringArray attribute with <lower>
0049   //! and <upper> bounds on the specified label.
0050   //! If <isDelta> == False, DefaultDeltaOnModification is used.
0051   //! If <isDelta> == True, DeltaOnModification of the current attribute is used.
0052   //! If attribute is already set, all input parameters are refused and the found
0053   //! attribute is returned.
0054   Standard_EXPORT static Handle(TDataStd_ExtStringArray) Set (const TDF_Label& label, const Standard_Integer lower, const Standard_Integer upper, const Standard_Boolean isDelta = Standard_False);
0055 
0056   //! Finds, or creates, an ExtStringArray attribute with explicit user defined <guid>.
0057   //! The ExtStringArray attribute  is  returned.
0058   Standard_EXPORT static Handle(TDataStd_ExtStringArray) Set (const TDF_Label& label,  const Standard_GUID&   theGuid,
0059                                                               const Standard_Integer lower, const Standard_Integer upper,
0060                                                               const Standard_Boolean isDelta = Standard_False);
0061 
0062 
0063   //! Initializes the inner array with bounds from <lower> to <upper>
0064   Standard_EXPORT void Init (const Standard_Integer lower, const Standard_Integer upper);
0065   
0066   //! Sets  the   <Index>th  element  of   the  array to <Value>
0067   //! OutOfRange exception is raised if <Index> doesn't respect Lower and Upper bounds of the internal  array.
0068   Standard_EXPORT void SetValue (const Standard_Integer Index, const TCollection_ExtendedString& Value);
0069 
0070   //! Sets the explicit GUID (user defined) for the attribute.
0071   Standard_EXPORT void SetID( const Standard_GUID&  theGuid) Standard_OVERRIDE;
0072 
0073   //! Sets default GUID for the attribute.
0074   Standard_EXPORT void SetID() Standard_OVERRIDE;
0075 
0076   //! Returns the value of  the  <Index>th element of the array
0077   Standard_EXPORT const TCollection_ExtendedString& Value (const Standard_Integer Index) const;
0078 
0079   const TCollection_ExtendedString& operator () (const Standard_Integer Index) const
0080   {
0081     return Value(Index);
0082   }
0083   
0084   //! Return the lower bound.
0085   Standard_EXPORT Standard_Integer Lower() const;
0086   
0087   //! Return the upper bound
0088   Standard_EXPORT Standard_Integer Upper() const;
0089   
0090   //! Return the number of elements of <me>.
0091   Standard_EXPORT Standard_Integer Length() const;
0092   
0093   //! Sets the inner array <myValue> of the ExtStringArray attribute to <newArray>.
0094   //! If value of <newArray> differs from <myValue>, Backup performed and myValue
0095   //! refers to new instance of HArray1OfExtendedString that holds <newArray> values
0096   //! If <isCheckItems> equal True each item of <newArray> will be checked with each
0097   //! item of <myValue> for coincidence (to avoid backup).
0098   Standard_EXPORT void ChangeArray (const Handle(TColStd_HArray1OfExtendedString)& newArray, const Standard_Boolean isCheckItems = Standard_True);
0099 
0100   //! Return the inner array of the ExtStringArray attribute
0101   const Handle(TColStd_HArray1OfExtendedString)& Array() const { return myValue; }
0102 
0103   Standard_Boolean GetDelta() const { return myIsDelta; }
0104 
0105   //! for  internal  use  only!
0106   void SetDelta (const Standard_Boolean isDelta) { myIsDelta = isDelta; }
0107 
0108   Standard_EXPORT TDataStd_ExtStringArray();
0109   
0110   Standard_EXPORT const Standard_GUID& ID() const Standard_OVERRIDE;
0111   
0112   Standard_EXPORT void Restore (const Handle(TDF_Attribute)& With) Standard_OVERRIDE;
0113   
0114   Standard_EXPORT Handle(TDF_Attribute) NewEmpty() const Standard_OVERRIDE;
0115   
0116   Standard_EXPORT void Paste (const Handle(TDF_Attribute)& Into, const Handle(TDF_RelocationTable)& RT) const Standard_OVERRIDE;
0117   
0118   Standard_EXPORT virtual Standard_OStream& Dump (Standard_OStream& anOS) const Standard_OVERRIDE;
0119   
0120   //! Makes a DeltaOnModification between <me> and
0121   //! <anOldAttribute>.
0122   Standard_EXPORT virtual Handle(TDF_DeltaOnModification) DeltaOnModification (const Handle(TDF_Attribute)& anOldAttribute) const Standard_OVERRIDE;
0123   
0124   //! Dumps the content of me into the stream
0125   Standard_EXPORT virtual void DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth = -1) const Standard_OVERRIDE;
0126 
0127 private:
0128 
0129   void RemoveArray() { myValue.Nullify(); }
0130 
0131 private:
0132 
0133   Handle(TColStd_HArray1OfExtendedString) myValue;
0134   Standard_Boolean myIsDelta;
0135   Standard_GUID myID;
0136 
0137 };
0138 
0139 #endif // _TDataStd_ExtStringArray_HeaderFile