0027961: Visualization - remove unused and no more working OpenGl_AVIWriter
[occt.git] / src / BinDrivers / BinDrivers.cxx
1 // Created on: 2002-10-29
2 // Created by: Michael SAZONOV
3 // Copyright (c) 2002-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16
17 #include <BinDrivers.hxx>
18 #include <BinDrivers_DocumentRetrievalDriver.hxx>
19 #include <BinDrivers_DocumentStorageDriver.hxx>
20 #include <BinLDrivers.hxx>
21 #include <BinMDataStd.hxx>
22 #include <BinMDataXtd.hxx>
23 #include <BinMDF.hxx>
24 #include <BinMDF_ADriverTable.hxx>
25 #include <BinMDocStd.hxx>
26 #include <BinMFunction.hxx>
27 #include <BinMNaming.hxx>
28 #include <CDM_MessageDriver.hxx>
29 #include <Plugin_Macro.hxx>
30 #include <Standard_Failure.hxx>
31 #include <Standard_GUID.hxx>
32 #include <Standard_Transient.hxx>
33 #include <TCollection_AsciiString.hxx>
34 #include <TDocStd_Application.hxx>
35
36 static Standard_GUID BinStorageDriver  ("03a56835-8269-11d5-aab2-0050044b1af1");
37 static Standard_GUID BinRetrievalDriver("03a56836-8269-11d5-aab2-0050044b1af1");
38
39 //=======================================================================
40 //function : Factory
41 //purpose  : PLUGIN FACTORY
42 //=======================================================================
43 const Handle(Standard_Transient)& BinDrivers::Factory(const Standard_GUID& theGUID)
44 {
45   if (theGUID == BinStorageDriver)
46   {
47 #ifdef OCCT_DEBUG
48     cout << "BinDrivers : Storage Plugin" << endl;
49 #endif
50     static Handle(Standard_Transient) model_sd =
51       new BinDrivers_DocumentStorageDriver;
52     return model_sd;
53   }
54
55   if (theGUID == BinRetrievalDriver)
56   {
57 #ifdef OCCT_DEBUG
58     cout << "BinDrivers : Retrieval Plugin" << endl;
59 #endif
60     static Handle(Standard_Transient) model_rd =
61       new BinDrivers_DocumentRetrievalDriver;
62     return model_rd;
63   }
64
65   Standard_Failure::Raise ("BinDrivers : unknown GUID");
66   static Handle(Standard_Transient) aNullHandle;
67   return aNullHandle;
68 }
69
70 //=======================================================================
71 //function : DefineFormat
72 //purpose  : 
73 //=======================================================================
74 void BinDrivers::DefineFormat (const Handle(TDocStd_Application)& theApp)
75 {
76   theApp->DefineFormat ("BinOcaf", "Binary OCAF Document", "cbf",
77                         new BinDrivers_DocumentRetrievalDriver, 
78                         new BinDrivers_DocumentStorageDriver);
79 }
80
81 //=======================================================================
82 //function : AttributeDrivers
83 //purpose  :
84 //=======================================================================
85
86 Handle(BinMDF_ADriverTable) BinDrivers::AttributeDrivers 
87                          (const Handle(CDM_MessageDriver)& aMsgDrv)
88 {
89   Handle(BinMDF_ADriverTable) aTable = new BinMDF_ADriverTable;
90
91   BinMDF        ::AddDrivers (aTable, aMsgDrv);
92   BinMDataStd   ::AddDrivers (aTable, aMsgDrv);
93   BinMDataXtd   ::AddDrivers (aTable, aMsgDrv);  
94   BinMNaming    ::AddDrivers (aTable, aMsgDrv);
95   BinMDocStd    ::AddDrivers (aTable, aMsgDrv);
96   BinMFunction  ::AddDrivers (aTable, aMsgDrv);
97   return aTable;
98 }
99
100 //=======================================================================
101 //function : StorageVersion
102 //purpose  : 
103 //=======================================================================
104
105 TCollection_AsciiString BinDrivers::StorageVersion()
106 {
107   return BinLDrivers::StorageVersion();
108 }
109
110 PLUGIN(BinDrivers)