basenametable.cs :  » Network-Clients » RemoteCalendars » Google » GData » Client » 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 » Network Clients » RemoteCalendars 
RemoteCalendars » Google » GData » Client » basenametable.cs
/* Copyright (c) 2006 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
*/
#region Using directives

#define USE_TRACING

using System;
using System.Xml;
using System.IO; 

#endregion

//////////////////////////////////////////////////////////////////////
// <summary>basenametable, holds common names for atom&rss parsing</summary> 
//////////////////////////////////////////////////////////////////////
namespace Google.GData.Client{

    //////////////////////////////////////////////////////////////////////
    /// <summary>BaseNameTable. An initialized nametable for faster XML processing
    /// parses:  
    ///     *  opensearch:totalResults - the total number of search results available (not necessarily all present in the feed).
    ///     *  opensearch:startIndex - the 1-based index of the first result.
    ///     *  opensearch:itemsPerPage - the maximum number of items that appear on one page. This allows clients to generate direct links to any set of subsequent pages.
    ///     *  gData:processed
    ///  </summary>
    //////////////////////////////////////////////////////////////////////
    public class BaseNameTable
    {
        /// <summary>the nametable itself, based on XML core</summary> 
        private NameTable atomNameTable; 

        /// <summary>opensearch:totalResults</summary> 
        private object totalResults;
        /// <summary>opensearch:startIndex</summary> 
        private object startIndex;
        /// <summary>opensearch:itemsPerPage</summary> 
        private object itemsPerPage;
         /// <summary>xml base</summary> 
        private object baseUri;
        /// <summary>xml language</summary> 
        private object language;

        // batch extensions
        private object batchId; 
        private object batchStatus;
        private object batchOperation;
        private object batchInterrupt;
        private object batchContentType;
        private object batchStatusCode; 
        private object batchReason;
        private object batchErrors;
        private object batchError;
        private object batchOperationType;
        private object batchSuccessCount;
        private object batchFailureCount;
        private object batchParsedCount;
        private object batchField;
        private object batchUnprocessed; 

        /// <summary>static namespace string declaration</summary> 
        public const string NSOpenSearchRss = "http://a9.com/-/spec/opensearchrss/1.0/";
        /// <summary>static namespace string declaration</summary> 
        public const string NSAtom = "http://www.w3.org/2005/Atom";
        /// <summary>xml namespace</summary> 
        public const string NSXml = "http://www.w3.org/XML/1998/namespace";
        /// <summary>GD namespace</summary> 
        public const string gNamespace = "http://schemas.google.com/g/2005";
        /// <summary>GData batch extension namespace</summary> 
        public const string gBatchNamespace = "http://schemas.google.com/gdata/batch"; 
        /// <summary>GD namespace prefix</summary> 
        public const string gNamespacePrefix = gNamespace+ "#";
        /// <summary>the post definiton in the link collection</summary> 
        public const string ServicePost = gNamespacePrefix + "post";
        /// <summary>the feed definition in the link collection</summary> 
        public const string ServiceFeed = gNamespacePrefix + "feed";
        /// <summary>the batch URI definition in the link collection</summary>
        public const string ServiceBatch = gNamespacePrefix + "batch";
        /// <summary>GData Kind Scheme</summary> 
        public const string gKind = gNamespacePrefix + "kind";
        /// <summary>the edit definition in the link collection</summary> 
        public const string ServiceEdit = "edit";
        /// <summary>the next chunk URI in the link collection</summary> 
        public const string ServiceNext = "next";
        /// <summary>the previous chunk URI in the link collection</summary> 
        public const string ServicePrev = "previous";
        /// <summary>the self URI in the link collection</summary> 
        public const string ServiceSelf = "self";
        /// <summary>the alternate URI in the link collection</summary> 
        public const string ServiceAlternate = "alternate";

        /// <summary>prefix for atom if writing</summary> 
        public const string AtomPrefix = "atom"; 

        /// <summary>prefix for gdata if writing</summary> 
        public const string gDataPrefix = "gd"; 

        /// <summary>prefix for gdata:batch if writing</summary> 
        public const string gBatchPrefix = "batch"; 


        // batch strings:

        
        /// <summary>xmlelement for batch:id</summary> 
        public const string XmlElementBatchId = "id"; 
        /// <summary>xmlelement for batch:operation</summary> 
        public const string XmlElementBatchOperation = "operation"; 
        /// <summary>xmlelement for batch:status</summary> 
        public const string XmlElementBatchStatus = "status"; 
        /// <summary>xmlelement for batch:interrupted</summary> 
        public const string XmlElementBatchInterrupt = "interrupted"; 
        /// <summary>xmlattribute for batch:status@contentType</summary> 
        public const string XmlAttributeBatchContentType = "content-type"; 
        /// <summary>xmlattribute for batch:status@code</summary> 
        public const string XmlAttributeBatchStatusCode = "code"; 
        /// <summary>xmlattribute for batch:status@reason</summary> 
        public const string XmlAttributeBatchReason = "reason";
        /// <summary>xmlelement for batch:status:errors</summary> 
        public const string XmlElementBatchErrors = "errors"; 
        /// <summary>xmlelement for batch:status:errors:error</summary> 
        public const string XmlElementBatchError = "error"; 
        /// <summary>xmlattribute for batch:operation@type</summary> 
        public const string XmlAttributeBatchOperationType = "type"; 
        /// <summary>xmlattribute for batch:interrupted@success</summary> 
        public const string XmlAttributeBatchSuccess = "success";
        /// <summary>XmlAttribute for batch:interrupted@parsed</summary> 
        public const string XmlAttributeBatchParsed = "parsed"; 
        /// <summary>XmlAttribute for batch:interrupted@field</summary> 
        public const string XmlAttributeBatchField = "field"; 
        /// <summary>XmlAttribute for batch:interrupted@unprocessed</summary> 
        public const string XmlAttributeBatchUnprocessed = "unprocessed"; 
        
