0026229: Add the possibility in OCAF to open/save a document from/to a stream object
[occt.git] / src / PCDM / PCDM_Reader.hxx
1 // Created on: 1997-12-18
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 #ifndef _PCDM_Reader_HeaderFile
18 #define _PCDM_Reader_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_Type.hxx>
22
23 #include <PCDM_ReaderStatus.hxx>
24 #include <Standard_Transient.hxx>
25 #include <Standard_IStream.hxx>
26 #include <Storage_Data.hxx>
27
28 class PCDM_DriverError;
29 class CDM_Document;
30 class TCollection_ExtendedString;
31 class CDM_Application;
32
33
34 class PCDM_Reader;
35 DEFINE_STANDARD_HANDLE(PCDM_Reader, Standard_Transient)
36
37
38 class PCDM_Reader : public Standard_Transient
39 {
40
41 public:
42
43   
44   //! this method is called by the framework before the read method.
45   Standard_EXPORT virtual Handle(CDM_Document) CreateDocument() = 0;
46   
47   //! retrieves the content of the file into a new Document.
48   Standard_EXPORT virtual void Read (const TCollection_ExtendedString& aFileName, const Handle(CDM_Document)& aNewDocument, const Handle(CDM_Application)& anApplication) = 0;
49
50   Standard_EXPORT virtual void Read (Standard_IStream&               theIStream,
51                                       const Handle(Storage_Data)&    theStorageData,
52                                       const Handle(CDM_Document)&    theDoc,
53                                       const Handle(CDM_Application)& theApplication) = 0;
54   
55     PCDM_ReaderStatus GetStatus() const;
56
57
58
59
60   DEFINE_STANDARD_RTTIEXT(PCDM_Reader,Standard_Transient)
61
62 protected:
63
64
65   PCDM_ReaderStatus myReaderStatus;
66
67
68 private:
69
70
71
72
73 };
74
75
76 #include <PCDM_Reader.lxx>
77
78
79
80
81
82 #endif // _PCDM_Reader_HeaderFile