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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
|
package com.crcmike;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.File;
import android.app.Activity;
import android.os.Bundle;
import android.os.Environment;
import android.widget.Button;
import android.widget.EditText;
import android.widget.RadioButton;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Toast;
import android.os.Handler;
import android.os.Looper;
import android.os.Message;
public class crcMike extends Activity implements OnClickListener {
private static final char[] HEX_CHARS = {'0', '1', '2', '3',
'4', '5', '6', '7',
'8', '9', 'a', 'b',
'c', 'd', 'e', 'f',};
private static final String TAG = "crcMike";
private String mResults = null;
Button buttonCalc;
RadioButton radioC, radioF;
EditText editText;
final Handler mHandler = new Handler(){
public void handleMessage(Message msg) {
Log.i(TAG, "Got an incoming message from the child thread - " + (String)msg.obj);
Toast.makeText(getApplicationContext(), (String)msg.obj + "\n", Toast.LENGTH_LONG).show();
}
};
final Runnable mUpdateResults = new Runnable() {
public void run() {
Message msg = mHandler.obtainMessage();
msg.obj = mHandler.getLooper().getThread().getName() + " says Hello";
mHandler.sendMessage(msg);
Log.i(TAG, "Send a message to the child thread - " + (String)msg.obj);
updateResultsInUi();
}
};
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Log.d(TAG, "starting...");
editText = (EditText)findViewById(R.id.editText);
radioC = (RadioButton)findViewById(R.id.radioC);
radioF = (RadioButton)findViewById(R.id.radioF);
buttonCalc = (Button)findViewById(R.id.buttonCalc);
buttonCalc.setOnClickListener(this);
editText.setText("32");
}
public void onClick(View v){
switch(v.getId()){
case R.id.buttonCalc:
startLongRunningOperation();
float inputValue = Float.parseFloat(editText.getText().toString());
if (radioC.isChecked()) {
editText.setText(String
.valueOf(fToC(inputValue)));
} else {
editText.setText(String
.valueOf(cToF(inputValue)));
}
if (radioF.isChecked()) {
radioF.setChecked(false);
radioC.setChecked(true);
} else {
radioF.setChecked(true);
radioC.setChecked(false);
}
default:
break;
}
}
protected void startLongRunningOperation() {
Thread t = new Thread() {
public void run() {
mResults = crc_calc();
mHandler.post(mUpdateResults);
}
};
t.start();
Log.i(TAG, "Main handler is bound to - " + mHandler.getLooper().getThread().getName());
}
private void updateResultsInUi() {
Toast.makeText(getApplicationContext(), mResults, Toast.LENGTH_LONG).show();
Log.d("huh", "mResults: " + mResults);
Log.i("huh", "updateUI - " + (String)mHandler.getLooper().getThread().getName());
}
public String crc_calc() {
final String INNER_TAG = "checksum";
byte[] buf = new byte[65536];
int num_read;
String result = null;
Message toMain = mHandler.obtainMessage();
String FILENAME = "test.log";
File path = Environment.getExternalStoragePublicDirectory(
Environment.DIRECTORY_DOWNLOADS);
File file = new File(path,FILENAME);
try{
java.security.MessageDigest digest = java.security.MessageDigest.getInstance("MD5");
InputStream in = new FileInputStream(file);
while ((num_read = in.read(buf)) != -1) {
digest.update(buf, 0, num_read);
}
result = asHex(digest.digest());
toMain.obj = mHandler.getLooper().getThread().getName() + ": " + result;
in.close();
}catch (IOException e){
toMain.obj = mHandler.getLooper().getThread().getName() + "Error reading from " + file.toString();
Log.d(INNER_TAG, "IOException");
}catch (Exception e){
toMain.obj = mHandler.getLooper().getThread().getName() + "Exception";
Log.d(INNER_TAG, "Exception");
}
mHandler.sendMessage(toMain);
Log.i(INNER_TAG, "Send a message to the main thread - " + (String)toMain.obj);
return(result);
}
private float fToC(float fahrenheit) {
return ((fahrenheit - 32) * 5 / 9);
}
private float cToF(float celsius) {
return ((celsius * 9) / 5) + 32;
}
public static String asHex (byte hash[]) {
char buf[] = new char[hash.length * 2];
for (int i = 0, x = 0; i < hash.length; i++) {
buf[x++] = HEX_CHARS[(hash[i] >>> 4) & 0xf];
buf[x++] = HEX_CHARS[hash[i] & 0xf];
}
return new String(buf);
}
}
PROBLEM:
As per,
http:
I was expecting this to cause the workload to operate in as a child thread, but instead, it seems to still be apart of the main thread? Here's logcat output:
I/crcMike ( 2469): Main handler is bound to - main
I/checksum( 2469): Send a message to the main thread - main: 7933d0f2409ca27b510912b6a64527a3
I/crcMike ( 2469): Got an incoming message from the child thread - main: 7933d0f2409ca27b510912b6a64527a3
I/crcMike ( 2469): Send a message to the child thread - main says Hello
D/huh ( 2469): mResults: 7933d0f2409ca27b510912b6a64527a3
I/huh ( 2469): updateUI - main
I/crcMike ( 2469): Got an incoming message from the child thread - main says Hello
The program above displays and activity, on clicking a button (ignore the temp conversion) it computes the MD5 hash of a file on the SD card; the idea was to do this computation as a separate thread.
So, is this how a runnable thread should work?
Your assistance is much appreciated, thanks :)
|