File: SmbiosImpl.h

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 (216 lines) | stat: -rw-r--r-- 7,467 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
// vim:expandtab:autoindent:tabstop=4:shiftwidth=4:filetype=c:
/*
 * 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.
 */


#ifndef SMBIOSIMPL_H
#define SMBIOSIMPL_H

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

#include <vector>

#include "smbios/ISmbios.h"
#include "smbios/SmbiosLowLevel.h"
#include "SmbiosWorkaroundImpl.h"
#include "FactoryImpl2.h"
#include "ExceptionImpl.h"

namespace smbios
{
    DEFINE_EXCEPTION_EX( ParameterExceptionImpl, smbios, ParameterException );
    DEFINE_EXCEPTION_EX( ParseExceptionImpl, smbios, ParseException );
    DEFINE_EXCEPTION_EX( StringUnavailableImpl, smbios, StringUnavailable );
    DEFINE_EXCEPTION_EX( DataOutOfBoundsImpl, smbios, DataOutOfBounds );
    DEFINE_EXCEPTION_EX( ItemNotFoundImpl, smbios, ItemNotFound );

    class SmbiosFactoryImpl : public factory::TFactory<SmbiosFactory>
    {
    public:
        SmbiosFactoryImpl();
        virtual ~SmbiosFactoryImpl() throw();
        virtual ISmbiosTable *getSingleton( ); // returns singleton
        virtual ISmbiosTable *makeNew( ); // not for use
    protected:
        static ISmbiosTable *_tableInstance;
    };

    class SmbiosStrategy
    {
    public:
        SmbiosStrategy() {};
        virtual ~SmbiosStrategy() {};

        virtual bool getSmbiosTable(const u8 **, smbiosLowlevel::smbios_table_entry_point *, bool ) = 0;
    };

    class SmbiosMemoryStrategy : public SmbiosStrategy
    {
    public:
        virtual ~SmbiosMemoryStrategy() throw() {};
        SmbiosMemoryStrategy(unsigned long initOffset) :SmbiosStrategy(), offset(initOffset) {};
        SmbiosMemoryStrategy(const SmbiosMemoryStrategy &src) : SmbiosStrategy(), offset(src.offset) {};
        virtual bool getSmbiosTable(const u8 **, smbiosLowlevel::smbios_table_entry_point *, bool );
    protected:
        // popular mem locations we use in scanning code.
        enum {
            E_BLOCK_START = 0xE0000UL,
            F_BLOCK_START = 0xF0000UL,
            F_BLOCK_END = 0xFFFFFUL
        };

        virtual void getSmbiosTableHeader(smbiosLowlevel::smbios_table_entry_point *, bool);
        virtual void getSmbiosTableBuf(const u8 **, smbiosLowlevel::smbios_table_entry_point);
        unsigned long offset;
    };

    class SmbiosLinuxEFIStrategy : public SmbiosMemoryStrategy
    {
    public:
        virtual ~SmbiosLinuxEFIStrategy() throw() {};
        SmbiosLinuxEFIStrategy() :SmbiosMemoryStrategy(0) {};
        SmbiosLinuxEFIStrategy(const SmbiosLinuxEFIStrategy &src) : SmbiosMemoryStrategy(0) {};

    protected:
        virtual void getSmbiosTableHeader(smbiosLowlevel::smbios_table_entry_point *, bool);
    };

    class SmbiosWinWMIStrategy : public SmbiosStrategy
    {
    public:
        virtual ~SmbiosWinWMIStrategy() throw() {};
        SmbiosWinWMIStrategy() {};
        virtual bool getSmbiosTable(const u8 **, smbiosLowlevel::smbios_table_entry_point *, bool );
    };

    class SmbiosWinGetFirmwareTableStrategy : public SmbiosStrategy
    {
    public:
        virtual ~SmbiosWinGetFirmwareTableStrategy() throw() {};
        SmbiosWinGetFirmwareTableStrategy() {};
        virtual bool getSmbiosTable(const u8 **, smbiosLowlevel::smbios_table_entry_point *, bool );
    };

    class SmbiosTable : public virtual ISmbiosTable
    {
    public:
        // CONSTRUCTORS, DESTRUCTOR, and ASSIGNMENT
        explicit SmbiosTable(std::vector<SmbiosStrategy *> initStrategyList, bool strictValidation = 0);

        // CONSTRUCTORS, DESTRUCTOR, and ASSIGNMENT
        //SmbiosTable (const SmbiosTable & source);
        //virtual SmbiosTable& operator = (const SmbiosTable & source);
        virtual ~SmbiosTable ();

        // ITERATORS
        virtual iterator begin ();
        virtual const_iterator begin () const;

        virtual iterator end ();
        virtual const_iterator end () const;

        virtual iterator operator[]( const int );
        virtual const_iterator operator[]( const int ) const;

        virtual iterator operator[]( const std::string & );
        virtual const_iterator operator[]( const std::string & ) const;


        // MEMBERS
        virtual void rawMode(bool m) const;
        virtual int getNumberOfEntries () const;  // used by unit-test code

        // Used by the validateBios.cpp
        virtual smbiosLowlevel::smbios_table_entry_point getTableEPS() const;

        virtual std::ostream & streamify(std::ostream & cout ) const;

        // used by factory only.
        virtual void initializeWorkaround() const;
        // restricting the header checking
        virtual void setStrictValidationMode(bool mode) const;
        virtual bool getStrictValidationMode() const;

        virtual ISmbiosItem *getCachedItem( const void * ) const;
        virtual void cacheItem( const void *, ISmbiosItem &newitem ) const;
        virtual void clearItemCache() const;
        ISmbiosItem & getSmbiosItem (const u8 *);
        const ISmbiosItem & getSmbiosItem (const u8 *) const;
        const u8 * nextSmbiosStruct ( const u8 * current = 0) const;

    protected:
        // No-arg constructor not legal for this class for regular users
        SmbiosTable ();

        // used by the iterator
        virtual ISmbiosItem &makeItem(
            const void *header = 0) const;

        mutable std::map< const void *, ISmbiosItem *> itemList;
        mutable bool initializing;
        mutable bool strictValidationMode;
        mutable std::auto_ptr<SmbiosWorkaroundTable> workaround;
        const u8 * smbiosBuffer;
        smbiosLowlevel::smbios_table_entry_point table_header;

    private:
        SmbiosTable (const SmbiosTable &source);

        virtual void reReadTable();
        mutable unsigned long offset;
        std::vector<SmbiosStrategy *> strategyList;
    };




    class SmbiosItem : public ISmbiosItem
    {
    public:
        SmbiosItem (const SmbiosItem & source);
        explicit SmbiosItem (const smbiosLowlevel::smbios_structure_header *header = 0);
        virtual ~SmbiosItem ();

        virtual std::auto_ptr<const ISmbiosItem> clone() const;
        virtual std::auto_ptr<ISmbiosItem> clone();
        virtual std::ostream & streamify( std::ostream & cout ) const;

        u8 getType() const;
        u8 getLength() const;
        u16 getHandle() const;

        virtual void getData( unsigned int offset, u8 *out, size_t size ) const;

        virtual const u8* getBufferCopy(size_t &length) const;
        virtual size_t getBufferSize() const;

        virtual const char *getStringByStringNumber (u8) const;

        // for table only...
        virtual void fixup( const SmbiosWorkaroundTable *workaround ) const;
    protected:
        const smbiosLowlevel::smbios_structure_header * header;
        size_t header_size;

    private:
        SmbiosItem & operator = (const SmbiosItem & source);
    };

}


#endif /* SMBIOSIMPL_H */