summaryrefslogtreecommitdiffstats
path: root/nci/jni/DataQueue.h
blob: bfd415c85d6f6c5b7798a067c95d0b470cd401f6 (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
/*
 * Copyright (C) 2012 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/*
 *  Store data bytes in a variable-size queue.
 */

#pragma once
#include "NfcJniUtil.h"
#include "gki.h"
#include "Mutex.h"
#include <list>


class DataQueue
{
public:
    /*******************************************************************************
    **
    ** Function:        DataQueue
    **
    ** Description:     Initialize member variables.
    **
    ** Returns:         None.
    **
    *******************************************************************************/
    DataQueue ();


    /*******************************************************************************
    **
    ** Function:        ~DataQueue
    **
    ** Description:      Release all resources.
    **
    ** Returns:         None.
    **
    *******************************************************************************/
    ~DataQueue ();


    /*******************************************************************************
    **
    ** Function:        enqueue
    **
    ** Description:     Append data to the queue.
    **                  data: array of bytes
    **                  dataLen: length of the data.
    **
    ** Returns:         True if ok.
    **
    *******************************************************************************/
    bool enqueue (UINT8* data, UINT16 dataLen);


    /*******************************************************************************
    **
    ** Function:        dequeue
    **
    ** Description:     Retrieve and remove data from the front of the queue.
    **                  buffer: array to store the data.
    **                  bufferMaxLen: maximum size of the buffer.
    **                  actualLen: actual length of the data.
    **
    ** Returns:         True if ok.
    **
    *******************************************************************************/
    bool dequeue (UINT8* buffer, UINT16 bufferMaxLen, UINT16& actualLen);


    /*******************************************************************************
    **
    ** Function:        isEmpty
    **
    ** Description:     Whether the queue is empty.
    **
    ** Returns:         True if empty.
    **
    *******************************************************************************/
    bool isEmpty();

private:
    struct tHeader
    {
        UINT16 mDataLen; //number of octets of data
        UINT16 mOffset; //offset of the first octet of data
    };
    typedef std::list<tHeader*> Queue;

    Queue mQueue;
    Mutex mMutex;
};