summaryrefslogtreecommitdiff
path: root/Tizen.Network.Nfc/Tizen.Network.Nfc/NfcP2p.cs
blob: fd854407075c6edc514d14b646374310adc6672c (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
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
/*
 * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
 *
 * 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.
 */

using System;
using System.Runtime.InteropServices;
using System.Collections.Generic;
using System.Threading.Tasks;

namespace Tizen.Network.Nfc
{
    /// <summary>
    /// A class for managing the p2p target information.
    /// </summary>
    public class NfcP2p : IDisposable
    {
        private IntPtr _p2pTargetHandle = IntPtr.Zero;
        private bool disposed = false;

        private event EventHandler<P2pDataReceivedEventArgs> _p2pDataReceived;

        private Interop.Nfc.P2pDataReceivedCallback _p2pDataReceivedCallback;

        /// <summary>
        /// The event for receiving data from NFC peer-to-peer target.
        /// </summary>
        public event EventHandler<P2pDataReceivedEventArgs> P2pDataReceived
        {
            add
            {
                if (_p2pDataReceived == null)
                {
                    RegisterP2pDataReceivedEvent();
                }
                _p2pDataReceived += value;
            }
            remove
            {
                _p2pDataReceived -= value;
                if (_p2pDataReceived == null)
                {
                    UnregisterP2pDataReceivedEvent();
                }
            }
        }

        internal NfcP2p(IntPtr handle)
        {
            _p2pTargetHandle = handle;
        }

        ~NfcP2p()
        {
            Dispose(false);
        }

        public void Dispose()
        {
            Dispose(true);
            GC.SuppressFinalize(this);
        }

        private void Dispose(bool disposing)
        {
            if (disposed)
                return;

            if (disposing)
            {
                // Free managed objects.
            }
            //Free unmanaged objects
            disposed = true;
        }

        internal IntPtr GetHandle()
        {
            return _p2pTargetHandle;
        }

        /// <summary>
        /// Sends data to NFC peer-to-peer target.
        /// </summary>
        /// <param name="ndefMessage">NfcNdefMessage object.</param>
        public Task<NfcError> SendNdefMessageAsync(NfcNdefMessage ndefMessage)
        {
            var task = new TaskCompletionSource<NfcError>();

            Interop.Nfc.VoidCallback callback = (int result, IntPtr userData) =>
            {
                task.SetResult((NfcError)result);
                return;
            };

            int ret = Interop.Nfc.P2p.Send(_p2pTargetHandle, ndefMessage.GetHandle(), callback, IntPtr.Zero);
            if (ret != (int)NfcError.None)
            {
                Log.Error(Globals.LogTag, "Failed to write ndef message, Error - " + (NfcError)ret);
                NfcErrorFactory.ThrowNfcException(ret);
            }

            return task.Task;
        }

        private void RegisterP2pDataReceivedEvent()
        {
            _p2pDataReceivedCallback = (IntPtr p2pTargetHandle, IntPtr ndefMessageHandle, IntPtr userData) =>
            {
                P2pDataReceivedEventArgs e = new P2pDataReceivedEventArgs(p2pTargetHandle, ndefMessageHandle);
                _p2pDataReceived.SafeInvoke(null, e);
            };

            int ret = Interop.Nfc.P2p.SetDataReceivedCallback(_p2pTargetHandle, _p2pDataReceivedCallback, IntPtr.Zero);
            if (ret != (int)NfcError.None)
            {
                Log.Error(Globals.LogTag, "Failed to set p2p target discovered callback, Error - " + (NfcError)ret);
            }
        }

        private void UnregisterP2pDataReceivedEvent()
        {
            Interop.Nfc.P2p.UnsetDataReceivedCallback(_p2pTargetHandle);
        }
    }

    /// <summary>
    /// A class for managing the snep(Simple NDEF Exchange Protocol) information.
    /// </summary>
    public class NfcSnep : IDisposable
    {
        private IntPtr _snepHandle = IntPtr.Zero;
        private bool disposed = false;

        internal NfcSnep(IntPtr handle)
        {
            _snepHandle = handle;
        }

        ~NfcSnep()
        {
            Dispose(false);
        }

        public void Dispose()
        {
            Dispose(true);
            GC.SuppressFinalize(this);
        }

        private void Dispose(bool disposing)
        {
            if (disposed)
                return;

            if (disposing)
            {
                // Free managed objects.
            }
            //Free unmanaged objects
            disposed = true;
        }

        internal IntPtr GetHandle()
        {
            return _snepHandle;
        }
    }
}