0026290: It is neccessary to separate visualization part from TKCAF
[occt.git] / src / BinLDrivers / BinLDrivers.cxx
CommitLineData
b311480e 1// Created on: 2002-10-29
2// Created by: Michael SAZONOV
973c2be1 3// Copyright (c) 2002-2014 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
d5f74e42 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
973c2be1 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.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
7fd59977 15
42cf5bc1 16
17#include <BinLDrivers.hxx>
18#include <BinLDrivers_DocumentRetrievalDriver.hxx>
19#include <BinLDrivers_DocumentStorageDriver.hxx>
7fd59977 20#include <BinMDataStd.hxx>
42cf5bc1 21#include <BinMDF.hxx>
22#include <BinMDF_ADriverTable.hxx>
7fd59977 23#include <BinMDocStd.hxx>
42cf5bc1 24#include <BinMFunction.hxx>
25#include <CDM_MessageDriver.hxx>
7fd59977 26#include <Plugin_Macro.hxx>
42cf5bc1 27#include <Standard_Failure.hxx>
28#include <Standard_GUID.hxx>
29#include <Standard_Transient.hxx>
30#include <TCollection_AsciiString.hxx>
7fd59977 31
42cf5bc1 32//#include <BinMNaming.hxx>
7fd59977 33static Standard_GUID BinLStorageDriver ("13a56835-8269-11d5-aab2-0050044b1af1");
34static Standard_GUID BinLRetrievalDriver("13a56836-8269-11d5-aab2-0050044b1af1");
f47afe53 35#define CURRENT_DOCUMENT_VERSION 8
7fd59977 36
37//=======================================================================
38//function : Factory
39//purpose : PLUGIN FACTORY
40//=======================================================================
ce8b059a 41const Handle(Standard_Transient)& BinLDrivers::Factory(const Standard_GUID& theGUID)
7fd59977 42{
43 if (theGUID == BinLStorageDriver)
44 {
0797d9d3 45#ifdef OCCT_DEBUG
7fd59977 46 cout << "BinLDrivers : Storage Plugin" << endl;
63c629aa 47#endif
7fd59977 48 static Handle(BinLDrivers_DocumentStorageDriver) model_sd =
49 new BinLDrivers_DocumentStorageDriver;
50 return model_sd;
51 }
52
53 if (theGUID == BinLRetrievalDriver)
54 {
0797d9d3 55#ifdef OCCT_DEBUG
7fd59977 56 cout << "BinLDrivers : Retrieval Plugin" << endl;
63c629aa 57#endif
7fd59977 58 static Handle(BinLDrivers_DocumentRetrievalDriver) model_rd =
59 new BinLDrivers_DocumentRetrievalDriver;
60 return model_rd;
61 }
62
63 Standard_Failure::Raise ("BinLDrivers : unknown GUID");
ce8b059a 64 static Handle(Standard_Transient) aNullHandle;
65 return aNullHandle;
7fd59977 66}
67
68//=======================================================================
69//function : AttributeDrivers
70//purpose :
71//=======================================================================
72
73Handle(BinMDF_ADriverTable) BinLDrivers::AttributeDrivers
74 (const Handle(CDM_MessageDriver)& aMsgDrv)
75{
76 Handle(BinMDF_ADriverTable) aTable = new BinMDF_ADriverTable;
77
78 BinMDF ::AddDrivers (aTable, aMsgDrv);
79 BinMDataStd ::AddDrivers (aTable, aMsgDrv);
80 BinMFunction ::AddDrivers (aTable, aMsgDrv);
81 BinMDocStd ::AddDrivers (aTable, aMsgDrv);
82
7fd59977 83 return aTable;
84}
85
86//=======================================================================
87//function : StorageVersion
88//purpose :
89//=======================================================================
90
91TCollection_AsciiString BinLDrivers::StorageVersion()
92{
93 TCollection_AsciiString aVersionStr (CURRENT_DOCUMENT_VERSION);
94 return aVersionStr;
95}
498ce76b 96
7fd59977 97PLUGIN(BinLDrivers)