Click here to Skip to main content
15,897,704 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;
using Db4objects.Db4o.Nativequery.Expr.Cmp;

namespace Db4objects.Db4o.Nativequery.Expr.Cmp
{
	public class MethodCallValue : ComparisonOperandDescendant
	{
		private string _methodName;

		private Type[] _paramTypes;

		private IComparisonOperand[] _args;

		public MethodCallValue(IComparisonOperandAnchor parent, string name, Type[] paramTypes
			, IComparisonOperand[] args) : base(parent)
		{
			_methodName = name;
			_paramTypes = paramTypes;
			_args = args;
		}

		public override void Accept(IComparisonOperandVisitor visitor)
		{
			visitor.Visit(this);
		}

		public virtual string MethodName()
		{
			return _methodName;
		}

		public virtual Type[] ParamTypes()
		{
			return _paramTypes;
		}

		public virtual IComparisonOperand[] Args()
		{
			return _args;
		}

		public override bool Equals(object obj)
		{
			if (!base.Equals(obj))
			{
				return false;
			}
			Db4objects.Db4o.Nativequery.Expr.Cmp.MethodCallValue casted = (Db4objects.Db4o.Nativequery.Expr.Cmp.MethodCallValue
				)obj;
			return _methodName.Equals(casted._methodName) && ArrayCmp(_paramTypes, casted._paramTypes
				) && ArrayCmp(_args, casted._args);
		}

		public override int GetHashCode()
		{
			int hc = base.GetHashCode();
			hc *= 29 + _methodName.GetHashCode();
			hc *= 29 + _paramTypes.GetHashCode();
			hc *= 29 + _args.GetHashCode();
			return hc;
		}

		public override string ToString()
		{
			string str = base.ToString() + "." + _methodName + "(";
			for (int paramIdx = 0; paramIdx < _paramTypes.Length; paramIdx++)
			{
				if (paramIdx > 0)
				{
					str += ",";
				}
				str += _paramTypes[paramIdx] + ":" + _args[paramIdx];
			}
			str += ")";
			return str;
		}

		private bool ArrayCmp(object[] a, object[] b)
		{
			if (a.Length != b.Length)
			{
				return false;
			}
			for (int paramIdx = 0; paramIdx < a.Length; paramIdx++)
			{
				if (!a[paramIdx].Equals(b[paramIdx]))
				{
					return false;
				}
			}
			return true;
		}
	}
}

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