|
@@ -0,0 +1,109 @@
|
|
|
+/*
|
|
|
+ * wpadebug - wpa_supplicant and Wi-Fi debugging app for Android
|
|
|
+ * Copyright (c) 2018, The Linux Foundation
|
|
|
+ *
|
|
|
+ * This software may be distributed under the terms of the BSD license.
|
|
|
+ * See README for more details.
|
|
|
+ */
|
|
|
+
|
|
|
+package w1.fi.wpadebug;
|
|
|
+
|
|
|
+import android.app.Activity;
|
|
|
+import android.graphics.Bitmap;
|
|
|
+import android.os.Bundle;
|
|
|
+import android.text.TextUtils;
|
|
|
+import android.util.Log;
|
|
|
+import android.widget.ImageView;
|
|
|
+
|
|
|
+import com.google.zxing.BarcodeFormat;
|
|
|
+import com.google.zxing.MultiFormatWriter;
|
|
|
+import com.google.zxing.WriterException;
|
|
|
+import com.google.zxing.common.BitMatrix;
|
|
|
+
|
|
|
+import java.io.BufferedReader;
|
|
|
+import java.io.File;
|
|
|
+import java.io.FileInputStream;
|
|
|
+import java.io.FileNotFoundException;
|
|
|
+import java.io.IOException;
|
|
|
+import java.io.InputStreamReader;
|
|
|
+
|
|
|
+public class QrCodeDisplayActivity extends Activity {
|
|
|
+
|
|
|
+ private static final String TAG = "wpadebug";
|
|
|
+ private static final String FILE_NAME = "wpadebug_qrdata.txt";
|
|
|
+ private ImageView imageView;
|
|
|
+
|
|
|
+ // Below set of configs are used for QR code display window
|
|
|
+ private final static int WHITE = 0xFFFFFFFF;
|
|
|
+ private final static int BLACK = 0xFF000000;
|
|
|
+ private final static int WIDTH = 400;
|
|
|
+ private final static int HEIGHT = 400;
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected void onCreate(Bundle savedInstanceState) {
|
|
|
+ super.onCreate(savedInstanceState);
|
|
|
+ // create imageview for this and attach to this activity.
|
|
|
+ setContentView(R.layout.qrcode);
|
|
|
+ imageView = (ImageView) findViewById(R.id.qrCode);
|
|
|
+ String str = readFromFile(FILE_NAME);
|
|
|
+
|
|
|
+ //Encode and launch qrcode now
|
|
|
+ try {
|
|
|
+ Bitmap bitmap = (TextUtils.isEmpty(str)) ? null : encodeAsBitmap(str);
|
|
|
+ if (bitmap != null) {
|
|
|
+ imageView.setImageBitmap(bitmap);
|
|
|
+ } else {
|
|
|
+ Log.e(TAG, "Failed to generate bitmap for uri=" + str);
|
|
|
+ finish();
|
|
|
+ }
|
|
|
+ } catch (WriterException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ finish();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private Bitmap encodeAsBitmap(String str) throws WriterException {
|
|
|
+ BitMatrix result;
|
|
|
+ try {
|
|
|
+ result = new MultiFormatWriter().encode(str, BarcodeFormat.QR_CODE, WIDTH, HEIGHT, null);
|
|
|
+ } catch (IllegalArgumentException iae) {
|
|
|
+ // Unsupported format
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+ int width = result.getWidth();
|
|
|
+ int height = result.getHeight();
|
|
|
+ int[] pixels = new int[width * height];
|
|
|
+ for (int y = 0; y < height; y++) {
|
|
|
+ int offset = y * width;
|
|
|
+ for (int x = 0; x < width; x++) {
|
|
|
+ pixels[offset + x] = result.get(x, y) ? BLACK : WHITE;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
|
|
|
+ bitmap.setPixels(pixels, 0, width, 0, 0, width, height);
|
|
|
+ return bitmap;
|
|
|
+ }
|
|
|
+
|
|
|
+ private String readFromFile(String filePath) {
|
|
|
+ try {
|
|
|
+ FileInputStream fis = new FileInputStream(new File("/sdcard", filePath));
|
|
|
+ BufferedReader br = new BufferedReader(new InputStreamReader(fis, "UTF-8"));
|
|
|
+ StringBuilder sb = new StringBuilder();
|
|
|
+ String line;
|
|
|
+ while(( line = br.readLine()) != null ) {
|
|
|
+ sb.append( line );
|
|
|
+ sb.append( '\n' );
|
|
|
+ }
|
|
|
+ return sb.toString();
|
|
|
+ }
|
|
|
+ catch (FileNotFoundException e) {
|
|
|
+ Log.e(TAG, "File not found: " + e.toString());
|
|
|
+ } catch (IOException e) {
|
|
|
+ Log.e(TAG, "Can not read file: " + e.toString());
|
|
|
+ }
|
|
|
+
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+}
|