File: TokenD4.cpp

package info (click to toggle)
libsmbios 2.0.3.dfsg-1.1
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 3,768 kB
  • ctags: 2,016
  • sloc: cpp: 14,292; sh: 9,408; xml: 3,820; makefile: 454; ansic: 402; python: 157
file content (235 lines) | stat: -rw-r--r-- 7,145 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
 * vim:expandtab:autoindent:tabstop=4:shiftwidth=4:filetype=c:cindent:textwidth=0:
 *
 * Copyright (C) 2005 Dell Inc.
 *  by Michael Brown <Michael_E_Brown@dell.com>
 * Licensed under the Open Software License version 2.1
 *
 * Alternatively, you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published
 * by the Free Software Foundation; either version 2 of the License,
 * or (at your option) any later version.

 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU General Public License for more details.
 */

// compat header should always be first header if including system headers
#define LIBSMBIOS_SOURCE
#include "smbios/compat.h"

#include <iomanip>
#include <string.h>

#include "TokenImpl.h"

using namespace std;

namespace smbios
{
    CmosTokenD4::CmosTokenD4( const smbios::ISmbiosItem &initItem, const indexed_io_token *initToken )
            : IToken(), ICmosToken(), item(initItem.clone()), cmos(cmos::CmosRWFactory::getFactory()->getSingleton())
    {
        memcpy( const_cast<indexed_io_token *>(&token), initToken, sizeof(token) );

        size_t size;
        const u8 *ptr =  item->getBufferCopy(size) ; // MUST DELETE[]!
        memcpy( const_cast<indexed_io_access_structure*>(&structure), ptr, sizeof(structure) );
        delete [] const_cast<u8 *>(ptr); //const_cast to fix msvc++
    }

    // no dynamically allocated memory, yay!
    CmosTokenD4::~CmosTokenD4() throw()
    {}

    string CmosTokenD4::getTokenClass() const
    {
        return "TokenD4";
    }

    const ISmbiosItem &CmosTokenD4::getItemRef() const
    {
        return *item;
    }

    u32 CmosTokenD4::getType() const
    {
        return token.tokenId;
    }

    bool CmosTokenD4::isActive() const
    {
        if( isString() )
            throw InvalidAccessModeImpl("tried to call isActive() on a string token." );

        bool retval = false;

        u8 byte = cmos->readByte(
                      structure.indexPort,
                      structure.dataPort,
                      token.location
                  );

        if( (byte & (~token.andMask)) == token.orValue  )
            retval = true;

        return retval;
    }

    void CmosTokenD4::activate() const
    {
        if( isString() )
            throw InvalidAccessModeImpl("tried to activate() a string token." );

        u8 byte = cmos->readByte(
                      structure.indexPort,
                      structure.dataPort,
                      token.location
                  );

        byte = byte & token.andMask;
        byte = byte | token.orValue;

        cmos->writeByte(
            structure.indexPort,
            structure.dataPort,
            token.location,
            byte
        );
    }

    bool CmosTokenD4::isString() const
    {
        bool retval = false;
        if( 0 == token.andMask)
            retval = true;
        return retval;
    }

    bool CmosTokenD4::isBool() const
    {
        return ! isString();
    }

    const string CmosTokenD4::getString(u8 *byteArray, unsigned int size ) const
    {
        if( ! isString() )
            throw InvalidAccessModeImpl("tried to call getString() on a bit token.");

        bool allocatedMem = false;
        try
        {
            unsigned int strSize = getStringLength();
            if( !byteArray )
            {
                size = strSize + 1;
                byteArray = new u8[size];
                allocatedMem = true;
            }

            if( size < strSize + 1 )
                throw ParameterErrorImpl("called getString() with too small of a buffer."); // not enough space to store results

            for( unsigned int i=0; i<strSize; ++i )
                byteArray[i] = '\0';

            cmos::readByteArray(
                *cmos,
                structure.indexPort,
                structure.dataPort,
                token.location,
                byteArray,
                strSize
            );

            byteArray[ getStringLength() ] = '\0';
            string retval(reinterpret_cast<const char *>(byteArray));
            if( allocatedMem )
            {
                delete [] byteArray;
                byteArray = 0;
                allocatedMem = false;
            }
            return retval;

        }
        catch ( const std::exception & )
        {
            if( allocatedMem )
                delete [] byteArray;
            throw;
        }

    }

    void CmosTokenD4::setString( const u8 *byteArray, size_t size ) const
    {
        if( ! isString() )
            throw InvalidAccessModeImpl("tried to setString() on non-string.");

        unsigned int strSize = getStringLength();

        u8 *targetBuffer = new u8[strSize];
        memset(targetBuffer, 0, strSize);
        memcpy( targetBuffer, byteArray, size < strSize ? size : strSize );

        cmos::writeByteArray(
            *cmos,
            structure.indexPort,
            structure.dataPort,
            token.location,
            targetBuffer,
            strSize
        );

        delete[](targetBuffer);
    }

    unsigned int CmosTokenD4::getStringLength() const
    {
        if( ! isString() )
            throw InvalidAccessModeImpl("tried to getStringLength on non-string.");
        // STRING must be at least 1 byte. Does not make sense
        // otherwise. BIOS Error? NVRAM byte tokens (0x83/0x84) seem to be
        // string tokens of length 0. That looks wrong.
        return token.stringLength ? token.stringLength : 1;
    }

    void CmosTokenD4::getCMOSDetails( u16 *indexPort, u16 *dataPort, u8 *location ) const
    {
        *indexPort = structure.indexPort;
        *dataPort = structure.dataPort;
        *location = token.location;
        return;
    }

    std::ostream & CmosTokenD4::streamify( std::ostream & cout ) const
    {
        std::ios::fmtflags old_opts = cout.flags ();

        cout << "DMI type 0x" << hex << setfill ('0') << setw (2) << static_cast<int>(structure.type);
        cout << "  Handle 0x" << hex << setfill ('0') << setw (4) << static_cast<int>(structure.handle);
        cout << "  Index Port 0x" << hex << setw(2) << structure.indexPort;
        cout << "  Data Port 0x"  << hex << setw(2) << structure.dataPort;
        cout << "  Type 0x" << hex << setw(4) << static_cast<int>(getType());
        cout << "  Location 0x" << hex << setw(2) << static_cast<int>(token.location);
        if( isString() )
        {
            cout << " STRING  Length " << dec << setfill('0') << setw(2) << getStringLength() ;
            cout << " value(" << getString() << ")";
        }
        else
        {
            cout << " AND(" << setw(1) << static_cast<int>(token.andMask) << ") ";
            cout << "OR(" << setw(1) << static_cast<int>(token.orValue) << ") ";
            cout << " BITFIELD: " << isActive();
        }

        cout.flags (old_opts);

        return cout;
    }

}