Matrix.h

Go to the documentation of this file.
00001 /***************************************************************************
00002  *
00003  * Copyright (C) 2009-2010 Cassio Neri Moreira
00004  *
00005  * This file is part of the KeyValue library.
00006  *
00007  * The KeyValue library is free software; you can redistribute it and/or
00008  * modify it under the terms of the GNU General Public License as published
00009  * by the Free Software Foundation, either version 3 of the License, or (at
00010  * your option) any later version.
00011  *
00012  * The KeyValue library is distributed in the hope that it will be useful,
00013  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00014  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
00015  * Public License for more details.
00016  *
00017  * You should have received a copy of the GNU General Public License along
00018  * with KeyValue. If not, see <http://www.gnu.org/licenses/>.
00019  *
00020  * If you modify this library, or any covered work, by linking or combining
00021  * it with Excel (or a modified version of that program), containing parts
00022  * covered by the terms of End-User License Agreement for Microsoft
00023  * Software, the licensors of KeyValue grant you additional permission to
00024  * convey the resulting work.
00025  *
00026  **************************************************************************/
00027 
00035 #ifndef KEYVALUE_KEY_GENERIC_MATRIX_H_
00036 #define KEYVALUE_KEY_GENERIC_MATRIX_H_
00037 
00038 #include "keyvalue/extern/String.h"
00039 #include "keyvalue/key/converter/StdMatrix.h"
00040 #include "keyvalue/key/Traits.h"
00041 
00042 namespace keyvalue {
00043 namespace key {
00044 
00052 template<typename ElementType>
00053 class Matrix : public Traits<ElementType, StdMatrix> {
00054 
00055 public:
00056 
00060   explicit
00061   Matrix(const string& name);
00062 
00071   Matrix(const string& name, size_t nRows, size_t nCols_);
00072 
00073 private:
00074 
00075 private :
00076 
00085   void
00086   checkSize(size_t nRows, size_t nCols) const;
00087 
00088   size_t nRows_;
00089   size_t nCols_;
00090 
00091 }; // class Matrix
00092 
00093 /*--------------------------------------------------------------------------
00094  * Matrix()
00095  *------------------------------------------------------------------------*/
00096 
00097 template<typename ElementType>
00098 Matrix<ElementType>::Matrix(const string& name) :
00099   Matrix::Traits_(name),
00100   nRows_(0),
00101   nCols_(0) {
00102 }
00103 
00104 template<typename ElementType>
00105 Matrix<ElementType>::Matrix(const string& name, const size_t nRows,
00106   const size_t nCols) :
00107   Matrix::Traits_(name),
00108   nRows_(nRows),
00109   nCols_(nCols) {
00110 }
00111 
00112 /*--------------------------------------------------------------------------
00113  * checkSize()
00114  *------------------------------------------------------------------------*/
00115 
00116 template<typename ElementType>
00117 void
00118 Matrix<ElementType>::checkSize(const size_t nRows, const size_t nCols) const
00119 {
00120   if (nRows_ != 0 && nRows_ != nRows)
00121     throw RuntimeError() & "Matrix assigned to key '" & Key::getName() &
00122       "' has wrong number of rows! Expecting " & nRows_ & " got " & nRows &
00123       ".";
00124 
00125   if (nCols_ != 0 && nCols_ != nCols)
00126     throw RuntimeError() & "Matrix assigned to key '" & Key::getName() &
00127       "' has wrong number of columns! Expecting " & nCols_ & " got " & nCols
00128       & ".";
00129 }
00130 
00131 } // namespace key
00132 } // namespace keyvalue
00133 
00134 #endif // KEYVALUE_KEY_GENERIC_MATRIX_H_