Click here to Skip to main content
15,891,757 members
Articles / Programming Languages / C#

Using a Database Over a Webservice

Rate me:
Please Sign up or sign in to vote.
4.43/5 (5 votes)
29 May 20073 min read 48.6K   539   44  
This article shows an example implementation of a database used over a Web-Service
/* Copyright (C) 2004 - 2007  db4objects Inc.  http://www.db4o.com */

using System.Collections;
using Db4objects.Db4o.Foundation;

namespace Db4objects.Db4o.Foundation
{
	/// <summary>
	/// Using the CollectionElement the other way around:
	/// CollectionElement.i_next points to the previous element
	/// </summary>
	/// <exclude></exclude>
	public class NonblockingQueue : IQueue4
	{
		protected sealed class Queue4Iterator : IEnumerator
		{
			protected bool _active = false;

			protected List4 _current = null;

			public object Current
			{
				get
				{
					return this._current._element;
				}
			}

			public bool MoveNext()
			{
				if (!this._active)
				{
					this._current = this._enclosing._last;
					this._active = true;
				}
				else
				{
					if (this._current != null)
					{
						this._current = this._current._next;
					}
				}
				return this._current != null;
			}

			public void Reset()
			{
				this._current = null;
				this._active = false;
			}

			internal Queue4Iterator(NonblockingQueue _enclosing)
			{
				this._enclosing = _enclosing;
			}

			private readonly NonblockingQueue _enclosing;
		}

		private List4 _first;

		protected List4 _last;

		public void Add(object obj)
		{
			List4 ce = new List4(null, obj);
			if (_first == null)
			{
				_last = ce;
			}
			else
			{
				_first._next = ce;
			}
			_first = ce;
		}

		public object Next()
		{
			if (_last == null)
			{
				return null;
			}
			object ret = _last._element;
			_last = _last._next;
			if (_last == null)
			{
				_first = null;
			}
			return ret;
		}

		public bool HasNext()
		{
			return _last != null;
		}

		public virtual IEnumerator Iterator()
		{
			return new NonblockingQueue.Queue4Iterator(this);
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United Arab Emirates United Arab Emirates
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions