0024157: Parallelization of assembly part of BO
[occt.git] / src / XmlMDF / XmlMDF_ADriver.cxx
1 // Created on: 2001-07-09
2 // Created by: Julia DOROVSKIKH
3 // Copyright (c) 2001-2012 OPEN CASCADE SAS
4 //
5 // The content of this file is subject to the Open CASCADE Technology Public
6 // License Version 6.5 (the "License"). You may not use the content of this file
7 // except in compliance with the License. Please obtain a copy of the License
8 // at http://www.opencascade.org and read it completely before using this file.
9 //
10 // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
11 // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
12 //
13 // The Original Code and all software distributed under the License is
14 // distributed on an "AS IS" basis, without warranty of any kind, and the
15 // Initial Developer hereby disclaims all such warranties, including without
16 // limitation, any warranties of merchantability, fitness for a particular
17 // purpose or non-infringement. Please see the License for the specific terms
18 // and conditions governing the rights and limitations under the License.
19
20
21 #include <XmlMDF_ADriver.ixx>
22
23 //=======================================================================
24 //function : XmlMDF_ADriver
25 //purpose  : Constructor
26 //=======================================================================
27
28 XmlMDF_ADriver::XmlMDF_ADriver (const Handle(CDM_MessageDriver)& theMsgDriver,
29                                 const Standard_CString           theNS,
30                                 const Standard_CString           theName)
31      : myMessageDriver (theMsgDriver)
32 {
33   if (theNS != NULL)
34     if (theNS[0] != '\0') {
35       myTypeName = theNS;
36       myTypeName += ':';
37     }
38   if (theName != NULL)
39     myTypeName += theName;
40 }
41
42 //=======================================================================
43 //function : VersionNumber
44 //purpose  : default version number from which the driver is available
45 //=======================================================================
46
47 Standard_Integer XmlMDF_ADriver::VersionNumber () const
48 {
49   return 0;
50 }
51
52 //=======================================================================
53 //function : SourceType
54 //purpose  : 
55 //=======================================================================
56
57 Handle(Standard_Type) XmlMDF_ADriver::SourceType () const
58 {
59   return NewEmpty() -> DynamicType();
60 }
61
62 //=======================================================================
63 //function : TypeName
64 //purpose  : 
65 //=======================================================================
66
67 const TCollection_AsciiString& XmlMDF_ADriver::TypeName () const
68 {
69   const Standard_CString aString = myTypeName.ToCString();
70   if (myTypeName.Length() == 0 || aString [myTypeName.Length() - 1] == ':')
71     (TCollection_AsciiString&)myTypeName += SourceType() -> Name();
72   return myTypeName;
73 }
74
75 //=======================================================================
76 //function : WriteMessage
77 //purpose  : 
78 //=======================================================================
79
80 void XmlMDF_ADriver::WriteMessage
81                               (const TCollection_ExtendedString& aMessage) const
82 {
83   myMessageDriver -> Write (aMessage.ToExtString());
84 }