2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / class / Mono.WebBrowser / Mono.Mozilla / AsciiString.cs
blob46b1db23cd9e07d2b4ec87f66132b3de98632861
1 //Permission is hereby granted, free of charge, to any person obtaining
2 //a copy of this software and associated documentation files (the
3 //"Software"), to deal in the Software without restriction, including
4 //without limitation the rights to use, copy, modify, merge, publish,
5 //distribute, sublicense, and/or sell copies of the Software, and to
6 //permit persons to whom the Software is furnished to do so, subject to
7 //the following conditions:
8 //
9 //The above copyright notice and this permission notice shall be
10 //included in all copies or substantial portions of the Software.
12 //THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13 //EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14 //MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15 //NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16 //LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17 //OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18 //WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20 //Copyright (c) 2008 Novell, Inc.
22 //Authors:
23 // Andreia Gaita (avidigal@novell.com)
26 using System;
27 using System.Runtime.InteropServices;
29 namespace Mono.Mozilla
32 internal class AsciiString : IDisposable
35 [StructLayout(LayoutKind.Sequential)]
36 class nsStringContainer {
37 IntPtr v;
38 IntPtr d1;
39 uint d2;
40 IntPtr d3;
42 private bool disposed = false;
43 private nsStringContainer unmanagedContainer;
44 private HandleRef handle;
45 private string str = String.Empty;
46 private bool dirty;
49 public AsciiString(string value)
51 unmanagedContainer = new nsStringContainer ();
52 IntPtr p = Marshal.AllocHGlobal (Marshal.SizeOf (typeof (nsStringContainer)));
53 Marshal.StructureToPtr (unmanagedContainer, p, false);
54 handle = new HandleRef (typeof (nsStringContainer), p);
55 uint result = Base.gluezilla_CStringContainerInit (handle);
56 String = value;
59 ~AsciiString ()
61 Dispose (false);
64 #region IDisposable Members
66 protected virtual void Dispose (bool disposing)
68 if (!disposed) {
69 if (disposing) {
70 Base.gluezilla_CStringContainerFinish (handle);
71 Marshal.FreeHGlobal (handle.Handle);
73 disposed = true;
77 public void Dispose ()
79 Dispose (true);
80 GC.SuppressFinalize (this);
83 #endregion
86 public HandleRef Handle {
87 get {
88 dirty = true;
89 return handle;
93 public string String {
94 get {
95 if (dirty) {
96 IntPtr buf;
97 bool term;
98 Base.gluezilla_CStringGetData (handle, out buf, out term);
99 str = Marshal.PtrToStringAnsi (buf);
100 dirty = false;
102 return str;
104 set {
105 if (str != value) {
106 str = value;
107 Base.gluezilla_CStringSetData (handle, str, (uint)str.Length);
112 public int Length {
113 get { return String.Length; }
116 public override string ToString ()
118 return String;