summaryrefslogtreecommitdiffstats
path: root/src/lib/string_stream.c
blob: f3b188997af3e4fc46598bfab6d91d7ebcd83cc4 (plain)
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
// $Id: string_stream.c,v 1.2 2014/02/03 01:30:25 daviddu Exp $
// $Source: /afs/awd/projects/eclipz/KnowledgeBase/.cvsroot/eclipz/chips/p8/working/procedures/lib/string_stream.c,v $
//-----------------------------------------------------------------------------
// *! (C) Copyright International Business Machines Corp. 2013
// *! All Rights Reserved -- Property of IBM
// *! *** IBM Confidential ***
//-----------------------------------------------------------------------------

/// \file string_stream.c
/// \brief Implementations of string streams.
///
/// \bug Need to work out overwrite/multiple-write protection.

#include "ssx.h"
#include "string_stream.h"


// 'Flush' a string stream by making it empty

static int
string_stream_fflush(FILE* stream)
{
    StringStream* string = (StringStream*) stream;

    string->next_read = 0;
    string->next_write = 0;
    string->flags &= ~STRING_STREAM_FULL;
    return 0;
}


// Read the remaining tail (if any) of the circular buffer, assuming the
// buffer is not empty.

static size_t
read_tail(StringStream* string, void* buf, size_t size)
{
    size_t read, remainder;

    read = 0;
    if (string->next_read >= string->next_write) {

        remainder = string->size - string->next_read;
        read = MIN(size, remainder);
        memcpy(buf, (void *)(&(string->data[string->next_read])), read);
        if (read != remainder) {
            string->next_read += read;
        } else {
            string->next_read = 0;
        }
    }
    return read;
}


// Read the area (if any) from the read pointer to the write pointer

static size_t
read_head(StringStream* string, void* buf, size_t size)
{
    size_t read, remainder;

    read = 0;
    if (string->next_write > string->next_read) {

        remainder = string->next_write - string->next_read;
        read = MIN(size, remainder);
        memcpy(buf, (void *)(&(string->data[string->next_read])), read);
        string->next_read += read;
    }
    return read;
}


// Read as much data as possible from a circular buffer.  Return -EAGAIN if the
// buffer would underflow.

static int
string_stream_sread(FILE* stream, void* buf, size_t size, size_t* read)
{
    StringStream *string = (StringStream *)stream;
    size_t were_read;
    int rc;

    if ((string->next_read == string->next_write) &&
        !(string->flags & STRING_STREAM_FULL)) {
        were_read = 0;
    } else {
        were_read = read_tail(string, buf, size);
        if (were_read != size) {
            were_read += read_head(string, buf + were_read, size - were_read);
        }
    }
    if (were_read != 0) {
        string->flags &= ~STRING_STREAM_FULL;
    }
    *read = were_read;
    if (were_read < size) {
        rc = -EAGAIN;
    } else {
        rc = 0;
    }
    return rc;
}




// Write the remaining tail (if any) of the circular buffer, assuming the
// buffer is not full.

static size_t
write_tail(StringStream* string, const void* buf, size_t size)
{
    size_t written, remainder;

    written = 0;
    if (string->next_write >= string->next_read) {

        remainder = string->size - string->next_write; // string->size is the size of the stream(our buffer)
        written = MIN(size, remainder);
        // memcpy(void *dest, const void *src, size_t n) from /lib/memcpy.c
        memcpy((void *)(&(string->data[string->next_write])), buf, written);
        if (written != remainder) {
            string->next_write += written;
        } else {
            string->next_write = 0;
        }
    }
    return written;
}

// Write the area (if any) from the write pointer to the read pointer

static size_t
write_head(StringStream* string, const void* buf, size_t size)
{
    size_t written, remainder;

    written = 0;
    if (string->next_read > string->next_write) {

        remainder = string->next_read - string->next_write;
        written = MIN(size, remainder);
        memcpy((void *)(&(string->data[string->next_write])), buf, written);
        string->next_write += written;
    }
    return written;
}


// Write as much data as possible to a circular buffer.  Return -EAGAIN if the
// buffer would overflow.

static int
circular_swrite(FILE* stream, const void* buf, size_t size, size_t* written)
{
    StringStream *string = (StringStream *)stream;
    size_t wrote;
    int rc;

    if (string->flags & STRING_STREAM_FULL) {
        wrote = 0;
    } else {
        wrote = write_tail(string, buf, size);
        if (wrote != size) {
            wrote += write_head(string, buf + wrote, size - wrote);
        }
    }
    if ((wrote != 0) && (string->next_read == string->next_write)) {
        string->flags |= STRING_STREAM_FULL;
    }
    *written = wrote;
    if (wrote < size) {
        rc = -EAGAIN;
    } else {
        rc = 0;
    }
    return rc;
}


// Effectively write all data to a circular buffer with wrapping semantics.

