| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- //
- // CustomPeerResolverService.cs
- //
- // Author:
- // Marcos Cobena ([email protected])
- // Atsushi Enomoto <[email protected]>
- //
- // Copyright 2007 Marcos Cobena (http://www.youcannoteatbits.org/)
- //
- // Copyright (C) 2009 Novell, Inc (http://www.novell.com)
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System.Collections.Generic;
- using System.Linq;
- using System.Transactions;
- using System.Timers;
- namespace System.ServiceModel.PeerResolvers
- {
- [MonoTODO ("Implement cleanup and refresh")]
- // FIXME: TransactionTimeout must be null by-default.
- [ServiceBehavior (AutomaticSessionShutdown = true, ConcurrencyMode = ConcurrencyMode.Multiple,
- InstanceContextMode = InstanceContextMode.Single, ReleaseServiceInstanceOnTransactionComplete = true,
- TransactionIsolationLevel = IsolationLevel.Unspecified, /*TransactionTimeout = null, */
- UseSynchronizationContext = false, ValidateMustUnderstand = true)]
- public class CustomPeerResolverService : IPeerResolverContract
- {
- bool control_shape;
- bool opened;
- // Maybe it's worth to change List<T> for a better distributed and faster collection.
- List<Node> mesh = new List<Node> ();
- object mesh_lock = new object ();
- Timer refresh_timer, cleanup_timer;
- DateTime last_refresh_time = DateTime.Now;
- public CustomPeerResolverService ()
- {
- refresh_timer = new Timer () { AutoReset = true };
- RefreshInterval = new TimeSpan (0, 10, 0);
- refresh_timer.Elapsed += delegate {
- // FIXME: implement
- };
- cleanup_timer = new Timer () { AutoReset = true };
- CleanupInterval = new TimeSpan (0, 1, 0);
- cleanup_timer.Elapsed += delegate {
- // FIXME: implement
- };
- control_shape = false;
- opened = false;
- }
- public TimeSpan CleanupInterval {
- get { return TimeSpan.FromMilliseconds ((int) cleanup_timer.Interval); }
- set {
- if ((value < TimeSpan.Zero) || (value > TimeSpan.MaxValue))
- throw new ArgumentOutOfRangeException (
- "The interval is either zero or greater than max value.");
- if (opened)
- throw new InvalidOperationException ("The interval must be set before it is opened");
- cleanup_timer.Interval = value.TotalMilliseconds;
- }
- }
- public bool ControlShape {
- get { return control_shape; }
- set { control_shape = value; }
- }
- public TimeSpan RefreshInterval {
- get { return TimeSpan.FromMilliseconds ((int) refresh_timer.Interval); }
- set {
- if ((value < TimeSpan.Zero) || (value > TimeSpan.MaxValue))
- throw new ArgumentOutOfRangeException (
- "The interval is either zero or greater than max value.");
- if (opened)
- throw new InvalidOperationException ("The interval must be set before it is opened");
- refresh_timer.Interval = value.TotalMilliseconds;
- }
- }
- [MonoTODO ("Do we have to unregister nodes here?")]
- public virtual void Close ()
- {
- if (! opened)
- throw new InvalidOperationException ("The service has never been opened or it was closed by a previous call to this method.");
- refresh_timer.Stop ();
- cleanup_timer.Stop ();
- }
- [MonoTODO]
- public virtual ServiceSettingsResponseInfo GetServiceSettings ()
- {
- if (! opened)
- throw new InvalidOperationException ("The service has never been opened or it was closed previously.");
-
- // return new ServiceSettingsResponseInfo ();
- throw new NotImplementedException ();
- }
- public virtual void Open ()
- {
- if ((CleanupInterval == TimeSpan.Zero) || (RefreshInterval == TimeSpan.Zero))
- throw new ArgumentException ("Cleanup interval or refresh interval are set to a time span interval of zero.");
- if (opened)
- throw new InvalidOperationException ("The service has been started by a previous call to this method.");
-
- opened = true;
- refresh_timer.Start ();
- cleanup_timer.Start ();
- }
- [MonoTODO]
- public virtual RefreshResponseInfo Refresh (RefreshInfo refreshInfo)
- {
- if (refreshInfo == null)
- throw new ArgumentException ("Refresh info cannot be null.");
-
- if (! opened)
- throw new InvalidOperationException ("The service has never been opened or it was closed previously.");
- var node = mesh.FirstOrDefault (n => n.MeshId == refreshInfo.MeshId && n.RegistrationId.Equals (refreshInfo.RegistrationId));
- if (node == null)
- return new RefreshResponseInfo (TimeSpan.Zero, RefreshResult.RegistrationNotFound);
- // FIXME: implement actual refresh.
- last_refresh_time = DateTime.Now;
- return new RefreshResponseInfo (RefreshInterval - (DateTime.Now - last_refresh_time), RefreshResult.Success);
- }
- public virtual RegisterResponseInfo Register (RegisterInfo registerInfo)
- {
- if (registerInfo == null)
- throw new ArgumentException ("Register info cannot be null.");
-
- if (! opened)
- throw new InvalidOperationException ("The service has never been opened or it was closed previously.");
-
- return Register (registerInfo.ClientId, registerInfo.MeshId, registerInfo.NodeAddress);
- }
- public virtual RegisterResponseInfo Register (Guid clientId, string meshId, PeerNodeAddress address)
- {
- Node n = new Node () { RegistrationId = Guid.NewGuid (), MeshId = meshId, ClientId = clientId, NodeAddress = address };
- RegisterResponseInfo rri = new RegisterResponseInfo ();
- rri.RegistrationId = n.RegistrationId;
- lock (mesh_lock)
- mesh.Add (n);
-
- return rri;
- }
- public virtual ResolveResponseInfo Resolve (ResolveInfo resolveInfo)
- {
- ResolveResponseInfo rri = new ResolveResponseInfo ();
- if (resolveInfo == null)
- throw new ArgumentException ("Resolve info cannot be null.");
-
- if (! opened)
- throw new InvalidOperationException ("The service has never been opened or it was closed previously.");
-
- foreach (var node in mesh)
- if (node.MeshId == resolveInfo.MeshId &&
- node.ClientId == resolveInfo.ClientId)
- rri.Addresses.Add (node.NodeAddress);
-
- return rri;
- }
- public virtual void Unregister (UnregisterInfo unregisterInfo)
- {
- if (unregisterInfo == null)
- throw new ArgumentException ("Unregister info cannot be null.");
-
- if (! opened)
- throw new InvalidOperationException ("The service has never been opened or it was closed previously.");
-
- lock (mesh_lock)
- foreach (var node in mesh)
- if (node.MeshId == unregisterInfo.MeshId &&
- node.RegistrationId == unregisterInfo.RegistrationId) {
- mesh.Remove (node);
- break;
- }
- }
- [MonoTODO]
- public virtual RegisterResponseInfo Update (UpdateInfo updateInfo)
- {
- if (updateInfo == null)
- throw new ArgumentException ("Update info cannot be null.");
-
- if (! opened)
- throw new InvalidOperationException ("The service has never been opened or it was closed previously.");
-
- // return new RegisterResponseInfo ();
- throw new NotImplementedException ();
- }
- }
-
- internal class Node
- {
- public Guid ClientId { get; set; }
- public string MeshId { get; set; }
- public Guid RegistrationId { get; set; }
- public PeerNodeAddress NodeAddress { get; set; }
- }
- }
|