Accuracy.cs :  » PDF » iTextSharp » Org » BouncyCastle » Asn1 » Tsp » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » PDF » iTextSharp 
iTextSharp » Org » BouncyCastle » Asn1 » Tsp » Accuracy.cs
using System;

namespace Org.BouncyCastle.Asn1.Tsp{
  public class Accuracy
    : Asn1Encodable
  {
    private readonly DerInteger seconds;
    private readonly DerInteger millis;
    private readonly DerInteger micros;

    // constants
    protected const int MinMillis = 1;
    protected const int MaxMillis = 999;
    protected const int MinMicros = 1;
    protected const int MaxMicros = 999;

    public Accuracy(
      DerInteger seconds,
      DerInteger millis,
      DerInteger micros)
    {
      //Verifications
      if (millis != null
        && (millis.Value.IntValue < MinMillis
          || millis.Value.IntValue > MaxMillis))
      {
        throw new ArgumentException(
          "Invalid millis field : not in (1..999)");
      }

      if (micros != null
        && (micros.Value.IntValue < MinMicros
          || micros.Value.IntValue > MaxMicros))
      {
        throw new ArgumentException(
          "Invalid micros field : not in (1..999)");
      }

      this.seconds = seconds;
      this.millis = millis;
      this.micros = micros;
    }

    private Accuracy(
      Asn1Sequence seq)
    {
      for (int i = 0; i < seq.Count; ++i)
      {
        // seconds
        if (seq[i] is DerInteger)
        {
          seconds = (DerInteger) seq[i];
        }
        else if (seq[i] is DerTaggedObject)
        {
          DerTaggedObject extra = (DerTaggedObject) seq[i];

          switch (extra.TagNo)
          {
            case 0:
              millis = DerInteger.GetInstance(extra, false);
              if (millis.Value.IntValue < MinMillis
                || millis.Value.IntValue > MaxMillis)
              {
                throw new ArgumentException(
                  "Invalid millis field : not in (1..999).");
              }
              break;
            case 1:
              micros = DerInteger.GetInstance(extra, false);
              if (micros.Value.IntValue < MinMicros
                || micros.Value.IntValue > MaxMicros)
              {
                throw new ArgumentException(
                  "Invalid micros field : not in (1..999).");
              }
              break;
            default:
              throw new ArgumentException("Invalig tag number");
          }
        }
      }
    }

    public static Accuracy GetInstance(
      object o)
    {
      if (o == null || o is Accuracy)
      {
        return (Accuracy) o;
      }

      if (o is Asn1Sequence)
      {
        return new Accuracy((Asn1Sequence) o);
      }

      throw new ArgumentException(
        "Unknown object in 'Accuracy' factory: " + o.GetType().FullName);
    }

    public DerInteger Seconds
    {
      get { return seconds; }
    }

    public DerInteger Millis
    {
      get { return millis; }
    }

    public DerInteger Micros
    {
      get { return micros; }
    }

    /**
     * <pre>
     * Accuracy ::= SEQUENCE {
     *             seconds        INTEGER              OPTIONAL,
     *             millis     [0] INTEGER  (1..999)    OPTIONAL,
     *             micros     [1] INTEGER  (1..999)    OPTIONAL
     *             }
     * </pre>
     */
    public override Asn1Object ToAsn1Object()
    {
      Asn1EncodableVector v = new Asn1EncodableVector();

      if (seconds != null)
      {
        v.Add(seconds);
      }

      if (millis != null)
      {
        v.Add(new DerTaggedObject(false, 0, millis));
      }

      if (micros != null)
      {
        v.Add(new DerTaggedObject(false, 1, micros));
      }

      return new DerSequence(v);
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.