        //////////////////////////////////////////////////////////////////////
        /// <summary>initializes the name table for use with atom parsing. This is the
        /// only place where strings are defined for parsing</summary> 
        //////////////////////////////////////////////////////////////////////
        public virtual void InitAtomParserNameTable()
        {
            // create the nametable object
            Tracing.TraceCall("Initializing basenametable support"); 
            this.atomNameTable = new NameTable(); 
            // <summary>add the keywords for the Feed
            this.totalResults = this.atomNameTable.Add("totalResults");
            this.startIndex   = this.atomNameTable.Add("startIndex");
            this.itemsPerPage = this.atomNameTable.Add("itemsPerPage");
            this.baseUri      = this.atomNameTable.Add("base");  
            this.language     = this.atomNameTable.Add("lang");  

            // batch keywords
            this.batchId            = this.atomNameTable.Add(BaseNameTable.XmlElementBatchId);
            this.batchOperation     = this.atomNameTable.Add(BaseNameTable.XmlElementBatchOperation); 
            this.batchStatus        = this.atomNameTable.Add(BaseNameTable.XmlElementBatchStatus);
            this.batchInterrupt     = this.atomNameTable.Add(BaseNameTable.XmlElementBatchInterrupt);
            this.batchContentType   = this.atomNameTable.Add(BaseNameTable.XmlAttributeBatchContentType); 
            this.batchStatusCode    = this.atomNameTable.Add(BaseNameTable.XmlAttributeBatchStatusCode); 
            this.batchReason        = this.atomNameTable.Add(BaseNameTable.XmlAttributeBatchReason); 
            this.batchErrors        = this.atomNameTable.Add(BaseNameTable.XmlElementBatchErrors); 
            this.batchError         = this.atomNameTable.Add(BaseNameTable.XmlElementBatchError); 
            this.batchOperationType    = this.atomNameTable.Add(BaseNameTable.XmlAttributeBatchOperationType); 
            this.batchSuccessCount  = this.atomNameTable.Add(BaseNameTable.XmlAttributeBatchSuccess); 
            this.batchFailureCount  = this.batchError; 
            this.batchParsedCount   = this.atomNameTable.Add(BaseNameTable.XmlAttributeBatchParsed); 
            this.batchField         = this.atomNameTable.Add(BaseNameTable.XmlAttributeBatchField); 
            this.batchUnprocessed   = this.atomNameTable.Add(BaseNameTable.XmlAttributeBatchUnprocessed); 

        }
        /////////////////////////////////////////////////////////////////////////////

        #region Read only accessors 8/10/2005

        //////////////////////////////////////////////////////////////////////
        /// <summary>Read only accessor for atomNameTable</summary> 
        //////////////////////////////////////////////////////////////////////
        internal NameTable Nametable
        {
            get {return this.atomNameTable;}
        }
        /////////////////////////////////////////////////////////////////////////////

        //////////////////////////////////////////////////////////////////////
        /// <summary>Read only accessor for BatchId</summary> 
        //////////////////////////////////////////////////////////////////////
        public object BatchId
        {
            get {return this.batchId;}
        }
        /////////////////////////////////////////////////////////////////////////////

        //////////////////////////////////////////////////////////////////////
        /// <summary>Read only accessor for BatchOperation</summary> 
        //////////////////////////////////////////////////////////////////////
        public object BatchOperation
        {
            get {return this.batchOperation;}
        }
        /////////////////////////////////////////////////////////////////////////////

        //////////////////////////////////////////////////////////////////////
        /// <summary>Read only accessor for BatchStatus</summary> 
        //////////////////////////////////////////////////////////////////////
        public object BatchStatus
        {
            get {return this.batchStatus;}
        }
        /////////////////////////////////////////////////////////////////////////////

        //////////////////////////////////////////////////////////////////////
        /// <summary>Read only accessor for BatchInterrupt</summary> 
        //////////////////////////////////////////////////////////////////////
        public object BatchInterrupt
        {
            get {return this.batchInterrupt;}
        }
        /////////////////////////////////////////////////////////////////////////////


