-
Notifications
You must be signed in to change notification settings - Fork 2
/
ScoreSegmentOperatorSeqWriteOnly.cc
237 lines (204 loc) · 7.18 KB
/
ScoreSegmentOperatorSeqWriteOnly.cc
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
236
237
//////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 1999 The Regents of the University of California
// Permission to use, copy, modify, and distribute this software and
// its documentation for any purpose, without fee, and without a
// written agreement is hereby granted, provided that the above copyright
// notice and this paragraph and the following two paragraphs appear in
// all copies.
//
// IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
// DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING
// LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION,
// EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF
// SUCH DAMAGE.
//
// THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON
// AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO
// PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
//
//////////////////////////////////////////////////////////////////////////////
//
// BRASS source file
//
// SCORE Segment Operator (Sequential Write-only)
// $Revision: 1.7 $
//
//////////////////////////////////////////////////////////////////////////////
#include <iostream>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <string.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#include "ScoreStream.h"
#include "ScoreSegment.h"
#include "ScoreOperator.h"
#include "ScoreOperatorElement.h"
#include "ScoreSegmentOperatorSeqWriteOnly.h"
#include "ScoreConfig.h"
char *ScoreSegmentOperatorSeqWriteOnly_instancename=
"ScoreSegmentOperatorSeqWriteOnly_instance";
void *ScoreSegmentOperatorSeqWriteOnly_proc_run(void *obj) {
return(((ScoreSegmentOperatorSeqWriteOnly *)obj)->proc_run());
}
ScoreSegmentOperatorSeqWriteOnly::ScoreSegmentOperatorSeqWriteOnly(
unsigned int dwidth, unsigned int awidth, size_t nelems,
UNSIGNED_SCORE_SEGMENT segPtr,
UNSIGNED_SCORE_STREAM data) {
constructorHelper(dwidth, awidth, nelems, segPtr, data);
}
ScoreSegmentOperatorSeqWriteOnly::ScoreSegmentOperatorSeqWriteOnly(
unsigned int dwidth, unsigned int awidth, size_t nelems,
SIGNED_SCORE_SEGMENT segPtr,
SIGNED_SCORE_STREAM data) {
constructorHelper(dwidth, awidth, nelems, segPtr, data);
}
ScoreSegmentOperatorSeqWriteOnly::ScoreSegmentOperatorSeqWriteOnly(
unsigned int dwidth, unsigned int awidth, size_t nelems,
BOOLEAN_SCORE_SEGMENT segPtr,
BOOLEAN_SCORE_STREAM data) {
constructorHelper(dwidth, awidth, nelems, segPtr, data);
}
ScoreSegmentOperatorSeqWriteOnly::ScoreSegmentOperatorSeqWriteOnly(
unsigned int dwidth, unsigned int awidth, size_t nelems,
SIGNED_FIXED_SCORE_SEGMENT segPtr,
SIGNED_FIXED_STREAM data) {
constructorHelper(dwidth, awidth, nelems, segPtr, data);
}
ScoreSegmentOperatorSeqWriteOnly::ScoreSegmentOperatorSeqWriteOnly(
unsigned int dwidth, unsigned int awidth, size_t nelems,
UNSIGNED_FIXED_SCORE_SEGMENT segPtr,
UNSIGNED_FIXED_STREAM data) {
constructorHelper(dwidth, awidth, nelems, segPtr, data);
}
ScoreSegmentOperatorSeqWriteOnly::ScoreSegmentOperatorSeqWriteOnly(
unsigned int dwidth, unsigned int awidth, size_t nelems,
DOUBLE_SCORE_SEGMENT segPtr,
DOUBLE_SCORE_STREAM data) {
constructorHelper(dwidth, awidth, nelems, segPtr, data);
}
// Decides whether or not the ScoreSegmentOperator should be sent to the
// scheduler. If not, then it spawns the operator as a thread.
void ScoreSegmentOperatorSeqWriteOnly::constructorHelper(
unsigned int dwidth, unsigned int awidth, size_t nelems,
ScoreSegment *segPtr,
ScoreStream *data) {
char *instance_fn=resolve(ScoreSegmentOperatorSeqWriteOnly_instancename);
// do sanity checking!
if (segPtr->segLength != nelems) {
cerr << "SCORESEGMENTOPERATORSEQWRITEONLYERR: segPtr->segLength != " <<
"nelems" << endl;
exit(1);
}
if (segPtr->segWidth != dwidth) {
cerr << "SCORESEGMENTOPERATORSEQWRITEONLYERR: segPtr->segWidth != " <<
"dwidth" << endl;
exit(1);
}
if (instance_fn!=(char *) NULL) {
long slen;
long alen;
long blen;
ScoreSegmentOperatorSeqWriteOnly_arg *arg_data;
struct msgbuf *msgp;
arg_data=(ScoreSegmentOperatorSeqWriteOnly_arg *)
malloc(sizeof(ScoreSegmentOperatorSeqWriteOnly_arg));
arg_data->segPtrID=SEGMENT_OBJ_TO_ID(segPtr);
arg_data->dataID=STREAM_OBJ_TO_ID(data);
alen=sizeof(ScoreSegmentOperatorSeqWriteOnly_arg);
slen=strlen(instance_fn);
blen=sizeof(long)+sizeof(long)+slen+alen;
msgp=(struct msgbuf *)malloc(sizeof(msgbuf)+sizeof(char)*(blen-1));
int sid=schedulerId();
memcpy(msgp->mtext,&alen,sizeof(long));
memcpy(msgp->mtext+sizeof(long),&slen,sizeof(long));
memcpy(msgp->mtext+sizeof(long)*2,instance_fn,slen);
memcpy(msgp->mtext+sizeof(long)*2+slen,arg_data,alen);
msgp->mtype=SCORE_INSTANTIATE_MESSAGE_TYPE;
int res=msgsnd(sid, msgp, blen, 0);
if (res==-1) {
cerr << "ScoreSegmentOperatorSeqWriteOnly msgsnd call failed with " <<
"errno=" << errno << endl;
exit(2);
}
} else {
segment = segPtr;
dataStream = data;
// FIX ME!
cerr << "NEED TO ADD SCORESEGMENTOPERATORSEQWRITEONLY SPAWNING CODE!" <<
endl;
exit(2);
}
}
#if 0
void ScoreSegmentOperatorSeqWriteOnly::proc_run() {
int data, *atable=(int *)dataPtr;
while (1) {
if (sim_isFaulted) {
if (checkIfAddrFault(sim_faultedAddr)) {
if (VERBOSEDEBUG || DEBUG) {
cout << " SEG SEQSNK: faulting on address " << sim_faultedAddr <<
endl;
}
} else {
sim_isFaulted = 0;
sim_faultedAddr = 0;
// move data to DATASTREAM
data = atable[address];
address++;
if (VERBOSEDEBUG || DEBUG) {
cout << " SEG SEQSNK: firing - data is " << data << endl;
}
DATASTREAM->stream_write(data);
}
} else if (address == segLength) {
if (VERBOSEDEBUG || DEBUG) {
cout << " SEG SEQSNK: firing EOS input" << endl;
}
break;
} else {
if (VERBOSEDEBUG || DEBUG) {
cout << " SEG SEQSNK: firing - address is " << address << endl;
}
// check if the address is within bounds of the mapped address block.
if (checkIfAddrFault(address)) {
sim_isFaulted = 1;
sim_faultedAddr = address;
if (VERBOSEDEBUG || DEBUG) {
cout << " SEG SEQSNK: faulting on address " << sim_faultedAddr <<
endl;
}
}
// writing data to DATASTREAM
data = atable[address];
address++;
if (VERBOSEDEBUG || DEBUG) {
cout << " SEG SEQSNK: firing - data is " << data << endl;
}
DATASTREAM->stream_write(data);
}
}
stream_close(DATASTREAM);
}
#else
void *ScoreSegmentOperatorSeqWriteOnly::proc_run() {
cerr << "FIX ME!!!!!!" << endl;
exit(1);
}
#endif
#undef NEW_ScoreSegmentOperatorSeqWriteOnly
extern "C" void *NEW_ScoreSegmentOperatorSeqWriteOnly(
unsigned int dwidth, unsigned int awidth, size_t nelems,
void *segPtr,
void *data) {
return((void *) (new ScoreSegmentOperatorSeqWriteOnly(
dwidth, awidth, nelems,
(UNSIGNED_SCORE_SEGMENT) segPtr,
(UNSIGNED_SCORE_STREAM) data)));
}