blob: 93c66cc30dab9427b6a626a7752123cc8929fb74 [file] [log] [blame]
/*
* Copyright (C) 2010 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.apps.tag.record;
import com.android.apps.tag.R;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Preconditions;
import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.nfc.NdefRecord;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import java.nio.charset.Charsets;
import java.util.Arrays;
/**
* A {@link ParsedNdefRecord} corresponding to a MIME object.
*/
public class MimeRecord implements ParsedNdefRecord {
private String mType;
private byte[] mContent;
private MimeRecord(String mimeType, byte[] content) {
mType = Preconditions.checkNotNull(mimeType);
Preconditions.checkNotNull(content);
mContent = Arrays.copyOf(content, content.length);
}
@VisibleForTesting
public String getMimeType() {
return mType;
}
@VisibleForTesting
public byte[] getContent() {
return Arrays.copyOf(mContent, mContent.length);
}
@Override
public String getRecordType() {
return "MimeRecord";
}
@Override
public View getView(Activity activity, LayoutInflater inflater, ViewGroup parent) {
if (mType.startsWith("image/")) {
Bitmap bitmap = BitmapFactory.decodeByteArray(mContent, 0, mContent.length);
if (bitmap != null) {
ImageView image = (ImageView) inflater.inflate(R.layout.tag_image, parent, false);
image.setImageBitmap(bitmap);
return image;
}
}
TextView text = (TextView) inflater.inflate(R.layout.tag_text, parent, false);
// text.setText(new String(mContent, Charsets.UTF_8));
text.setText(mType);
return text;
}
public static MimeRecord parse(NdefRecord record) {
Preconditions.checkArgument(record.getTnf() == NdefRecord.TNF_MIME_MEDIA);
String type = new String(record.getType(), Charsets.US_ASCII);
byte[] payload = record.getPayload();
return new MimeRecord(type, payload);
}
public static boolean isMime(NdefRecord record) {
try {
parse(record);
return true;
} catch (IllegalArgumentException e) {
return false;
}
}
public static NdefRecord newMimeRecord(String type, byte[] data) {
Preconditions.checkNotNull(type);
Preconditions.checkNotNull(data);
byte[] typeBytes = type.getBytes(Charsets.US_ASCII);
return new NdefRecord(NdefRecord.TNF_MIME_MEDIA, typeBytes, new byte[0], data);
}
}