File: TestRingBuffer.h

package info (click to toggle)
jacktrip 1.3.0%2Bds0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,744 kB
  • sloc: cpp: 15,253; sh: 355; makefile: 113
file content (48 lines) | stat: -rw-r--r-- 1,000 bytes parent folder | download
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
#ifndef __TESTRINGBUFFER__
#define __TESTRINGBUFFER__

#include "RingBuffer.h"
#include <QThread>
#include <iostream>

static RingBuffer rb(2,100);

class TestRingBufferWrite : public QThread
{
public:

    void run()
    {
        int8_t* writeSlot;
        writeSlot = new int8_t[2];
        writeSlot[0] = *"a";
        writeSlot[1] = *"b";
        while (true) {
            //std::cout << "writing BEFORE" << std::endl;
            rb.insertSlotBlocking(writeSlot);
            //std::cout << "writing AFTER" << std::endl;
        }
    }

};


class TestRingBufferRead : public QThread
{
public:

    void run()
    {
        int8_t* readSlot;
        readSlot = new int8_t[2];
        while (true) {
            //std::cout << "reading BEFORE" << std::endl;
            rb.readSlotBlocking(readSlot);
            //std::cout << "reading AFTER" << std::endl;
            //std::cout << *(readSlot) << std::endl;
            //std::cout << *(readSlot+1) << std::endl;
        }
    }
};

#endif