Architecture.cc

00001 /* 
00002    EyeDB Object Database Management System
00003    Copyright (C) 1994-2008 SYSRA
00004    
00005    EyeDB is free software; you can redistribute it and/or
00006    modify it under the terms of the GNU Lesser General Public
00007    License as published by the Free Software Foundation; either
00008    version 2.1 of the License, or (at your option) any later version.
00009    
00010    EyeDB is distributed in the hope that it will be useful,
00011    but WITHOUT ANY WARRANTY; without even the implied warranty of
00012    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00013    Lesser General Public License for more details.
00014    
00015    You should have received a copy of the GNU Lesser General Public
00016    License along with this library; if not, write to the Free Software
00017    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA 
00018 */
00019 
00020 /*
00021    Author: Eric Viara <viara@sysra.com>
00022 */
00023 
00024 
00025 #include <eyedbconfig.h>
00026 
00027 #include <eyedb/eyedb.h>
00028 #include "lib/compile_builtin.h"
00029 
00030 namespace eyedb {
00031 
00032   static Architecture *arch_;
00033 
00034   void Architecture::init()
00035   {
00036     arch_ = new Architecture(eyedblib::CompileBuiltin::getArch(),
00037                              eyedblib::CompileBuiltin::getCpu(),
00038                              eyedblib::CompileBuiltin::getOs(),
00039                              eyedblib::CompileBuiltin::getCompiler(),
00040 #ifdef WORDS_BIGENDIAN
00041                              true
00042 #else
00043                              false
00044 #endif
00045                              );
00046   }
00047 
00048   void Architecture::_release()
00049   {
00050     delete arch_;
00051   }
00052 
00053   Architecture *Architecture::getArchitecture()
00054   {
00055     if (!arch_)
00056       init();
00057     return arch_;
00058   }
00059 }

Generated on Mon Dec 22 18:15:47 2008 for eyedb by  doxygen 1.5.3