        //////////////////////////////////////////////////////////////////////
        /// <summary>Read only accessor for BatchContentType</summary> 
        //////////////////////////////////////////////////////////////////////
        public object BatchContentType
        {
            get {return this.batchContentType;}
        }
        /////////////////////////////////////////////////////////////////////////////


        //////////////////////////////////////////////////////////////////////
        /// <summary>Read only accessor for BatchStatusCode</summary> 
        //////////////////////////////////////////////////////////////////////
        public object BatchStatusCode
        {
            get {return this.batchStatusCode;}
        }
        /////////////////////////////////////////////////////////////////////////////


        //////////////////////////////////////////////////////////////////////
        /// <summary>Read only accessor for BatchErrors</summary> 
        //////////////////////////////////////////////////////////////////////
        public object BatchErrors
        {
            get {return this.batchErrors;}
        }
        /////////////////////////////////////////////////////////////////////////////

        //////////////////////////////////////////////////////////////////////
        /// <summary>Read only accessor for BatchError</summary> 
        //////////////////////////////////////////////////////////////////////
        public object BatchError
        {
            get {return this.batchError;}
        }
        /////////////////////////////////////////////////////////////////////////////

        //////////////////////////////////////////////////////////////////////
        /// <summary>Read only accessor for BatchReason</summary> 
        //////////////////////////////////////////////////////////////////////
        public object BatchReason
        {
            get {return this.batchReason;}
        }
        /////////////////////////////////////////////////////////////////////////////


        //////////////////////////////////////////////////////////////////////
        /// <summary>Read only accessor for BatchReason</summary> 
        //////////////////////////////////////////////////////////////////////
        public object BatchField
        {
            get {return this.batchField;}
        }
        /////////////////////////////////////////////////////////////////////////////

        //////////////////////////////////////////////////////////////////////
        /// <summary>Read only accessor for BatchUnprocessed</summary> 
        //////////////////////////////////////////////////////////////////////
        public object BatchUnprocessed
        {
            get {return this.batchUnprocessed;}
        }
        /////////////////////////////////////////////////////////////////////////////

        //////////////////////////////////////////////////////////////////////
        /// <summary>Read only accessor for BatchOperationType</summary> 
        //////////////////////////////////////////////////////////////////////
        public object BatchOperationType
        {
            get {return this.batchOperationType;}
        }
        /////////////////////////////////////////////////////////////////////////////


        //////////////////////////////////////////////////////////////////////
        /// <summary>Read only accessor for BatchSuccessCount</summary> 
        //////////////////////////////////////////////////////////////////////
        public object BatchSuccessCount
        {
            get {return this.batchSuccessCount;}
        }
        /////////////////////////////////////////////////////////////////////////////


        //////////////////////////////////////////////////////////////////////
        /// <summary>Read only accessor for BatchFailureCount</summary> 
        //////////////////////////////////////////////////////////////////////
        public object BatchFailureCount
        {
            get {return this.batchFailureCount;}
        }
        /////////////////////////////////////////////////////////////////////////////

        //////////////////////////////////////////////////////////////////////
        /// <summary>Read only accessor for BatchParsedCount</summary> 
        //////////////////////////////////////////////////////////////////////
        public object BatchParsedCount
        {
            get {return this.batchParsedCount;}
        }
        /////////////////////////////////////////////////////////////////////////////

        //////////////////////////////////////////////////////////////////////
        /// <summary>Read only accessor for totalResults</summary> 
        //////////////////////////////////////////////////////////////////////
        public object TotalResults
        {
            get {return this.totalResults;}
        }
        /////////////////////////////////////////////////////////////////////////////


        //////////////////////////////////////////////////////////////////////
        /// <summary>Read only accessor for startIndex</summary> 
        //////////////////////////////////////////////////////////////////////
        public object StartIndex
        {
            get {return this.startIndex;}
        }
        /////////////////////////////////////////////////////////////////////////////
        //////////////////////////////////////////////////////////////////////
        /// <summary>Read only accessor for itemsPerPage</summary> 
        //////////////////////////////////////////////////////////////////////
        public object ItemsPerPage
        {
            get {return this.itemsPerPage;}
        }
        /////////////////////////////////////////////////////////////////////////////
        //////////////////////////////////////////////////////////////////////
        /// <summary>Read only accessor for parameter</summary> 
        //////////////////////////////////////////////////////////////////////
        static public string Parameter
        {
            get {return "parameter";}
        }
        /////////////////////////////////////////////////////////////////////////////

        //////////////////////////////////////////////////////////////////////
        /// <summary>Read only accessor for baseUri</summary> 
        //////////////////////////////////////////////////////////////////////
        public object Base
        {
            get {return this.baseUri;}
        }
        /////////////////////////////////////////////////////////////////////////////

        //////////////////////////////////////////////////////////////////////
        /// <summary>Read only accessor for language</summary> 
        //////////////////////////////////////////////////////////////////////
        public object Language
        {
            get {return this.language;}
        }
        /////////////////////////////////////////////////////////////////////////////
        

        #endregion end of Read only accessors

    }
    /////////////////////////////////////////////////////////////////////////////

}
/////////////////////////////////////////////////////////////////////////////

 
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.