File: BEID_ByteArray.cs

package info (click to toggle)
beid 3.5.2.dfsg-10
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 147,240 kB
  • ctags: 34,507
  • sloc: cpp: 149,944; ansic: 41,577; java: 8,927; cs: 6,528; sh: 2,426; perl: 1,866; xml: 805; python: 463; makefile: 263; lex: 92
file content (124 lines) | stat: -rw-r--r-- 5,291 bytes parent folder | download
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
/* ----------------------------------------------------------------------------
 * This file was automatically generated by SWIG (http://www.swig.org).
 * Version 1.3.35
 *
 * Do not make changes to this file unless you know what you are doing--modify
 * the SWIG interface file instead.
 * ----------------------------------------------------------------------------- */

namespace be.belgium.eid {

using System;
using System.Runtime.InteropServices;

/// <summary>This class is used to receive/pass bytes array from/to different method in the SDK.</summary>
public class BEID_ByteArray : BEID_Object {
  private HandleRef swigCPtr;

  internal BEID_ByteArray(IntPtr cPtr, bool cMemoryOwn) : base(beidlib_dotNetPINVOKE.BEID_ByteArrayUpcast(cPtr), cMemoryOwn) {
    swigCPtr = new HandleRef(this, cPtr);
  }

  internal static HandleRef getCPtr(BEID_ByteArray obj) {
    return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
  }

  ~BEID_ByteArray() {
    Dispose();
  }

  public override void Dispose() {
    lock(this) {
      if(swigCPtr.Handle != IntPtr.Zero && swigCMemOwn) {
        swigCMemOwn = false;
        beidlib_dotNetPINVOKE.delete_BEID_ByteArray(swigCPtr);
      }
      swigCPtr = new HandleRef(null, IntPtr.Zero);
      GC.SuppressFinalize(this);
      base.Dispose();
    }
  }

  public BEID_ByteArray() : this(beidlib_dotNetPINVOKE.new_BEID_ByteArray__SWIG_0(), true) {
    if (beidlib_dotNetPINVOKE.SWIGPendingException.Pending) throw beidlib_dotNetPINVOKE.SWIGPendingException.Retrieve();
  }

  public BEID_ByteArray(BEID_ByteArray bytearray) : this(beidlib_dotNetPINVOKE.new_BEID_ByteArray__SWIG_1(BEID_ByteArray.getCPtr(bytearray)), true) {
    if (beidlib_dotNetPINVOKE.SWIGPendingException.Pending) throw beidlib_dotNetPINVOKE.SWIGPendingException.Retrieve();
  }

  /// <summary>Constructor - initialize a ByteArray with an array of byte.</summary>
  /// <param name="pucData">the byte array to append</param>
  /// <param name="ulSize">the size of the array</param>
  public BEID_ByteArray(byte[] pucData, uint ulSize) : this(beidlib_dotNetPINVOKE.new_BEID_ByteArray__SWIG_2(pucData, ulSize), true) {
    if (beidlib_dotNetPINVOKE.SWIGPendingException.Pending) throw beidlib_dotNetPINVOKE.SWIGPendingException.Retrieve();
  }

  /// <summary>Append data to the byte array.</summary>
  /// <param name="pucData">the byte array to append</param>
  /// <param name="ulSize">the size of the array</param>
  public void Append(byte[] pucData, uint ulSize) {
    beidlib_dotNetPINVOKE.BEID_ByteArray_Append__SWIG_0(swigCPtr, pucData, ulSize);
    if (beidlib_dotNetPINVOKE.SWIGPendingException.Pending) throw beidlib_dotNetPINVOKE.SWIGPendingException.Retrieve();
  }

  /// <summary>Append data to the byte array.</summary>
  public void Append(BEID_ByteArray data) {
    beidlib_dotNetPINVOKE.BEID_ByteArray_Append__SWIG_1(swigCPtr, BEID_ByteArray.getCPtr(data));
    if (beidlib_dotNetPINVOKE.SWIGPendingException.Pending) throw beidlib_dotNetPINVOKE.SWIGPendingException.Retrieve();
  }

  /// <summary>Remove the data from the byte array.</summary>
  public void Clear() {
    beidlib_dotNetPINVOKE.BEID_ByteArray_Clear(swigCPtr);
    if (beidlib_dotNetPINVOKE.SWIGPendingException.Pending) throw beidlib_dotNetPINVOKE.SWIGPendingException.Retrieve();
  }

  /// <summary>Return true if the content of data is the same as this.</summary>
  public bool Equals(BEID_ByteArray data)
  {
    bool ret = beidlib_dotNetPINVOKE.BEID_ByteArray_Equals(swigCPtr, BEID_ByteArray.getCPtr(data));
    if (beidlib_dotNetPINVOKE.SWIGPendingException.Pending) throw beidlib_dotNetPINVOKE.SWIGPendingException.Retrieve();
    return ret;
  }

  /// <summary>Return the number of bytes in the array.</summary>
  public uint Size()
  {
    uint ret = beidlib_dotNetPINVOKE.BEID_ByteArray_Size(swigCPtr);
    if (beidlib_dotNetPINVOKE.SWIGPendingException.Pending) throw beidlib_dotNetPINVOKE.SWIGPendingException.Retrieve();
    return ret;
  }

    /// <summary>
    /// Return the array of bytes in the object. 
    /// If Size() == 0, then NULL is returned.
    /// </summary>
  public byte[] GetBytes()
  { 
	byte[] rslt = new byte[Size()];
	IntPtr pt = beidlib_dotNetPINVOKE.BEID_ByteArray_GetBytes(swigCPtr);
	if (beidlib_dotNetPINVOKE.SWIGPendingException.Pending) throw beidlib_dotNetPINVOKE.SWIGPendingException.Retrieve();
	Marshal.Copy(pt, rslt, 0,(int) Size());
	return rslt; 
  }

  /// <summary>Writing the binary content to a file.</summary>
  public bool writeToFile(string csFilePath)
  {
    bool ret = beidlib_dotNetPINVOKE.BEID_ByteArray_writeToFile(swigCPtr, csFilePath);
    if (beidlib_dotNetPINVOKE.SWIGPendingException.Pending) throw beidlib_dotNetPINVOKE.SWIGPendingException.Retrieve();
    return ret;
  }

  /// <summary>Copy content of bytearray.</summary>
  public BEID_ByteArray assign(BEID_ByteArray bytearray)
  {
    BEID_ByteArray ret = new BEID_ByteArray(beidlib_dotNetPINVOKE.BEID_ByteArray_assign(swigCPtr, BEID_ByteArray.getCPtr(bytearray)), false);
    if (beidlib_dotNetPINVOKE.SWIGPendingException.Pending) throw beidlib_dotNetPINVOKE.SWIGPendingException.Retrieve();
    return ret;
  }

}

}