[go: up one dir, main page]

File: generator.h

package info (click to toggle)
srecord 1.58-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 5,144 kB
  • sloc: cpp: 26,774; sh: 7,053; makefile: 2,889; awk: 187; vhdl: 15
file content (104 lines) | stat: -rw-r--r-- 2,636 bytes parent folder | download | duplicates (6)
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
//
// srecord - The "srecord" program.
// Copyright (C) 2007, 2008, 2010, 2011 Peter Miller
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation; either version 3 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 Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see
// <http://www.gnu.org/licenses/>.
//

#ifndef SRECORD_INPUT_GENERATOR_H
#define SRECORD_INPUT_GENERATOR_H

#include <srecord/input.h>
#include <srecord/interval.h>

namespace srecord
{

/**
  * The srecord::input_generator class is used to represent the state of
  * generating data from whole cloth.
  */
class input_generator:
    public input
{
public:
    /**
      * The destructor.
      */
    virtual ~input_generator();

    /**
      * The constructor.
      *
      * @param range
      *     The data range over which data is to be generated.
      */
    input_generator(const interval &range);

    /**
      * The create class method may be used to create new instances of
      * input data generators.
      *
      * @param cmdln
      *     The command line arguments, for deciding what to generate.
      */
    static input::pointer create(arglex_tool *cmdln);

protected:
    // See base class for documentation
    bool read(record &record);

    // See base class for documentation
    void disable_checksum_validation();

    /**
      * The generate_data method is used to manufacture data for a
      * specific address.
      *
      * @param address
      *     The address to generate data for.
      * @returns
      *     one byte of data
      */
    virtual unsigned char generate_data(unsigned long address) = 0;

private:
    /**
      * The range instance variable is used to remember the address
      * range over which we are to generate data.  It shrinks as the
      * data is generated.
      */
    interval range;

    /**
      * The default constructor.
      */
    input_generator();

    /**
      * The copy constructor.
      */
    input_generator(const input_generator &);

    /**
      * The assignment operator.
      */
    input_generator &operator=(const input_generator &);
};

};

// vim: set ts=8 sw=4 et :
#endif // SRECORD_INPUT_GENERATOR_H