Esempio n. 1
0
        static public string GetTypeNameFormat(NdefRecord record)
        {
            var typeName = "";

            switch (record.Tnf)
            {
            case 0x00:
                typeName = "empty";
                break;

            case 0x01:
                typeName = "wkt";
                break;

            case 0x02:
                typeName = "mimetype";
                break;

            case 0x03:
                typeName = "absUri";
                break;

            case 0x04:
                typeName = "ext";
                break;

            case 0x05:
                typeName = "unknown";
                break;

            case 0x06:
                typeName = "unchanged";
                break;

            case 0x07:
                typeName = "reserved";
                break;

            default:
                typeName = "error";
                break;
            }

            return(typeName);
        }
Esempio n. 2
0
        /// <summary>
        /// Extracts the data from the given record and places it into the
        /// given text RTD.
        /// </summary>
        /// <param name="record">The record containing the data.</param>
        /// <param name="text">Where the data is placed.</param>
        static public void ReadTextRtd(NdefRecord record, NdefTextRtd text)
        {
            byte[] buf = record.Payload;

            if (IsBitSet(buf[0], 6))
            {
                return;
            }

            var langLen = (byte)(buf[0] & 0x3f);
            var langBuf = new byte[langLen];

            System.Buffer.BlockCopy(buf, 1, langBuf, 0, langLen);
            text.Language = System.Text.Encoding.UTF8.GetString(langBuf, 0, langBuf.Length);
            var textLen = buf.Length - 1 - langLen;

            if (textLen <= 0)
            {
                return;
            }

            var textBuf = new byte[textLen];

            System.Buffer.BlockCopy(buf, 1 + langLen, textBuf, 0, textLen);

            if (IsBitSet(buf[0], 7))
            {
                text.Encoding = "UTF-16";
                text.Text     = System.Text.Encoding.Unicode.GetString(textBuf, 0, textBuf.Length);
            }
            else
            {
                text.Encoding = "UTF-8";
                text.Text     = System.Text.Encoding.UTF8.GetString(textBuf, 0, textBuf.Length);
            }
        }
Esempio n. 3
0
 /// <summary>
 /// Extracts the data from the given record and places it into the
 /// given URI RTD.
 /// </summary>
 /// <param name="record">The record containing the URI data.</param>
 /// <param name="uri">Where the data is placed.</param>
 static public void ReadUriRtd(NdefRecord record, NdefUriRtd uri)
 {
     byte[] buf = record.Payload;
     uri.Identifier = GetUriIdentifier(buf[0]);
     uri.Uri        = System.Text.Encoding.UTF8.GetString(buf, 1, buf.Length - 1);
 }
Esempio n. 4
0
        /// <summary>
        /// Creates NDEF records based on the data in the given buffer.
        /// </summary>
        /// <param name="buf">The data buffer as input.</param>
        /// <param name="list">The list of new NDEF records as output.</param>
        /// <param name="isFirstRecordSp">Defines whether the first record is smart poster or not.</param>
        static private void ReadNdefRecord(DataReader buf, List <NdefRecord> list, bool isFirstRecordSp)
        {
            var  record = new NdefRecord();
            byte header = buf.ReadByte();

            record.Mb         = IsBitSet(header, 7);
            record.Me         = IsBitSet(header, 6);
            record.Cf         = IsBitSet(header, 5);
            record.Sr         = IsBitSet(header, 4);
            record.Il         = IsBitSet(header, 3);
            record.Tnf        = (byte)(header & 0x07);
            record.TypeLength = buf.ReadByte();
            record.IsSpRecord = isFirstRecordSp;

            if (record.Il)
            {
                record.IdLength = buf.ReadByte();
            }
            else
            {
                record.IdLength = 0;
            }

            if (record.Sr)
            {
                record.PayloadLength = buf.ReadByte();
            }
            else
            {
                var lengthBuf = new byte[4];
                buf.ReadBytes(lengthBuf);
                //record.PayloadLength = BitConverter.ToUInt32(lengthBuf, 0);
                record.PayloadLength = (UInt32)((lengthBuf[0] << 24) +
                                                (lengthBuf[1] << 16) +
                                                (lengthBuf[2] << 8) +
                                                lengthBuf[3]);
            }

            if (record.TypeLength > 0)
            {
                record.Type = new byte[record.TypeLength];
                buf.ReadBytes(record.Type);
            }

            if ((record.Il) && (record.IdLength > 0))
            {
                record.Id = new byte[record.IdLength];
                buf.ReadBytes(record.Id);
            }

            if (record.PayloadLength > 0)
            {
                if ((record.Tnf == 0x01) &&
                    (System.Text.Encoding.UTF8.GetString(record.Type, 0, record.TypeLength) == "Sp"))
                {
                    ReadNdefRecord(buf, list, true);
                    record.Payload = null;
                }
                else
                {
                    record.Payload = new byte[record.PayloadLength];
                    buf.ReadBytes(record.Payload);
                }
            }

            list.Add(record);

            if (!record.Me)
            {
                ReadNdefRecord(buf, list, isFirstRecordSp);
            }
        }
Esempio n. 5
0
        static public string GetType(NdefRecord record)
        {
            var type = Encoding.UTF8.GetString(record.Type, 0, record.Type.Length);

            return(type);
        }