2019-09-08 17:41:06 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <fstream>
|
|
|
|
#include <iostream>
|
|
|
|
#include <termios.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
|
|
|
|
// Code taken from
|
|
|
|
// https://github.com/embecosm/esp1-systemc-tlm/blob/master/sysc-models/simple-soc/TermSC.h
|
|
|
|
|
2018-09-20 05:44:38 +08:00
|
|
|
#include "Trace.h"
|
|
|
|
|
2019-09-08 17:41:06 +08:00
|
|
|
void Trace::xtermLaunch( char *slaveName ) {
|
|
|
|
char *arg;
|
|
|
|
char *fin = &(slaveName[strlen( slaveName ) - 2]);
|
|
|
|
|
|
|
|
if( NULL == strchr(fin, '/' )) {
|
|
|
|
arg = new char[2 + 1 + 1 + 20 + 1];
|
|
|
|
sprintf( arg, "-S%c%c%d", fin[0], fin[1], ptMaster );
|
|
|
|
} else {
|
|
|
|
char *slaveBase = ::basename( slaveName );
|
|
|
|
arg = new char[2 + strlen( slaveBase ) + 1 + 20 + 1];
|
|
|
|
sprintf( arg, "-S%s/%d", slaveBase, ptMaster );
|
|
|
|
}
|
|
|
|
|
|
|
|
char *argv[3];
|
|
|
|
argv[0] = (char *)( "xterm" );
|
|
|
|
argv[1] = arg;
|
|
|
|
argv[2] = NULL;
|
|
|
|
|
|
|
|
execvp( "xterm", argv );
|
|
|
|
}
|
|
|
|
|
|
|
|
void Trace::xtermKill( const char *mess ) {
|
|
|
|
|
|
|
|
|
|
|
|
if( -1 != ptSlave ) { // Close down the slave
|
|
|
|
|
|
|
|
close( ptSlave ); // Close the FD
|
|
|
|
ptSlave = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( -1 != ptMaster ) { // Close down the master
|
|
|
|
close( ptMaster );
|
|
|
|
ptMaster = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( xtermPid > 0 ) { // Kill the terminal
|
|
|
|
kill( xtermPid, SIGKILL );
|
|
|
|
waitpid( xtermPid, NULL, 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( NULL != mess ) { // If we really want a message
|
|
|
|
perror( mess );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void Trace::xtermSetup(void) {
|
|
|
|
ptMaster = open("/dev/ptmx", O_RDWR);
|
2020-04-10 22:43:22 +08:00
|
|
|
|
|
|
|
if (ptMaster != -1) {
|
|
|
|
grantpt( ptMaster );
|
2019-09-08 17:41:06 +08:00
|
|
|
|
2020-04-10 22:43:22 +08:00
|
|
|
unlockpt( ptMaster );
|
2019-09-08 17:41:06 +08:00
|
|
|
|
2020-04-10 22:43:22 +08:00
|
|
|
char *ptSlaveName = ptsname( ptMaster );
|
|
|
|
ptSlave = open( ptSlaveName, O_RDWR ); // In and out are the same
|
2019-09-08 17:41:06 +08:00
|
|
|
|
2020-04-10 22:43:22 +08:00
|
|
|
struct termios termInfo;
|
|
|
|
tcgetattr( ptSlave, &termInfo );
|
2019-09-08 17:41:06 +08:00
|
|
|
|
2020-04-10 22:43:22 +08:00
|
|
|
termInfo.c_lflag &= ~ECHO;
|
|
|
|
termInfo.c_lflag &= ~ICANON;
|
|
|
|
tcsetattr( ptSlave, TCSADRAIN, &termInfo );
|
2019-09-08 17:41:06 +08:00
|
|
|
|
2020-04-10 22:43:22 +08:00
|
|
|
xtermPid = fork();
|
2019-09-08 17:41:06 +08:00
|
|
|
|
2020-04-10 22:43:22 +08:00
|
|
|
if (xtermPid == 0) {
|
|
|
|
xtermLaunch( ptSlaveName );
|
|
|
|
}
|
2019-09-08 17:41:06 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-20 05:44:38 +08:00
|
|
|
SC_HAS_PROCESS(Trace);
|
|
|
|
Trace::Trace(sc_module_name name): sc_module(name)
|
2019-09-08 17:41:06 +08:00
|
|
|
,socket("socket") {
|
|
|
|
|
2018-09-20 05:44:38 +08:00
|
|
|
socket.register_b_transport(this, &Trace::b_transport);
|
2019-09-08 17:41:06 +08:00
|
|
|
|
|
|
|
xtermSetup();
|
|
|
|
}
|
2018-09-20 05:44:38 +08:00
|
|
|
|
2019-09-08 17:41:06 +08:00
|
|
|
Trace::~Trace() {
|
|
|
|
xtermKill( NULL );
|
|
|
|
}
|
2018-09-20 05:44:38 +08:00
|
|
|
void Trace::b_transport( tlm::tlm_generic_payload& trans, sc_time& delay ) {
|
|
|
|
//tlm::tlm_command cmd = trans.get_command();
|
|
|
|
//sc_dt::uint64 adr = trans.get_address() / 4;
|
|
|
|
unsigned char* ptr = trans.get_data_ptr();
|
|
|
|
//unsigned int len = trans.get_data_length();
|
|
|
|
//unsigned char* byt = trans.get_byte_enable_ptr();
|
|
|
|
//unsigned int wid = trans.get_streaming_width();
|
2019-09-08 17:41:06 +08:00
|
|
|
|
|
|
|
write(ptSlave, ptr, 1);
|
|
|
|
|
2018-09-20 05:44:38 +08:00
|
|
|
trans.set_response_status( tlm::TLM_OK_RESPONSE );
|
|
|
|
}
|