HTAncMan.h
上传用户:zlh9724
上传日期:2007-01-04
资源大小:1991k
文件大小:4k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. /*                                                                              Anchor Object
  2.                                THE ANCHOR AND LINK OBJECTS
  3.                                              
  4.  */
  5. /*
  6. **      (c) COPYRIGHT MIT 1995.
  7. **      Please first read the full copyright statement in the file COPYRIGH.
  8. */
  9. /*
  10.    This module is the private part of the anchor object. It has the functions declarations
  11.    that are private to the Library and that shouldn't be used by applications. See also
  12.    the public part of the declarition in the HTAnchorModule.
  13.    
  14.  */
  15. #ifndef HTANCMAN_H
  16. #define HTANCMAN_H
  17. #include "HTAnchor.h"
  18. #include "HTList.h"
  19. #include "HTAtom.h"
  20. #include "HTMethod.h"
  21. /*
  22. The Link Object
  23.    Link Objects bind together anchor objects
  24.    
  25.  */
  26. struct _HTLink {
  27.     HTAnchor *          dest;              /* The anchor to which this leads */
  28.     HTLinkType          type;                      /* Semantics of this link */
  29.     HTMethod            method;            /* Method for this link, e.g. PUT */
  30.     HTLinkResult        result;    /* Result of any attempt to get this link */
  31. };
  32. /*
  33. The Anchor Object
  34.    We have a set of Anchor objects which of course should be sub classes - but - hey -
  35.    this is C - what do you expect!
  36.    
  37.   GENERIC ANCHOR TYPE
  38.   
  39.    This is the super class of anchors. We often use this as an argument to the functions
  40.    that both accept parent anchors and child anchors. We separate the first link from the
  41.    others to avoid too many small mallocs involved by a list creation. Most anchors only
  42.    point to one place.
  43.    
  44.  */
  45. struct _HTAnchor {
  46.   HTLink        mainLink;       /* Main (or default) destination of this */
  47.   HTList *      links;          /* List of extra links from this, if any */
  48.   HTParentAnchor * parent;      /* Parent of this anchor (self for adults) */
  49. };
  50. /*
  51.   ANCHOR FOR A PARENT OBJECT
  52.   
  53.    These anchors points to the whole contents of a graphic object (document). The parent
  54.    anchor of a parent anchor is itself. The parent anchor now contains all meta
  55.    information about the object. This is largely the entity headers in the HTTP
  56.    specification.
  57.    
  58.  */
  59. struct _HTParentAnchor {
  60.   /* Common part from the generic anchor structure */
  61.   HTLink        mainLink;       /* Main (or default) destination of this */
  62.   HTList *      links;          /* List of extra links from this, if any */
  63.   HTParentAnchor * parent;      /* Parent of this anchor (self) */
  64.   /* ParentAnchor-specific information */
  65.   HTList *      children;       /* Subanchors of this, if any */
  66.   HTList *      sources;        /* List of anchors pointing to this, if any */
  67.   void *        document;       /* The document within this is an anchor */
  68.   char *        physical;       /* Physical address */
  69.   BOOL          cacheHit;       /* Yes, if cached object found */
  70.   char *        address;        /* Absolute address of this node */
  71.   BOOL          isIndex;        /* Acceptance of a keyword search */
  72.   /* Entity header fields */
  73.   BOOL          header_parsed;  /* Are we done parsing? */
  74.   char *        title;
  75.   int           methods;        /* Allowed methods (bit-flag) */
  76.   HTEncoding    content_encoding;
  77.   HTLanguage    content_language;       /* @@@ SHOULD BE LIST @@@ */
  78.   long int      content_length;
  79.   HTCte         cte;            /* Content-Transfer-Encoding */
  80.   HTFormat      content_type;
  81.   HTCharset     charset;        /* Parameter to content-type */
  82.   HTLevel       level;          /* Parameter to content-type `text/html' */
  83.   time_t        date;           /* When was the request issued */
  84.   time_t        expires;        /* When does the copy expire */
  85.   time_t        last_modified;
  86.   char *        derived_from;   /* Opaque string */
  87.   char *        version;        /* Opaque string */
  88.   /* List of unknown headers coming in from the network. Use the field in the
  89.      request structure for sending test headers. */
  90.   HTList *      extra_headers;
  91. };
  92. /*
  93.   ANCHOR FOR A CHILD OBJECT
  94.   
  95.    A child anchor is a anchor object that points to a subpart of a graphic object
  96.    (document)
  97.    
  98.  */
  99. struct _HTChildAnchor {
  100.   /* Common part from the generic anchor structure */
  101.   HTLink        mainLink;       /* Main (or default) destination of this */
  102.   HTList *      links;          /* List of extra links from this, if any */
  103.   HTParentAnchor * parent;      /* Parent of this anchor */
  104.   /* ChildAnchor-specific information */
  105.   char *        tag;            /* Address of this anchor relative to parent */
  106. };
  107. /*
  108.  */
  109. #endif /* HTANCMAN_H */
  110. /*
  111.     */