SD-211 - show all recordings and play them

This commit is contained in:
Bogdan Ungureanu 2022-03-30 10:34:57 +03:00
parent 8bb6f36e60
commit 3f96055a6e
12 changed files with 283 additions and 250 deletions

View File

@ -1,7 +1,6 @@
package com.safemobile.adapters; package com.safemobile.adapters;
import android.app.Activity; import android.app.Activity;
import android.content.Context;
import android.view.LayoutInflater; import android.view.LayoutInflater;
import android.view.View; import android.view.View;
import android.view.ViewGroup; import android.view.ViewGroup;
@ -11,7 +10,6 @@ import android.widget.LinearLayout;
import android.widget.TextView; import android.widget.TextView;
import com.safemobile.activities.AbstractRecordingsActivity; import com.safemobile.activities.AbstractRecordingsActivity;
import com.safemobile.lib.AppParams;
import com.safemobile.lib.R; import com.safemobile.lib.R;
import com.safemobile.lib.Recording; import com.safemobile.lib.Recording;
import com.safemobile.lib.SM; import com.safemobile.lib.SM;
@ -27,14 +25,12 @@ public class RecordingsGridViewAdapter extends BaseAdapter {
private final ArrayList<Boolean> recordingExists; private final ArrayList<Boolean> recordingExists;
private final ArrayList<Boolean> playingPositions; private final ArrayList<Boolean> playingPositions;
private final Activity activity; private final Activity activity;
private final Context context;
private final Hashtable<Integer, View> hash = new Hashtable<>(); private final Hashtable<Integer, View> hash = new Hashtable<>();
public RecordingsGridViewAdapter(Activity activity, Context context, ArrayList<Recording> listRecordings, ArrayList<Boolean> recordingExists) { public RecordingsGridViewAdapter(Activity activity, ArrayList<Recording> listRecordings, ArrayList<Boolean> recordingExists) {
super(); super();
this.activity = activity; this.activity = activity;
this.context = context;
this.listRecordings = listRecordings; this.listRecordings = listRecordings;
this.recordingExists = recordingExists; this.recordingExists = recordingExists;
@ -129,12 +125,12 @@ public class RecordingsGridViewAdapter extends BaseAdapter {
if (convertView == null) { if (convertView == null) {
view = new ViewHolder(); view = new ViewHolder();
convertView = layoutInflater.inflate(R.layout.row_recordings, null); convertView = layoutInflater.inflate(R.layout.row_recordings, null);
view.setLayoutRecording((LinearLayout) convertView.findViewById(R.id.layoutRecording)); view.setLayoutRecording(convertView.findViewById(R.id.layoutRecording));
view.setImageViewPlay((ImageView) convertView.findViewById(R.id.imageViewPlay)); view.setImageViewPlay(convertView.findViewById(R.id.imageViewPlay));
view.setTextViewSender((TextView) convertView.findViewById(R.id.textViewSender)); view.setTextViewSender(convertView.findViewById(R.id.textViewSender));
view.setTextViewDuration((TextView) convertView.findViewById(R.id.textViewDuration)); view.setTextViewDuration(convertView.findViewById(R.id.textViewDuration));
view.setTextViewDate((TextView) convertView.findViewById(R.id.textViewDate)); view.setTextViewDate(convertView.findViewById(R.id.textViewDate));
view.setImageViewRecycle((ImageView) convertView.findViewById(R.id.imageViewRecycle)); view.setImageViewRecycle(convertView.findViewById(R.id.imageViewRecycle));
view.getImageViewRecycle().setVisibility(View.GONE); view.getImageViewRecycle().setVisibility(View.GONE);
convertView.setTag(view); convertView.setTag(view);
} else { } else {
@ -155,25 +151,25 @@ public class RecordingsGridViewAdapter extends BaseAdapter {
} }
/* change icon according to call type [outgoing or incoming] */ /* change icon according to call type [outgoing or incoming] */
SM.Exception("REC TYPE : " + listRecordings.get(position).type); SM.Exception("REC TYPE : " + listRecordings.get(position).callType);
switch (listRecordings.get(position).type) { switch (listRecordings.get(position).callType) {
case AppParams.AllCall: case 6:
if (listRecordings.get(position).destinationRadioID == 0) view.getImageViewPlay().setImageResource(R.drawable.call_received_all);
view.getImageViewPlay().setImageResource(R.drawable.call_received_all);
else
view.getImageViewPlay().setImageResource(R.drawable.call_made_all);
break; break;
case AppParams.PrivateCall: case 2:
if (listRecordings.get(position).destinationRadioID == 0) view.getImageViewPlay().setImageResource(R.drawable.call_made_all);
view.getImageViewPlay().setImageResource(R.drawable.call_received);
else
view.getImageViewPlay().setImageResource(R.drawable.call_made);
break; break;
case AppParams.GroupCall: case 4:
if (listRecordings.get(position).destinationRadioID == 0) view.getImageViewPlay().setImageResource(R.drawable.call_received);
view.getImageViewPlay().setImageResource(R.drawable.call_received_group); break;
else case 0:
view.getImageViewPlay().setImageResource(R.drawable.call_made_group); view.getImageViewPlay().setImageResource(R.drawable.call_made);
break;
case 5:
view.getImageViewPlay().setImageResource(R.drawable.call_received_group);
break;
case 1:
view.getImageViewPlay().setImageResource(R.drawable.call_made_group);
break; break;
default: default:
view.getImageViewPlay().setImageResource(R.drawable.alert); view.getImageViewPlay().setImageResource(R.drawable.alert);
@ -193,14 +189,8 @@ public class RecordingsGridViewAdapter extends BaseAdapter {
((AbstractRecordingsActivity) activity).deleteSelected(position); ((AbstractRecordingsActivity) activity).deleteSelected(position);
}); });
// set recording image view.getTextViewSender().setText(String.format("%s -> %s", getItem(position).userWhoCalled, getItem(position).userWhoWasCalled));
if (getItem(position).NameForDisplay.equals(AppParams.USERNAME)) view.textViewDuration.setText(String.format("[%d sec]", getItem(position).duration));
view.getImageViewPlay().setImageDrawable(context.getResources().getDrawable(R.drawable.call_made_group));
else
view.getImageViewPlay().setImageDrawable(context.getResources().getDrawable(R.drawable.call_received_group));
view.getTextViewSender().setText(getItem(position).NameForDisplay);
view.textViewDuration.setText("[" + getItem(position).duration + " sec]");
/* Add call Date */ /* Add call Date */
Date date = new Date(); Date date = new Date();

View File

@ -285,7 +285,7 @@ public class DatabaseCommunication {
while (cursor.isAfterLast() == false) while (cursor.isAfterLast() == false)
{ {
Recording rec = new Recording(); Recording rec = new Recording();
rec.ID =cursor.getInt(0); rec.id =cursor.getInt(0);
rec.sourceRadioID = cursor.getInt(1); rec.sourceRadioID = cursor.getInt(1);
rec.destinationRadioID = cursor.getInt(2); rec.destinationRadioID = cursor.getInt(2);
rec.date = cursor.getInt(3); rec.date = cursor.getInt(3);
@ -315,7 +315,7 @@ public class DatabaseCommunication {
if(cursor.getCount() > 0) if(cursor.getCount() > 0)
{ {
Recording rec = new Recording(); Recording rec = new Recording();
rec.ID =cursor.getInt(0); rec.id =cursor.getInt(0);
rec.sourceRadioID = cursor.getInt(1); rec.sourceRadioID = cursor.getInt(1);
rec.destinationRadioID = cursor.getInt(2); rec.destinationRadioID = cursor.getInt(2);
rec.date = cursor.getInt(3); rec.date = cursor.getInt(3);
@ -364,7 +364,7 @@ public class DatabaseCommunication {
values.put("duration", rec.duration); values.put("duration", rec.duration);
values.put("filename", rec.filename); values.put("filename", rec.filename);
values.put("type", rec.type); values.put("type", rec.type);
id = database.delete("Recordings", "_id=" + rec.ID, null); id = database.delete("Recordings", "_id=" + rec.id, null);
SM.Debug("DBQuery","Database Remove result: " + id); SM.Debug("DBQuery","Database Remove result: " + id);
} }
//INSERT into SMS (timeGMT, imei_sour, imei_dest, mess, status) VALUES( 1324016412, 0, 101, 'two', 1) //INSERT into SMS (timeGMT, imei_sour, imei_dest, mess, status) VALUES( 1324016412, 0, 101, 'two', 1)

View File

@ -4,36 +4,43 @@ import java.util.ArrayList;
public class RecordMSG extends TCPmsg { public class RecordMSG extends TCPmsg {
public ArrayList<Recording> recordList; private ArrayList<Recording> recordList;
public static int count=0;
public RecordMSG(TCPmsg tcp) public RecordMSG(TCPmsg tcp) {
{ super(tcp);
super(tcp); setRecordList(new ArrayList<>());
recordList = new ArrayList<Recording>();
String date4parsing = super.data; String date4parsing = super.data;
//SM.Debug("SMS date4parsing:"+date4parsing);
String[] tempArr = date4parsing.split(";"); String[] tempArr = date4parsing.split(";");
//SM.Debug("SMS tempArr.length:" +tempArr.length); for (String s : tempArr) {
for(int i =0; i<tempArr.length;i++) String[] tempRec = s.split("&", -1);
{ if (tempRec.length < 11)
String[] tempRec = tempArr[i].split("&");
if(tempRec.length<7)
continue; continue;
Recording RecValue = new Recording(); Recording recValue = new Recording();
RecValue.ID = Long.parseLong(tempRec[0]); recValue.id = Long.parseLong(tempRec[0]);
RecValue.startGMT = Integer.parseInt(tempRec[1]); recValue.startGMT = Integer.parseInt(tempRec[1]);
RecValue.endGMT = Integer.parseInt(tempRec[2]); recValue.endGMT = Integer.parseInt(tempRec[2]);
RecValue.gwID = Integer.parseInt(tempRec[3]); recValue.gwID = Integer.parseInt(tempRec[3]);
RecValue.radioGWID = Integer.parseInt(tempRec[4]); recValue.radioGWID = Integer.parseInt(tempRec[4]);
RecValue.subID = Integer.parseInt(tempRec[5]); recValue.subID = (tempRec[5] == null || tempRec[5].isEmpty()) ? 0 : Integer.parseInt(tempRec[5]);
RecValue.typeID = Integer.parseInt(tempRec[6]); recValue.typeID = Integer.parseInt(tempRec[6]);
recValue.callType = Integer.parseInt(tempRec[7]);
recordList.add(RecValue); recValue.groupCpsId = (tempRec[8] == null || tempRec[8].isEmpty()) ? 0 : Integer.parseInt(tempRec[8]);
recValue.dispatcherId = (tempRec[9] == null || tempRec[9].isEmpty()) ? 0 : Integer.parseInt(tempRec[9]);
recValue.groupName = tempRec[10];
getRecordList().add(recValue);
} }
count +=this.recordList.size(); SM.Debug("alarmList size:" + this.getRecordList().size() + " total:" + this.getRecordList().size());
SM.Debug("alarmList size:" +this.recordList.size() + " total:" +count); }
public ArrayList<Recording> getRecordList() {
return recordList;
}
public void setRecordList(ArrayList<Recording> recordList) {
this.recordList = recordList;
} }
} }

View File

@ -1,15 +1,20 @@
package com.safemobile.lib; package com.safemobile.lib;
public class Recording { public class Recording {
public long ID; public long id;
public int startGMT; public int startGMT;
public int endGMT; public int endGMT;
public int gwID; public int gwID;
public int radioGWID; public int radioGWID;
public int callType;
public int groupCpsId;
public int dispatcherId;
public int subID; public int subID;
public int typeID; public int typeID;
public String NameForDisplay=""; public String userWhoCalled="";
public String userWhoWasCalled = "";
public String groupName = "";
/** RadioPad */ /** RadioPad */
public long date; public long date;
public int duration; public int duration;
@ -18,13 +23,8 @@ public class Recording {
public long sourceRadioID; public long sourceRadioID;
public int type; public int type;
public Recording()
{
}
public String toString() public String toString()
{ {
return "ID: " + ID + " | start: " + startGMT + " | end: " + endGMT + " | gwID: " + gwID + " | radioGWID: " + radioGWID + " | subID: " + subID + " | typeID: " + typeID; return "id: " + id + " | start: " + startGMT + " | end: " + endGMT + " | gwID: " + gwID + " | radioGWID: " + radioGWID + " | subID: " + subID + " | typeID: " + typeID;
} }
} }

View File

@ -293,7 +293,7 @@ public class TCPhandler implements Runnable {
/** /**
* Send a message through the TCP Socket * Send a message through the TCP Socket
* *
* @param seqID The messages's sequence ID (a number of order) * @param seqID The messages's sequence id (a number of order)
* @param msg The messages which will be sent * @param msg The messages which will be sent
* @return True if the message was sent * @return True if the message was sent
*/ */
@ -310,7 +310,7 @@ public class TCPhandler implements Runnable {
cmdok = "#" + Integer.toString(tmp) + cmdok; cmdok = "#" + Integer.toString(tmp) + cmdok;
byte[] mess = encryptTEA(cmdok); byte[] mess = encryptTEA(cmdok);
Thread gfgThread = new Thread(() -> { Thread tcpThread = new Thread(() -> {
try { try {
output.write(mess); output.write(mess);
output.flush(); output.flush();
@ -319,15 +319,14 @@ public class TCPhandler implements Runnable {
} }
}); });
gfgThread.start(); tcpThread.start();
SM.Debug(" ", new String(mess)); SM.Debug(" ", new String(mess));
return true; return true;
//} catch (IOException e) {
// SM.Exception("TCPClient[Send]", e.toString());
} catch (InterruptedException e) { } catch (InterruptedException e) {
SM.Exception("TCPClient[Send]", e.toString()); SM.Exception("TCPClient[Send]", e.toString());
Thread.currentThread().interrupt();
} catch (NoSuchElementException e) { } catch (NoSuchElementException e) {
SM.Exception("TCPClient[Send]", e.toString()); SM.Exception("TCPClient[Send]", e.toString());
} }
@ -335,7 +334,7 @@ public class TCPhandler implements Runnable {
return false; return false;
} }
} catch (Exception e) { } catch (Exception e) {
SM.Debug("TCPhandler Write Procedure:" + e.toString()); SM.Debug("TCPhandler Write Procedure:" + e);
} }
return false; return false;
} }

View File

@ -45,7 +45,6 @@
android:name="com.safemobile.safedispatch.SDMobileActivity" android:name="com.safemobile.safedispatch.SDMobileActivity"
android:configChanges="orientation" android:configChanges="orientation"
android:exported="true" android:exported="true"
android:label="@string/app_name_demo"
android:screenOrientation="landscape"> android:screenOrientation="landscape">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />

View File

@ -22,7 +22,7 @@ public class AudioHandle implements Runnable{
private DataOutputStream outData =null; private DataOutputStream outData =null;
private Thread t_micListner; private Thread t_micListner;
private UDPclient udp; private UDPclient udp;
private TCPaudioClient tcp; private TcpAudioClient tcp;
private int audioport = 50001; private int audioport = 50001;
public int typeUDP; public int typeUDP;
@ -56,7 +56,7 @@ public class AudioHandle implements Runnable{
else else
{ {
try { try {
tcp = new TCPaudioClient(IP,audioport); tcp = new TcpAudioClient(IP,audioport);
bufferSize = AudioTrack.getMinBufferSize(SAMPLE_RATE, AudioFormat.CHANNEL_OUT_MONO, AudioFormat.ENCODING_PCM_16BIT); bufferSize = AudioTrack.getMinBufferSize(SAMPLE_RATE, AudioFormat.CHANNEL_OUT_MONO, AudioFormat.ENCODING_PCM_16BIT);
@ -155,7 +155,7 @@ public class AudioHandle implements Runnable{
/* /*
tempBuffer = new byte[16384];//128];//invers3.bufferSize]; tempBuffer = new byte[16384];//128];//invers3.bufferSize];
bRead = recDev.read(tempBuffer, 0,16384);// 128);//invers3.bufferSize);*/ bRead = recDev.read(tempBuffer, 0,16384);// 128);//invers3.bufferSize);*/
tcp.Send(tempBuffer,bRead); tcp.send(tempBuffer,bRead);
SM.Debug("TCP sending b:"+bRead); SM.Debug("TCP sending b:"+bRead);
} }
} }

View File

@ -13,7 +13,7 @@ public class RecordingHandle {
public RecordingHandle(String ip) { public RecordingHandle(String ip) {
try { try {
final int RECORDING_PORT = 50003; final int RECORDING_PORT = 50003;
TCPaudioClient tcp = new TCPaudioClient(ip, RECORDING_PORT); TcpAudioClient tcp = new TcpAudioClient(ip, RECORDING_PORT);
final int sampleRate = 8000; final int sampleRate = 8000;
int bufferSize = AudioTrack.getMinBufferSize(sampleRate, AudioFormat.CHANNEL_OUT_MONO, AudioFormat.ENCODING_PCM_16BIT); int bufferSize = AudioTrack.getMinBufferSize(sampleRate, AudioFormat.CHANNEL_OUT_MONO, AudioFormat.ENCODING_PCM_16BIT);
//init play device //init play device
@ -36,7 +36,7 @@ public class RecordingHandle {
playDev.write(data, 0, data.length); playDev.write(data, 0, data.length);
playDev.play(); playDev.play();
} else { } else {
SM.Debug("Cannot play sound playDev NOT init corectly"); SM.Debug("Cannot play sound playDev NOT init correctly");
} }
} }
} }

View File

@ -8,140 +8,108 @@ import java.io.OutputStream;
import java.net.Socket; import java.net.Socket;
import java.net.UnknownHostException; import java.net.UnknownHostException;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Iterator;
import java.util.List; import java.util.List;
public class TCPaudioClient implements Runnable{ public class TcpAudioClient implements Runnable {
private boolean alive = true; private boolean alive = true;
public String serverHostname = new String ("10.120.1.114");// private String serverHostname;
private int port = 50001; private final int port;
private Thread listenThread; private Thread listenThread;
private Socket soc =null; private Socket soc = null;
private InputStream recv; private InputStream recv;
private OutputStream writer; private OutputStream writer;
private volatile int n=0; private Boolean connOK = false;
public Boolean connOK=false;
byte[] buffer = new byte[16384]; byte[] buffer = new byte[16384];
private List<ITCPaudioLis> _listeners = new ArrayList<ITCPaudioLis>(); private final List<ITCPaudioLis> listeners = new ArrayList<>();
public TCPaudioClient(String hostName, int _port) public TcpAudioClient(String hostName, int port) {
{ setServerHostname(hostName);
serverHostname=hostName; this.port = port;
this.port = _port; SM.Debug("---TcpHandler constructor--- port:" + port);
SM.Debug("---TCPhandler construcort--- port:"+_port); listenThread = new Thread(this, "TcpListen");
listenThread = new Thread(this, "TCPlisten");
listenThread.start(); // (2) Start the thread. listenThread.start(); // (2) Start the thread.
} }
@Override @Override
public void run() public void run() {
{ try {
try soc = new Socket(getServerHostname(), port);
{ SM.Debug("Socket timeout:" + soc.getSoTimeout());
soc = new Socket(serverHostname, port); recv = soc.getInputStream();
SM.Debug("Socket timeout:" + soc.getSoTimeout() ); writer = soc.getOutputStream();
//soc.setSoTimeout(5000); if (soc != null)
recv= soc.getInputStream(); setConnOK(true);
writer =soc.getOutputStream() ;
if(soc !=null) } catch (UnknownHostException e) {
connOK = true; SM.Debug("UnknownHostException", "break:" + e);
} catch (IOException e) {
} SM.Debug("IOException", "break:" + e);
catch (UnknownHostException e)
{
SM.Debug("UnknownHostException", "break:"+e.toString());
}
catch (IOException e)
{
SM.Debug("IOException", "break:"+e.toString());
} }
while(alive) while (alive) {
{
try { try {
Thread.sleep(3000); Thread.sleep(3000);
} catch (InterruptedException e) { } catch (InterruptedException e) {
// TODO Auto-generated catch block
SM.Debug(e.toString()); SM.Debug(e.toString());
Thread.currentThread().interrupt();
} }
while(connOK) while (Boolean.TRUE.equals(getConnOK())) {
{ try {
try buffer = new byte[16384];
{ int n = recv.read(buffer);
buffer = new byte[16384]; if (n == -1)
n = recv.read(buffer);
if(n==-1)
break; break;
_fireDataArrived(buffer,n); fireDataArrived(buffer, n);
} catch (Exception ex) {
SM.Debug("break:" + ex);
setConnOK(false);
} }
catch(Exception ex) }
{
SM.Debug("break:"+ex.toString());
connOK = false;
}
}//while(connOK)
try { try {
Thread.sleep(3000); Thread.sleep(3000);
} catch (InterruptedException e) { } catch (InterruptedException e) {
// TODO Auto-generated catch block
SM.Debug(e.toString()); SM.Debug(e.toString());
Thread.currentThread().interrupt();
} }
if(alive)RestartTCP();
}//while(alive) if (alive) restartTCP();
}
SM.Debug("=================================="); SM.Debug("==================================");
SM.Debug("TCP listenThread stoped!! alive = false"); SM.Debug("TCP listenThread stopped!! alive = false");
SM.Debug("=================================="); SM.Debug("==================================");
} }
public boolean Send(byte[] data,int len) public boolean send(byte[] data, int len) {
{
try {
try
{ if (writer != null) {
writer.write(data, 0, len);
if(writer != null)
{
writer.write(data,0,len);
return true; return true;
} } else {
else
{
return false; return false;
} }
} } catch (Exception e) {
catch (Exception e)
{
// TODO Auto-generated catch block
SM.Debug(e.toString()); SM.Debug(e.toString());
} }
return false; return false;
} }
private void RestartTCP() private void restartTCP() {
{ try {
try SM.Debug("Restarting TCP...ip:" + getServerHostname());
{ soc = new Socket(getServerHostname(), port);
SM.Debug("Restarting TCP...ip:"+serverHostname); recv = soc.getInputStream();
soc = new Socket(serverHostname, port); writer = soc.getOutputStream();
recv= soc.getInputStream(); setConnOK(true);
writer =soc.getOutputStream();
if(soc !=null) } catch (IOException e) {
connOK = true; SM.Debug("break:" + e);
}
catch (UnknownHostException e)
{
SM.Debug("break:"+e.toString());
}
catch (IOException e)
{
SM.Debug("break:"+e.toString());
} }
} }
@ -152,44 +120,55 @@ private boolean alive = true;
public void setAlive(boolean alive) { public void setAlive(boolean alive) {
this.alive = alive; this.alive = alive;
} }
public void Stop() public void stop() {
{
this.alive = false; this.alive = false;
if(soc !=null) if (soc != null) {
{
try { try {
soc.close(); soc.close();
soc = null; soc = null;
} catch (IOException e) { } catch (IOException e) {
// TODO Auto-generated catch block SM.Debug("break:" + e);
SM.Debug("break:"+e.toString());
} }
connOK = false; setConnOK(false);
} }
// stop thread // stop thread
if(listenThread != null) if (listenThread != null) {
{ Thread moribund = listenThread;
Thread moribund = listenThread; listenThread = null;
listenThread = null; moribund.interrupt();
moribund.interrupt(); }
}
} }
public synchronized void addTCPListener( ITCPaudioLis l ) { public synchronized void addTCPListener(ITCPaudioLis l) {
_listeners.add( (ITCPaudioLis) l ); listeners.add(l);
}
public synchronized void removeTCPListener( ITCPaudioLis l ) {
_listeners.remove( l );
} }
private synchronized void _fireDataArrived(byte[] data, int len) { public synchronized void removeTCPListener(ITCPaudioLis l) {
TCPaudioEvent event = new TCPaudioEvent( this, data, len ); listeners.remove(l);
Iterator<ITCPaudioLis> listeners = _listeners.iterator();
while( listeners.hasNext() ) {
( (ITCPaudioLis) listeners.next() ).dataRecv(event);
}
} }
}
private synchronized void fireDataArrived(byte[] data, int len) {
TCPaudioEvent event = new TCPaudioEvent(this, data, len);
for (ITCPaudioLis listener : listeners) {
listener.dataRecv(event);
}
}
public String getServerHostname() {
return serverHostname;
}
public void setServerHostname(String serverHostname) {
this.serverHostname = serverHostname;
}
public Boolean getConnOK() {
return connOK;
}
public void setConnOK(Boolean connOK) {
this.connOK = connOK;
}
}

View File

@ -80,12 +80,12 @@ public class RecordingsActivity extends Activity {
activity = this; activity = this;
// change tab header fontFace // change tab header fontFace
TextView textView1 = (TextView) findViewById(R.id.textViewTitle); TextView textView1 = findViewById(R.id.textViewTitle);
textView1.setTypeface(Typeface.createFromAsset(getAssets(), "Sketch_Block.ttf")); textView1.setTypeface(Typeface.createFromAsset(getAssets(), "Sketch_Block.ttf"));
textView1.setTextSize(24); textView1.setTextSize(24);
gridView = (GridView) findViewById(R.id.gridViewRecordings); gridView = findViewById(R.id.gridViewRecordings);
adapter = new RecordingsGridViewAdapter(activity, context, getAllRecordings(), playingPositions); adapter = new RecordingsGridViewAdapter(activity, getAllRecordings(), playingPositions);
gridView.setAdapter(adapter); gridView.setAdapter(adapter);
gridView.setOnItemClickListener(onItemClickListener); gridView.setOnItemClickListener(onItemClickListener);
@ -93,10 +93,10 @@ public class RecordingsActivity extends Activity {
if (recHandle == null && !AppParams.DEMO) if (recHandle == null && !AppParams.DEMO)
recHandle = new RecordingHandle(AppParams.IP); recHandle = new RecordingHandle(AppParams.IP);
textViewCount = (TextView) findViewById(R.id.textViewCount); textViewCount = findViewById(R.id.textViewCount);
updateNumberOfRecordings(); updateNumberOfRecordings();
textViewGateway = (TextView) findViewById(R.id.textViewGateway); textViewGateway = findViewById(R.id.textViewGateway);
textViewGateway.setTypeface(Typeface.createFromAsset(getAssets(), "Sketch_Block.ttf")); textViewGateway.setTypeface(Typeface.createFromAsset(getAssets(), "Sketch_Block.ttf"));
textViewGateway.setTextSize(24); textViewGateway.setTextSize(24);
textViewGateway.setOnClickListener(v -> { textViewGateway.setOnClickListener(v -> {
@ -185,7 +185,7 @@ public class RecordingsActivity extends Activity {
// if no recording is playing and not DEMO // if no recording is playing and not DEMO
if (getPlayingPosition() < 0 && !AppParams.DEMO) { if (getPlayingPosition() < 0 && !AppParams.DEMO) {
// send recording request to App Server // send recording request to App Server
sendPlayRequest(getAllRecordings().get(position).ID); sendPlayRequest(getAllRecordings().get(position).id);
// flag that sound is needed // flag that sound is needed
recHandle.startSound(); recHandle.startSound();
recHandle.setSoundNeeded(true); recHandle.setSoundNeeded(true);
@ -272,10 +272,7 @@ public class RecordingsActivity extends Activity {
public void updateRecordings(ArrayList<Recording> list) { public void updateRecordings(ArrayList<Recording> list) {
setAllRecordings(new ArrayList<>()); setAllRecordings(new ArrayList<>());
for (Recording rec : list) { for (Recording rec : list) {
if (rec.typeID == 1 && rec.subID == AppParams.USERID) getAllRecordings().add(rec);
getAllRecordings().add(rec);
else if (rec.typeID != 1)
getAllRecordings().add(rec);
} }
myHandler.post(updateResultsRUN); myHandler.post(updateResultsRUN);
} }
@ -294,7 +291,7 @@ public class RecordingsActivity extends Activity {
for (int i = 0; i < getAllRecordings().size(); i++) for (int i = 0; i < getAllRecordings().size(); i++)
playingPositions.add(true); playingPositions.add(true);
// set adapter - where playingPositions stores exists values // set adapter - where playingPositions stores exists values
adapter = new RecordingsGridViewAdapter(activity, context, getAllRecordings(), playingPositions); adapter = new RecordingsGridViewAdapter(activity, getAllRecordings(), playingPositions);
// playing positions need to be false because no recording is played // playing positions need to be false because no recording is played
playingPositions.clear(); playingPositions.clear();

View File

@ -47,6 +47,7 @@ import com.safemobile.lib.SMSmsg;
import com.safemobile.lib.SerializedObject; import com.safemobile.lib.SerializedObject;
import com.safemobile.lib.SuperVehicle; import com.safemobile.lib.SuperVehicle;
import com.safemobile.lib.TCPmsg; import com.safemobile.lib.TCPmsg;
import com.safemobile.lib.User;
import com.safemobile.lib.VehMSG; import com.safemobile.lib.VehMSG;
import com.safemobile.lib.Vehicle; import com.safemobile.lib.Vehicle;
import com.safemobile.lib.radio.RadioGW; import com.safemobile.lib.radio.RadioGW;
@ -402,7 +403,7 @@ public class TabLayoutActivity extends AbstractSDParentActivity {
} }
} }
SM.Debug("Logged user:" + AppParams.USERNAME + " | ID: " + AppParams.USERID); SM.Debug("Logged user:" + AppParams.USERNAME + " | id: " + AppParams.USERID);
// do not dim the display // do not dim the display
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
@ -633,7 +634,7 @@ public class TabLayoutActivity extends AbstractSDParentActivity {
if (AppParams.DEMO && getRecordingsActivity() != null && getRecordingsActivity().getAllRecordings() != null && getRecordingsActivity().getAllRecordings().isEmpty()) { if (AppParams.DEMO && getRecordingsActivity() != null && getRecordingsActivity().getAllRecordings() != null && getRecordingsActivity().getAllRecordings().isEmpty()) {
ArrayList<Recording> listRecordings = new ArrayList<>(); ArrayList<Recording> listRecordings = new ArrayList<>();
Recording rec = new Recording(); Recording rec = new Recording();
rec.NameForDisplay = "Rob"; rec.userWhoWasCalled = "Rob";
rec.subID = 101; rec.subID = 101;
rec.endGMT = (int) Calendar.getInstance().getTime().getTime(); rec.endGMT = (int) Calendar.getInstance().getTime().getTime();
rec.startGMT = rec.endGMT - 2; rec.startGMT = rec.endGMT - 2;
@ -641,7 +642,7 @@ public class TabLayoutActivity extends AbstractSDParentActivity {
listRecordings.add(rec); listRecordings.add(rec);
rec = new Recording(); rec = new Recording();
rec.NameForDisplay = "Call1 [Rob]"; rec.userWhoWasCalled = "Call1 [Rob]";
rec.subID = 102; rec.subID = 102;
rec.endGMT = (int) Calendar.getInstance().getTime().getTime(); rec.endGMT = (int) Calendar.getInstance().getTime().getTime();
rec.startGMT = rec.endGMT - 2; rec.startGMT = rec.endGMT - 2;
@ -649,7 +650,7 @@ public class TabLayoutActivity extends AbstractSDParentActivity {
listRecordings.add(rec); listRecordings.add(rec);
rec = new Recording(); rec = new Recording();
rec.NameForDisplay = "Call2 [Rob]"; rec.userWhoWasCalled = "Call2 [Rob]";
rec.subID = 101; rec.subID = 101;
rec.endGMT = (int) Calendar.getInstance().getTime().getTime(); rec.endGMT = (int) Calendar.getInstance().getTime().getTime();
rec.startGMT = rec.endGMT - 3; rec.startGMT = rec.endGMT - 3;
@ -1004,8 +1005,6 @@ public class TabLayoutActivity extends AbstractSDParentActivity {
moribund.interrupt(); moribund.interrupt();
} }
this.unregisterReceiver(mReceiver);
// unbound from tcp service // unbound from tcp service
if (isBound) { if (isBound) {
getApplicationContext().unbindService(serviceConnection); getApplicationContext().unbindService(serviceConnection);
@ -1359,7 +1358,7 @@ public class TabLayoutActivity extends AbstractSDParentActivity {
SM.Debug("Got PlayRec :" + msg.allData); SM.Debug("Got PlayRec :" + msg.allData);
if (NO_SOUND) { if (NO_SOUND) {
SM.Debug("Recording Play file ID:" + msg.data); SM.Debug("Recording Play file id:" + msg.data);
//list for SMS //list for SMS
if (AppParams.crtTab == AppParams.Tabs.recordings) { if (AppParams.crtTab == AppParams.Tabs.recordings) {
@ -1610,13 +1609,13 @@ public class TabLayoutActivity extends AbstractSDParentActivity {
setAllRadios(radioMSG.RadioGWList); setAllRadios(radioMSG.RadioGWList);
if (getCrtRadio() == null) { if (getCrtRadio() == null) {
setCrtRadio(getAllRadios().get(0)); setCrtRadio(getAllRadios().get(0));
SM.Debug("radioMSG set 0 crtRadio GW_ID:" + getCrtRadio().GW_ID + " ID:" + getCrtRadio().ID + ")"); SM.Debug("radioMSG set 0 crtRadio GW_ID:" + getCrtRadio().GW_ID + " id:" + getCrtRadio().ID + ")");
notifyBroadcast(OperationCodes.RADIOID_CHANGED + ""); notifyBroadcast(OperationCodes.RADIOID_CHANGED + "");
} }
} }
// save crt Radio ID and GW // save crt Radio id and GW
if (radioMSG.zac != null) { if (radioMSG.zac != null) {
for (RadioGW radio : getAllRadios()) { for (RadioGW radio : getAllRadios()) {
if (radio.GW_ID == radioMSG.zac.gwID && radio.ID == radioMSG.zac.rgwID) if (radio.GW_ID == radioMSG.zac.gwID && radio.ID == radioMSG.zac.rgwID)
@ -1717,19 +1716,76 @@ public class TabLayoutActivity extends AbstractSDParentActivity {
//list for SMS //list for SMS
if (AppParams.crtTab == AppParams.Tabs.recordings) { if (AppParams.crtTab == AppParams.Tabs.recordings) {
for (Recording rec : recordMSG.recordList) { for (Recording rec : recordMSG.getRecordList()) {
// set the name to be displayed SuperVehicle superVehicle = getSuperVehHash().get((long) rec.subID);
if (rec.typeID == 1) // set the name to be displayed
rec.NameForDisplay = AppParams.USERNAME; switch (rec.callType) {
else { case 0:
SuperVehicle superVehicle = getSuperVehHash().get((long) rec.subID); for (User u : AppParams.allUsers) {
if (superVehicle != null) if (u.id == rec.dispatcherId)
rec.NameForDisplay = superVehicle.name; rec.userWhoCalled = u.login;
}
if (rec.userWhoCalled == null || rec.userWhoCalled.isEmpty())
rec.userWhoCalled = String.valueOf(rec.dispatcherId);
if (superVehicle != null)
rec.userWhoWasCalled = superVehicle.name;
else
rec.userWhoWasCalled = String.valueOf(rec.subID);
break;
case 4:
rec.userWhoWasCalled = AppParams.USERNAME;
if (superVehicle != null)
rec.userWhoCalled = superVehicle.name;
else
rec.userWhoCalled = String.valueOf(rec.subID);
break;
case 1:
for (User u : AppParams.allUsers) {
if (u.id == rec.dispatcherId)
rec.userWhoCalled = u.login;
}
if (rec.userWhoCalled == null || rec.userWhoCalled.isEmpty())
rec.userWhoCalled = String.valueOf(rec.dispatcherId);
if (rec.groupName == null || rec.groupName.isEmpty())
rec.userWhoWasCalled = String.valueOf(rec.groupCpsId);
else
rec.userWhoWasCalled = rec.groupName;
break;
case 5:
if (superVehicle != null)
rec.userWhoCalled = superVehicle.name;
else
rec.userWhoCalled = String.valueOf(rec.subID);
if (rec.groupName == null || rec.groupName.isEmpty())
rec.userWhoWasCalled = String.valueOf(rec.groupCpsId);
else
rec.userWhoWasCalled = rec.groupName;
break;
case 2:
for (User u : AppParams.allUsers) {
if (u.id == rec.dispatcherId)
rec.userWhoCalled = u.login;
}
if (rec.userWhoCalled == null || rec.userWhoCalled.isEmpty())
rec.userWhoCalled = String.valueOf(rec.dispatcherId);
rec.userWhoWasCalled = "All Call";
break;
case 6:
rec.userWhoWasCalled = "All Call";
if (superVehicle != null)
rec.userWhoCalled = superVehicle.name;
else
rec.userWhoCalled = String.valueOf(rec.subID);
break;
} }
} }
// save recordings to AppParams // save recordings to AppParams
AppParams.recordings = recordMSG.recordList; AppParams.recordings = recordMSG.getRecordList();
// notify recordings were received // notify recordings were received
notifyBroadcast(OperationCodes.RECORDINGS_LIST_REP + ""); notifyBroadcast(OperationCodes.RECORDINGS_LIST_REP + "");
@ -2322,4 +2378,10 @@ public class TabLayoutActivity extends AbstractSDParentActivity {
this.startActivity(intent); this.startActivity(intent);
} }
} }
@Override
protected void onDestroy() {
super.onDestroy();
this.unregisterReceiver(mReceiver);
}
} }

View File

@ -11,7 +11,7 @@
android:paddingTop="2dp" android:paddingTop="2dp"
android:text="TITLE" android:text="TITLE"
android:textAppearance="?android:attr/textAppearanceLarge" android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#FFFFFF" android:textColor="@color/black"
/> />
<LinearLayout <LinearLayout
android:id="@+id/layout_horizontal" android:id="@+id/layout_horizontal"
@ -40,7 +40,7 @@
android:paddingTop="8dp" android:paddingTop="8dp"
android:text="Row1" android:text="Row1"
android:textAppearance="?android:attr/textAppearanceLarge" android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#FFFFFF" android:textColor="@color/black"
/> />
<TextView android:id="@+id/text2" <TextView android:id="@+id/text2"
android:layout_width="wrap_content" android:layout_width="wrap_content"
@ -48,7 +48,7 @@
android:paddingTop="8dp" android:paddingTop="8dp"
android:textAppearance="?android:attr/textAppearanceMedium" android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Row2" android:text="Row2"
android:textColor="#FFFFFF" android:textColor="@color/black"
/> />
</LinearLayout> </LinearLayout>
</LinearLayout> </LinearLayout>