summaryrefslogtreecommitdiff
path: root/service/src/com/android/telephony/imsmedia/lib/libimsmedia/core/text/nodes/TextRendererNode.cpp
blob: 254081d1f236afa7283017604890035c50d4b60b (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
/**
 * Copyright (C) 2022 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.
 */

#include <TextRendererNode.h>
#include <TextConfig.h>
#include <ImsMediaTimer.h>
#include <ImsMediaTrace.h>

/** Maximum waiting time when packet loss found */
#define TEXT_LOSS_MAX_WAITING_TIME (1000)

TextRendererNode::TextRendererNode(BaseSessionCallback* callback) :
        JitterBufferControlNode(callback, IMS_MEDIA_TEXT)
{
    mCodecType = TextConfig::TEXT_CODEC_NONE;
    mBOMReceived = false;
    mLastPlayedSeq = 0;
    mLossWaitTime = 0;
    mFirstFrameReceived = false;
}

TextRendererNode::~TextRendererNode() {}

kBaseNodeId TextRendererNode::GetNodeId()
{
    return kNodeIdTextRenderer;
}

ImsMediaResult TextRendererNode::Start()
{
    IMLOGD1("[Start] codec[%d]", mCodecType);

    if (mCodecType == TextConfig::TEXT_CODEC_NONE)
    {
        return RESULT_INVALID_PARAM;
    }

    mBOMReceived = false;
    mLastPlayedSeq = 0;
    mLossWaitTime = 0;
    mFirstFrameReceived = false;
    mNodeState = kNodeStateRunning;
    return RESULT_SUCCESS;
}

void TextRendererNode::Stop()
{
    IMLOGD0("[Stop]");
    mNodeState = kNodeStateStopped;
}

bool TextRendererNode::IsRunTime()
{
    return false;
}

bool TextRendererNode::IsSourceNode()
{
    return false;
}

void TextRendererNode::SetConfig(void* config)
{
    if (config == nullptr)
    {
        return;
    }

    TextConfig* pConfig = reinterpret_cast<TextConfig*>(config);
    mCodecType = pConfig->getCodecType();
    mRedundantLevel = pConfig->getRedundantLevel();
}

bool TextRendererNode::IsSameConfig(void* config)
{
    if (config == nullptr)
    {
        return true;
    }

    TextConfig* pConfig = reinterpret_cast<TextConfig*>(config);

    return (mCodecType == pConfig->getCodecType() &&
            mRedundantLevel == pConfig->getRedundantLevel());
}

void TextRendererNode::ProcessData()
{
    static const char* CHAR_REPLACEMENT = "\xEf\xbf\xbd";
    uint8_t* data;
    uint32_t size;
    uint32_t timestamp;
    uint32_t seq;
    bool mark;
    ImsMediaSubType subtype;
    ImsMediaSubType dataType;

    while (GetData(&subtype, &data, &size, &timestamp, &mark, &seq, &dataType))
    {
        IMLOGD_PACKET5(IM_PACKET_LOG_TEXT,
                "[ProcessData] size[%u], TS[%u], mark[%u], seq[%u], last seq[%u]", size, timestamp,
                mark, seq, mLastPlayedSeq);

        if (mFirstFrameReceived)
        {
            // detect lost packet
            uint16_t seqDiff = (uint16_t)seq - mLastPlayedSeq;

            if (seqDiff > 1)  // lost found
            {
                // Wait 1000 sec - RFC4103: 5.4 - Compensation for Packets Out of Order
                uint32_t nCurTime = ImsMediaTimer::GetTimeInMilliSeconds();

                if (mLossWaitTime == 0)
                {
                    mLossWaitTime = nCurTime;
                }

                if (nCurTime - mLossWaitTime <= TEXT_LOSS_MAX_WAITING_TIME)
                {
                    return;
                }

                int32_t lostCount = seqDiff - 1;
                IMLOGD1("[ProcessData] lostCount[%d]", lostCount);

                // Send a lost T140 as question mark
                for (int32_t nIndex = 1; nIndex <= lostCount; nIndex++)
                {
                    // send replacement character in case of lost packet detected
                    android::String8* text = new android::String8(CHAR_REPLACEMENT);
                    mCallback->SendEvent(
                            kImsMediaEventNotifyRttReceived, reinterpret_cast<uint64_t>(text), 0);

                    uint16_t lostSeq = mLastPlayedSeq + (uint16_t)nIndex;
                    IMLOGD_PACKET1(IM_PACKET_LOG_TEXT, "[ProcessData] LostSeq[%u]", lostSeq);
                }
            }

            mLossWaitTime = 0;  // reset loss wait
        }

        int32_t offset = size;
        uint8_t* dataPtr = data;

        // remove BOM from the string and send event
        while (offset > 0)
        {
            // remain last null data
            uint32_t transSize = 0;
            offset > MAX_RTT_LEN ? transSize = MAX_RTT_LEN : transSize = offset;

            if (mBOMReceived == false && offset >= 3 && dataPtr[0] == 0xef && dataPtr[1] == 0xbb &&
                    dataPtr[2] == 0xbf)
            {
                IMLOGD0("[ProcessData] got byte order mark");
                mBOMReceived = true;
                dataPtr += 3;
                transSize -= 3;
                offset -= 3;
            }

            // send event to notify to transfer rtt data received
            if (transSize > 0)
            {
                memset(mBuffer, 0, sizeof(mBuffer));
                memcpy(mBuffer, dataPtr, transSize);
                android::String8* text = new android::String8(mBuffer);
                mCallback->SendEvent(
                        kImsMediaEventNotifyRttReceived, reinterpret_cast<uint64_t>(text), 0);
                IMLOGD_PACKET2(
                        IM_PACKET_LOG_TEXT, "[ProcessData] size[%d] text[%s]", transSize, mBuffer);
            }

            dataPtr += transSize;
            offset -= transSize;
        }

        mFirstFrameReceived = true;
        mLastPlayedSeq = (uint16_t)seq;
        DeleteData();
    }
}