|  | /*
 * Simple Queue, specially developed for Atom types
 * Copyright (C) 2012 Filipe Coelho <falktx@falktx.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * 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 General Public License for more details.
 *
 * For a full copy of the GNU General Public License see the COPYING file
 */
#ifndef LV2_ATOM_QUEUE_H
#define LV2_ATOM_QUEUE_H
#include "lv2/atom.h"
#include <QtCore/QMutex>
class Lv2AtomQueue
{
public:
    Lv2AtomQueue()
    {
        index = indexPool = 0;
        empty = true;
        full  = false;
        memset(dataPool, 0, sizeof(unsigned char)*MAX_POOL_SIZE);
    }
    void copyDataFrom(Lv2AtomQueue* const queue)
    {
        // lock mutexes
        queue->mutex.lock();
        mutex.lock();
        // copy data from queue
        memcpy(data, queue->data, sizeof(datatype)*MAX_SIZE);
        memcpy(dataPool, queue->dataPool, sizeof(unsigned char)*MAX_POOL_SIZE);
        index = queue->index;
        indexPool = queue->indexPool;
        empty = queue->empty;
        full  = queue->full;
        // unlock our mutex, no longer needed
        mutex.unlock();
        // reset queque
        memset(queue->data, 0, sizeof(datatype)*MAX_SIZE);
        memset(queue->dataPool, 0, sizeof(unsigned char)*MAX_POOL_SIZE);
        queue->index = queue->indexPool = 0;
        queue->empty = true;
        queue->full  = false;
        // unlock queque mutex
        queue->mutex.unlock();
    }
    bool isEmpty()
    {
        return empty;
    }
    bool isFull()
    {
        return full;
    }
    void lock()
    {
        mutex.lock();
    }
    void unlock()
    {
        mutex.unlock();
    }
    void put(const uint32_t portIndex, const LV2_Atom* const atom, const bool lock = true)
    {
        CARLA_ASSERT(atom && atom->size > 0);
        CARLA_ASSERT(indexPool + atom->size < MAX_POOL_SIZE); //  overflow
        if (full || atom->size == 0 || indexPool + atom->size >= MAX_POOL_SIZE)
            return;
        if (lock)
            mutex.lock();
        for (unsigned short i=0; i < MAX_SIZE; i++)
        {
            if (data[i].size == 0)
            {
                data[i].portIndex  = portIndex;
                data[i].size       = atom->size;
                data[i].type       = atom->type;
                data[i].poolOffset = indexPool;
                memcpy(dataPool + indexPool, (const unsigned char*)LV2_ATOM_BODY_CONST(atom), atom->size);
                empty = false;
                full  = (i == MAX_SIZE-1);
                indexPool += atom->size;
                break;
            }
        }
        if (lock)
            mutex.unlock();
    }
    bool get(uint32_t* const portIndex, const LV2_Atom** const atom, const bool lock = true)
    {
        CARLA_ASSERT(portIndex && atom);
        if (empty || ! (portIndex && atom))
            return false;
        if (lock)
            mutex.lock();
        full = false;
        if (data[index].size == 0)
        {
            index = indexPool = 0;
            empty = true;
            if (lock)
                mutex.lock();
            return false;
        }
        retAtom.atom.size = data[index].size;
        retAtom.atom.type = data[index].type;
        memcpy(retAtom.data, dataPool + data[index].poolOffset, data[index].size);
        *portIndex = data[index].portIndex;
        *atom      = (LV2_Atom*)&retAtom;
        data[index].portIndex  = 0;
        data[index].size       = 0;
        data[index].type       = 0;
        data[index].poolOffset = 0;
        index++;
        empty = false;
        if (lock)
            mutex.unlock();
        return true;
    }
private:
    struct datatype {
        size_t   size;
        uint32_t type;
        uint32_t portIndex;
        uint32_t poolOffset;
        datatype()
            : size(0),
              type(0),
              portIndex(0),
              poolOffset(0) {}
    };
    static const unsigned short MAX_SIZE = 128;
    static const unsigned short MAX_POOL_SIZE = 8192;
    datatype data[MAX_SIZE];
    unsigned char dataPool[MAX_POOL_SIZE];
    struct {
        LV2_Atom atom;
        unsigned char data[MAX_POOL_SIZE];
    } retAtom;
    unsigned short index, indexPool;
    bool empty, full;
    QMutex mutex;
};
#endif // LV2_ATOM_QUEUE_H
 |