File: oSaHpiCtrlRecStream.cpp

package info (click to toggle)
openhpi 2.14.1-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 20,368 kB
  • ctags: 13,803
  • sloc: ansic: 187,087; cpp: 32,188; sh: 10,292; makefile: 4,466; perl: 1,529
file content (87 lines) | stat: -rw-r--r-- 2,043 bytes parent folder | download | duplicates (9)
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
/*      -*- linux-c -*-
 *
 * (C) Copyright IBM Corp. 2005
 *
 * 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.  This
 * file and program are licensed under a BSD style license.  See
 * the Copying file included with the OpenHPI distribution for
 * full licensing terms.
 *
 * Author(s):
 *    W. David Ashley <dashley@us.ibm.com>
 */


#include <stdlib.h>
#include <string.h>
#include <stdio.h>
extern "C"
{
#include <SaHpi.h>
}
#include "oSaHpiTypesEnums.hpp"
#include "oSaHpiCtrlStateStream.hpp"
#include "oSaHpiCtrlRecStream.hpp"


/**
 * Default constructor.
 */
oSaHpiCtrlRecStream::oSaHpiCtrlRecStream() {
    Default.Repeat = false;
    Default.StreamLength = 0;
    Default.Stream[0] = '\0';
};


/**
 * Constructor.
 *
 * @param buf    The reference to the class to be copied.
 */
oSaHpiCtrlRecStream::oSaHpiCtrlRecStream(const oSaHpiCtrlRecStream& ent) {
    memcpy(this, &ent, sizeof(SaHpiCtrlRecStreamT));
}


/**
 * Print the contents of the entity.
 *
 * @param stream Target stream.
 * @param buffer Address of the SaHpiCtrlRecStreamT struct.
 *
 * @return True if there was an error, otherwise false.
 */
bool oSaHpiCtrlRecStream::fprint(FILE *stream,
                                 const int indent,
                                 const SaHpiCtrlRecStreamT *strm) {
	int i, err = 0;
    char indent_buf[indent + 1];

    if (stream == NULL || strm == NULL) {
        return true;
    }
    for (i = 0; i < indent; i++) {
        indent_buf[i] = ' ';
    }
    indent_buf[indent] = '\0';

    err = fprintf(stream, "%s", indent_buf);
    if (err < 0) {
        return true;
    }
    err = fprintf(stream, "Default\n");
    if (err < 0) {
        return true;
    }
    const SaHpiCtrlStateStreamT *css = (const SaHpiCtrlStateStreamT *)&strm->Default;
    err = oSaHpiCtrlStateStream::fprint(stream, indent + 3, css);
    if (err < 0) {
        return true;
    }

	return false;
}