| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- using System;
- using System.Collections.Generic;
- using Base;
- namespace Model
- {
- public abstract class NetworkComponent: Component
- {
- private AService Service;
- private readonly Dictionary<long, Entity> sessions = new Dictionary<long, Entity>();
- private readonly Dictionary<string, Entity> adressSessions = new Dictionary<string, Entity>();
- protected void Awake(NetworkProtocol protocol)
- {
- switch (protocol)
- {
- case NetworkProtocol.TCP:
- this.Service = new TService();
- break;
- case NetworkProtocol.UDP:
- this.Service = new UService();
- break;
- default:
- throw new ArgumentOutOfRangeException();
- }
- }
- protected void Awake(NetworkProtocol protocol, string host, int port)
- {
- switch (protocol)
- {
- case NetworkProtocol.TCP:
- this.Service = new TService(host, port);
- break;
- case NetworkProtocol.UDP:
- this.Service = new UService(host, port);
- break;
- default:
- throw new ArgumentOutOfRangeException();
- }
- this.StartAccept();
- }
- private async void StartAccept()
- {
- while (true)
- {
- if (this.Id == 0)
- {
- return;
- }
- AChannel channel = await this.Service.AcceptChannel();
- Entity session = new Entity(EntityType.Session);
- channel.ErrorCallback += (c, e) => { this.Remove(session.Id); };
- session.AddComponent<MessageComponent, AChannel>(channel);
- this.Add(session);
- }
- }
- private void Add(Entity session)
- {
- this.sessions.Add(session.Id, session);
- this.adressSessions.Add(session.GetComponent<MessageComponent>().RemoteAddress, session);
- }
- public void Remove(long id)
- {
- Entity session;
- if (!this.sessions.TryGetValue(id, out session))
- {
- return;
- }
- this.sessions.Remove(id);
- this.adressSessions.Remove(session.GetComponent<MessageComponent>().RemoteAddress);
- }
- public Entity Get(long id)
- {
- Entity session;
- this.sessions.TryGetValue(id, out session);
- return session;
- }
- public Entity Get(string address)
- {
- Entity session;
- if (this.adressSessions.TryGetValue(address, out session))
- {
- return session;
- }
- string[] ss = address.Split(':');
- int port = int.Parse(ss[1]);
- string host = ss[0];
- AChannel channel = this.Service.ConnectChannel(host, port);
- session = new Entity(EntityType.Session);
- channel.ErrorCallback += (c, e) => { this.Remove(session.Id); };
- session.AddComponent<MessageComponent, AChannel>(channel);
- this.Add(session);
- return session;
- }
- public override void Dispose()
- {
- if (this.Id == 0)
- {
- return;
- }
- base.Dispose();
- this.Service.Dispose();
- }
- public void Update()
- {
- if (this.Service == null)
- {
- return;
- }
- this.Service.Update();
- }
- }
- }
|