summaryrefslogtreecommitdiffstats
path: root/core/java/com/trustedlogic/trustednfc/android/NdefTag.java
blob: 1d992414d211951e844330dd496555157de76fbf (plain)
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
/*
 * 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.
 */

/**
 * File            : NDEFTag.java
 * Original-Author : Trusted Logic S.A. (Jeremie Corbier)
 * Created         : 04-12-2009
 */

package com.trustedlogic.trustednfc.android;

import java.io.IOException;

import android.os.RemoteException;
import android.util.Log;

/**
 * NdefTag represents tags complying with the NFC Forum's NFC Data Exchange
 * Format.
 * 
 * @since AA01.04
 * @hide
 */
public class NdefTag extends NfcTag {

    private static final String TAG = "NdefTag";


    public NdefTag(NfcTag tag){
		super(tag.mService,tag.mHandle);
		this.isConnected = tag.isConnected; 
		this.isClosed = tag.isClosed;
		tag.isClosed = false;
    }
    
    /**
     * Internal constructor for the NfcNdefTag class.
     * 
     * @param service The entry point to the Nfc Service for NfcNdefTag class.
     * @param handle The handle returned by the NFC service and used to identify
     *            the tag in subsequent calls.
     * @hide
     */
    NdefTag(INfcTag service, int handle) {
        super(service, handle);
    }

    /**
     * Read NDEF data from an NDEF tag.
     * 
     * @return the NDEF message read from the tag.
     * @throws NfcException if the tag is not NDEF-formatted.
     * @throws IOException if the target has been lost or the connection has
     *             been closed.
     * @see NdefMessage
     */
    public NdefMessage read() throws NfcException, IOException {
        // Check state
        checkState();
        
        //Check if the tag is Ndef compliant
        if(isNdef != true){
            isNdef = isNdef();
            if(isNdef != true) {
                throw new NfcException("Tag is not NDEF compliant");
            }
        }

        // Perform transceive
        try {
            NdefMessage msg = mService.read(mHandle);
            if (msg == null) {
                throw new IOException("NDEF read failed");
            }
            return msg;
        } catch (RemoteException e) {
            Log.e(TAG, "RemoteException in read(): ", e);
            return null;
        }
    }

    /**
     * Write NDEF data to an NDEF-compliant tag.
     * 
     * @param msg NDEF message to be written to the tag.
     * @throws NfcException if the tag is not NDEF formatted.
     * @throws IOException if the target has been lost or the connection has
     *             been closed.
     * @see NdefMessage
     */
    public void write(NdefMessage msg) throws NfcException, IOException {
        // Check state
        checkState();
        
        //Check if the tag is Ndef compliant
        if(isNdef != true){
            isNdef = isNdef();
            if(isNdef != true) {
                throw new NfcException("Tag is not NDEF compliant");
            }
        }

        // Perform transceive
        try {
            boolean isSuccess = mService.write(mHandle, msg);
            if (!isSuccess) {
                throw new IOException("NDEF write failed");
            }
        } catch (RemoteException e) {
            Log.e(TAG, "RemoteException in write(): ", e);
        }
    }
}