CoreProfile.cs 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. using EVCB_OCPP.Packet.Features.Core;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace EVCB_OCPP.Packet.Features
  8. {
  9. public class CoreProfile : Profile
  10. {
  11. public CoreProfile()
  12. {
  13. Name = "Core";
  14. //加入支援的Features
  15. features.Add(new BootNotificationFeature());
  16. features.Add(new GetConfigurationFeature());
  17. features.Add(new HeartbeatFeature());
  18. features.Add(new StartTransactionFeature());
  19. features.Add(new ChangeConfigurationFeature());
  20. features.Add(new StatusNotificationFeature());
  21. features.Add(new StopTransactionFeature());
  22. features.Add(new MeterValuesFeature());
  23. features.Add(new RemoteStartTransactionFeature());
  24. features.Add(new RemoteStopTransactionFeature());
  25. features.Add(new ChangeAvailabilityFeature());
  26. features.Add(new AuthorizeFeature());
  27. features.Add(new ResetFeature());
  28. features.Add(new UnlockConnectorFeature());
  29. features.Add(new ClearCacheFeature());
  30. actions.Add(Actions.BootNotification.ToString());
  31. actions.Add(Actions.GetConfiguration.ToString());
  32. actions.Add(Actions.Heartbeat.ToString());
  33. actions.Add(Actions.StartTransaction.ToString());
  34. actions.Add(Actions.ChangeConfiguration.ToString());
  35. actions.Add(Actions.StatusNotification.ToString());
  36. actions.Add(Actions.Authorize.ToString());
  37. actions.Add(Actions.StopTransaction.ToString());
  38. actions.Add(Actions.MeterValues.ToString());
  39. actions.Add(Actions.RemoteStartTransaction.ToString());
  40. actions.Add(Actions.RemoteStopTransaction.ToString());
  41. actions.Add(Actions.ChangeAvailability.ToString());
  42. actions.Add(Actions.ClearCache.ToString());
  43. actions.Add(Actions.DataTransfer.ToString());
  44. actions.Add(Actions.Reset.ToString());
  45. actions.Add(Actions.UnlockConnector.ToString());
  46. }
  47. public string GetActionFromConfirmation(Type seekType)
  48. {
  49. return features.Where(x => x.GetConfirmationType() == seekType).FirstOrDefault().GetAction();
  50. }
  51. public string GetActionFromRequest(Type seekType)
  52. {
  53. return GetFeaturebyType(seekType).GetAction();
  54. }
  55. }
  56. }