static int
wrapping_swrite(FILE* stream, const void* buf, size_t size, size_t* written)
{
    StringStream *string = (StringStream *)stream;
    size_t wrote;
    int rc;

    if (size >= string->size) { // If size of data >= size of buffer

        // If the amount of data will fill or overflow the entire buffer size
        // then we effectively fill the buffer with the final bytes of data.

        string->next_read = 0;
        string->next_write = 0;
        string->flags |= STRING_STREAM_FULL;
        memcpy((void *)string->data, buf + (size - string->size), size);

    } else {

        // If the string is not full, try to fill it with the
        // circular_swrite().

        if (string->flags & STRING_STREAM_FULL) {
            wrote = 0;
            rc = -EAGAIN;
        } else {
            rc = circular_swrite(stream, buf, size, &wrote);
        }
        if (rc) {

            // The string is full and we need to overflow. We know that size
            // is less than the buffer size, and the next_read == next_write.
            // Mark the stream not full so a new circular write will work, and
            // at the end reset the full condition.

            string->flags &= ~STRING_STREAM_FULL;
            rc = circular_swrite(stream, buf + wrote, size - wrote, &wrote);
            if (rc) {
                SSX_PANIC(STRING_STREAM_BUG);
            }
            string->next_read = string->next_write;
            string->flags |= STRING_STREAM_FULL;
        }
    }
    *written = size;
    return 0;
}


static int
linear_swrite(FILE* stream, const void* buf, size_t size, size_t* written)
{
    // buf and size correspond to the data we are passing to our own buffer
    uint32_t bit_0_mask = 0x80000000;
    StringStream *string = (StringStream *)stream;
    size_t wrote = 0; // right aligned
    // int rc;
    uint32_t num_bytes_written;
    // uint32_t register_contents;


    //if (wrote != size) {
      // register_contents = in32(PMC_PORE_SCRATCH_REG1);
      // register_contents = register_contents & bit_0_mask;

       //if (!register_contents) {
         // Before writing to SRAM, flush everything so it will write to the top
         // of the buffer each time
         string_stream_fflush(stream);

         // Write printk statement to SRAM
         // wrote will contain the number of bytes written

         wrote += write_tail(string, buf + wrote, size - wrote);
         // if wrote != size, tell Tcl to read the whole buffer, When Tcl is done loop back to write_tail
         // buf= buf+wrote
         // size= size - wrote
         // continue loop until size = 0

         // Sync
         eieio();

         // Store "wrote" to register
         // Set bit 0 to 1
         // out32(addr, data)
         num_bytes_written = (uint32_t)wrote | bit_0_mask;
         out32( PMC_PORE_SCRATCH_REG1 , num_bytes_written );

         // Sync
         eieio();
       //}
    //}

    // outside of loop, set *written = wrote (which is equal to size once all data has been copied to our buffer)
    *written = wrote;
    return 0;

}


int
_string_stream_create(StringStream* stream,
                      void* buf, size_t size, int flags,
                      int (*swrite)(FILE* stream,
                                    const void* buf,
                                    size_t size,
                                    size_t* written))
{
    FILE* file = (FILE*)stream;
    int rc;

    if (SSX_ERROR_CHECK_API) {
        SSX_ERROR_IF((stream == 0) ||
                     ((buf == 0) && (size != 0)),
                     STRING_STREAM_INVALID_ARGUMENT);
    }

    rc = FILE_create(file, flags);

    if (!rc) {
        file->swrite = swrite;
        file->sread = string_stream_sread;
        file->fflush = string_stream_fflush;
        stream->data = buf;
        stream->size = size;
        stream->next_read = 0;
        stream->next_write = 0;
        stream->flags = 0;
    }
    return rc;
}


int
circular_stream_create(CircularStream* stream,
                       void* buf, size_t size, int flags)
{
    return _string_stream_create(stream, buf, size, flags, circular_swrite);
}


int
wrapping_stream_create(CircularStream* stream,
                       void* buf, size_t size, int flags)
{
    return _string_stream_create(stream, buf, size, flags, wrapping_swrite);
}


int
linear_stream_create(CircularStream* stream,
                     void* buf, size_t size, int flags)
{
     FILE* file = (FILE*)stream;
     int rc;

     rc = _string_stream_create(stream, buf, size, flags, linear_swrite);
     if (!rc) {
         
         file->sread = NULL;
         // Write to register where location of buffer is
         out32( PMC_PORE_SCRATCH_REG1, (uint32_t)buf);
     }
     return rc;
}


// InputStream uses string_stream_sread(), however returns EOF once all data
// has been read.

static int
input_stream_sread(FILE* stream, void* buf, size_t size, size_t* read)
{
    int rc;

    rc = string_stream_sread(stream, buf, size, read);
    if (rc == -EAGAIN) {
        rc = EOF;
    }

    return rc;
}


// For simplicity (and ease of maintainence) we create a normal string stream
// then overwrite a few key fields.

int
input_stream_create(StringStream* stream, void* buf, size_t size, int flags)
{
    int rc;

    rc = _string_stream_create(stream, buf, size, flags, 0);
    if (!rc) {
        stream->stream.sread = input_stream_sread;
        stream->stream.fflush = 0;
        stream->flags = STRING_STREAM_FULL;
    }
    return rc;
}


OpenPOWER on IntegriCloud