xref: /aosp_15_r20/external/OpenCSD/decoder/source/pkt_printers/raw_frame_printer.cpp (revision 02ca8ccacfba7e0df68f3332a95f3180334d6649)
1 /*
2  * \file       raw_frame_printer.cpp
3  * \brief      OpenCSD :
4  *
5  * \copyright  Copyright (c) 2015, ARM Limited. All Rights Reserved.
6  */
7 
8 /*
9  * Redistribution and use in source and binary forms, with or without modification,
10  * are permitted provided that the following conditions are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright notice,
13  * this list of conditions and the following disclaimer.
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright notice,
16  * this list of conditions and the following disclaimer in the documentation
17  * and/or other materials provided with the distribution.
18  *
19  * 3. Neither the name of the copyright holder nor the names of its contributors
20  * may be used to endorse or promote products derived from this software without
21  * specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
25  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26  * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
27  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
28  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
30  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
32  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33  */
34 
35 #include <string>
36 #include <sstream>
37 #include <iomanip>
38 
39 #include "opencsd.h"
40 
41 
TraceRawFrameIn(const ocsd_datapath_op_t op,const ocsd_trc_index_t index,const ocsd_rawframe_elem_t frame_element,const int dataBlockSize,const uint8_t * pDataBlock,const uint8_t traceID)42 ocsd_err_t RawFramePrinter::TraceRawFrameIn(  const ocsd_datapath_op_t op,
43                                                 const ocsd_trc_index_t index,
44                                                 const ocsd_rawframe_elem_t frame_element,
45                                                 const int dataBlockSize,
46                                                 const uint8_t *pDataBlock,
47                                                 const uint8_t traceID)
48 {
49 
50     if (is_muted())
51         return OCSD_OK;
52 
53     if(op == OCSD_OP_DATA) // only interested in actual frame data.
54     {
55         std::string strData;
56         std::ostringstream oss;
57         int printDataSize = dataBlockSize;
58 
59         oss << "Frame Data; Index" << std::setw(7) << index << "; ";
60 
61         switch(frame_element)
62         {
63         case OCSD_FRM_PACKED: oss << std::setw(15) << "RAW_PACKED; "; break;
64         case OCSD_FRM_HSYNC:  oss << std::setw(15) << "HSYNC; "; break;
65         case OCSD_FRM_FSYNC:  oss << std::setw(15)  << "FSYNC; "; break;
66         case OCSD_FRM_ID_DATA:
67             oss << std::setw(10) << "ID_DATA[";
68             if (traceID == OCSD_BAD_CS_SRC_ID)
69                 oss << "????";
70             else
71                 oss << "0x" << std::hex << std::setw(2) << std::setfill('0') << (uint16_t)traceID;
72             oss << "]; ";
73             break;
74         default: oss << std::setw(15) << "UNKNOWN; "; break;
75         }
76 
77         if(printDataSize)
78         {
79             createDataString(printDataSize,pDataBlock,16,strData);
80             oss << strData;
81         }
82         oss << std::endl;
83         itemPrintLine(oss.str());
84     }
85     return OCSD_OK;
86 }
87 
createDataString(const int dataSize,const uint8_t * pData,int bytesPerLine,std::string & dataStr)88 void RawFramePrinter::createDataString(const int dataSize, const uint8_t *pData, int bytesPerLine, std::string &dataStr)
89 {
90     int lineBytes = 0;
91     std::ostringstream oss;
92 
93     for(int i = 0; i < dataSize; i++)
94     {
95         if(lineBytes == bytesPerLine)
96         {
97             oss << std::endl;
98             lineBytes = 0;
99         }
100         oss << std::hex << std::setw(2) << std::setfill('0') << (uint32_t)pData[i] << " ";
101         lineBytes ++;
102     }
103     dataStr = oss.str();
104 }
105 
106 
107 /* End of File raw_frame_printer.cpp */
108