~ubuntu-branches/ubuntu/raring/mdds/raring

« back to all changes in this revision

Viewing changes to example/mixed_type_matrix.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Rene Engelhard
  • Date: 2010-12-21 03:00:49 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20101221030049-15awcps1vyzo90s0
Tags: 0.4.0-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*************************************************************************
 
2
 *
 
3
 * Copyright (c) 2010 Kohei Yoshida
 
4
 * 
 
5
 * Permission is hereby granted, free of charge, to any person
 
6
 * obtaining a copy of this software and associated documentation
 
7
 * files (the "Software"), to deal in the Software without
 
8
 * restriction, including without limitation the rights to use,
 
9
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
 
10
 * copies of the Software, and to permit persons to whom the
 
11
 * Software is furnished to do so, subject to the following
 
12
 * conditions:
 
13
 * 
 
14
 * The above copyright notice and this permission notice shall be
 
15
 * included in all copies or substantial portions of the Software.
 
16
 * 
 
17
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
18
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 
19
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
20
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 
21
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 
22
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 
23
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 
24
 * OTHER DEALINGS IN THE SOFTWARE.
 
25
 *
 
26
 ************************************************************************/
 
27
 
 
28
#include <mdds/mixed_type_matrix.hpp>
 
29
 
 
30
#include <string>
 
31
#include <iostream>
 
32
#include <sstream>
 
33
 
 
34
using namespace mdds;
 
35
using namespace std;
 
36
 
 
37
typedef ::mdds::mixed_type_matrix<string, int> mx_type;
 
38
 
 
39
string str(const mx_type::element& e)
 
40
{
 
41
    ostringstream os;
 
42
    switch (e.m_type)
 
43
    {
 
44
        case element_empty:
 
45
            os << "empty";
 
46
        break;
 
47
        case element_numeric:
 
48
            os << "numeric (" << e.m_numeric << ")";
 
49
        break;
 
50
        case element_boolean:
 
51
            os << "boolean";
 
52
        break;
 
53
        case element_string:
 
54
            os << "string";
 
55
        break;
 
56
        default:
 
57
            os << "<unkwown>";
 
58
    }
 
59
    return os.str();
 
60
}
 
61
 
 
62
void print_element(const mx_type& mx, size_t row, size_t col)
 
63
{
 
64
    cout << "(" << row << "," << col << ") = ";
 
65
    switch (mx.get_type(row, col))
 
66
    {
 
67
        case element_boolean:
 
68
            cout << "boolean: " << (mx.get_boolean(row, col) ? "true" : "false");
 
69
        break;
 
70
        case element_numeric:
 
71
            cout << "numeric: " << mx.get_numeric(row, col);
 
72
        break;
 
73
        case element_string:
 
74
            cout << "string: " << *mx.get_string(row, col);
 
75
        break;
 
76
        case element_empty:
 
77
            cout << "empty";
 
78
        break;
 
79
        default:
 
80
            ;
 
81
    }
 
82
    cout << endl;
 
83
}
 
84
 
 
85
int main()
 
86
{
 
87
    // Create a matrix instance initialized with numeric zero values.
 
88
    mx_type mx(3, 3, matrix_density_filled_zero);
 
89
 
 
90
    // Insert values of various types.
 
91
    mx.set(0, 0, 5.5);
 
92
    mx.set(1, 0, true);
 
93
    mx.set(2, 1, new string("string value"));
 
94
    mx.set_empty(1, 2);
 
95
 
 
96
    // sizes.first contains row size, and sizes.second contains column size.
 
97
    mx_type::size_pair_type sizes = mx.size();
 
98
 
 
99
    // print all elements.
 
100
    for (size_t i = 0; i < sizes.first; ++i)
 
101
        for (size_t j = 0; j < sizes.second; ++j)
 
102
            print_element(mx, i, j);
 
103
}