15edbd5653a68e0ccfd88801295986faab08293b
[occt.git] / src / PCDM / PCDM_RetrievalDriver.cxx
1 // Created on: 1997-08-07
2 // Created by: Jean-Louis Frenkel
3 // Copyright (c) 1997-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17
18 #include <CDM_Application.hxx>
19 #include <CDM_Document.hxx>
20 #include <CDM_MessageDriver.hxx>
21 #include <CDM_MetaData.hxx>
22 #include <PCDM.hxx>
23 #include <PCDM_BaseDriverPointer.hxx>
24 #include <PCDM_Document.hxx>
25 #include <PCDM_DriverError.hxx>
26 #include <PCDM_ReadWriter.hxx>
27 #include <PCDM_RetrievalDriver.hxx>
28 #include <PCDM_TypeOfFileDriver.hxx>
29 #include <Resource_Manager.hxx>
30 #include <Standard_ErrorHandler.hxx>
31 #include <Standard_NoSuchObject.hxx>
32 #include <Standard_Type.hxx>
33 #include <Standard_TypeMismatch.hxx>
34 #include <TCollection_AsciiString.hxx>
35 #include <TCollection_ExtendedString.hxx>
36 #include <TColStd_SequenceOfAsciiString.hxx>
37
38 IMPLEMENT_STANDARD_RTTIEXT(PCDM_RetrievalDriver,PCDM_Reader)
39
40 //=======================================================================
41 //function : Read
42 //purpose  : 
43 //=======================================================================
44 void PCDM_RetrievalDriver::Read(Standard_IStream&               /*theIStream*/,
45                                 const Handle(Storage_Data)&     /*theStorageData*/,
46                                 const Handle(CDM_Document)&     /*theDoc*/,
47                                 const Handle(CDM_Application)&  /*theApplication*/)
48 {
49   
50 }
51
52 void PCDM_RetrievalDriver::References(const TCollection_ExtendedString& aFileName, PCDM_SequenceOfReference& theReferences, const Handle(CDM_MessageDriver)& theMsgDriver)
53   { PCDM_ReadWriter::Reader(aFileName)->ReadReferences(aFileName, theReferences, theMsgDriver);}
54
55 Standard_Integer PCDM_RetrievalDriver::DocumentVersion(const TCollection_ExtendedString& aFileName, const Handle(CDM_MessageDriver)& theMsgDriver)
56   { return PCDM_ReadWriter::Reader(aFileName)->ReadDocumentVersion(aFileName, theMsgDriver); }
57
58 Standard_Integer PCDM_RetrievalDriver::ReferenceCounter(const TCollection_ExtendedString& aFileName, const Handle(CDM_MessageDriver)& theMsgDriver)
59   { return PCDM_ReadWriter::Reader(aFileName)->ReadReferenceCounter(aFileName, theMsgDriver); }
60
61 void PCDM_RetrievalDriver::SetFormat (const TCollection_ExtendedString& aformat)
62   { myFormat = aformat; }
63
64 TCollection_ExtendedString PCDM_RetrievalDriver::GetFormat () const
65   { return myFormat; }