File:  [Public] / libwww / Library / src / HTAncMan.html
Revision 2.9: download - view: text, annotated - select for diffs
Thu Jul 18 03:56:26 1996 UTC (27 years, 10 months ago) by frystyk
Branches: MAIN
CVS tags: Release-4-1b5, Release-4-1b4, Release-4-1b3, HEAD
next version

<HTML>
<HEAD>
<TITLE>W3C Reference Library libwww Anchor Object</TITLE>
<!-- Changed by: Henrik Frystyk Nielsen, 16-Jul-1996 -->
</HEAD>
<BODY>

<H1>The Anchor Class Definition</H1>

<PRE>
/*
**	(c) COPYRIGHT MIT 1995.
**	Please first read the full copyright statement in the file COPYRIGH.
*/
</PRE>

This module is the private part of the anchor object. It has the
functions declarations that are private to the Library and that
shouldn't be used by applications. See also the public part of the
declarition in the <A HREF="HTAnchor.html">HTAnchorModule</A>.<P>

<PRE>
#ifndef HTANCMAN_H
#define HTANCMAN_H

#include "HTAnchor.h"
#include "HTList.h"
#include "HTAtom.h"
#include "HTMethod.h"
</PRE>

We have a set of Anchor objects which of course should be sub classes
- but - hey - this is C - what do you expect!

<A NAME="Generic"><H3>Generic Anchor type</H3></A>

This is the super class of anchors. We often use this as an argument
to the functions that both accept parent anchors and child anchors. We
separate the first link from the others to avoid too many small
mallocs involved by a list creation. Most anchors only point to one
place.

<PRE>
struct _HTAnchor {
  HTLink	mainLink;	/* Main (or default) destination of this */
  HTList *	links;  	/* List of extra links from this, if any */
  HTParentAnchor * parent;	/* Parent of this anchor (self for adults) */
};
</PRE>

<A NAME="parent"><H3>Anchor for a Parent Object</H3></A>

These anchors points to the whole contents of a graphic object
(document). The parent anchor of a parent anchor is itself. The parent
anchor now contains all meta information about the object. This is
largely the entity headers in the HTTP specification.

<PRE>
struct _HTParentAnchor {
  /* Common part from the generic anchor structure */
  HTLink	mainLink;	/* Main (or default) destination of this */
  HTList *	links;  	/* List of extra links from this, if any */
  HTParentAnchor * parent;	/* Parent of this anchor (self) */

  /* ParentAnchor-specific information */
  HTList **	children;	/* Hash of subanchors of this, if any */
  HTList *	sources;	/* List of anchors pointing to this, if any */
  void *	document;	/* The document within this is an anchor */
  char *	physical;	/* Physical address */
  BOOL		cacheHit;	/* Yes, if cached object found */
  char * 	address;	/* Absolute address of this node */
  BOOL		isIndex;	/* Acceptance of a keyword search */

  BOOL		header_parsed;	/* Are we done parsing? */

  /* We keep a list of variants of this anchor, if any */
  HTList *	variants;

  /* Entity header fields */
  char *	title;
  HTMethod	methods;	/* Allowed methods (bit-flag) */

  HTFormat	content_type;	/* Content type */
  HTAssocList *	type_parameters;/* Content type parameters (charset etc.) */

  char *	content_base;
  HTList *	content_encoding;
  HTList *	content_language;
  long int	content_length;
  char *	content_location;
  char *	content_md5;

  HTEncoding	transfer;	/* Content-Transfer-Encoding */

  time_t	date;		/* When was the request issued */  
  time_t	expires;	/* When does the copy expire */
  time_t	last_modified;	/* When was this last modified */
  char * 	etag;		/* entity tag */

  char *	derived_from;	/* Opaque string */
  char *	version;	/* Opaque string */

  /* List of unknown headers coming in from the network. Use the field in the
     request structure for sending test headers. */
  HTList *	extra_headers;
};
</PRE>

<A NAME="child"><H3>Anchor for a Child Object</H3></A>

A child anchor is a anchor object that points to a subpart of a
graphic object (document)

<PRE>
struct _HTChildAnchor {
  /* Common part from the generic anchor structure */
  HTLink	mainLink;	/* Main (or default) destination of this */
  HTList *	links;  	/* List of extra links from this, if any */
  HTParentAnchor * parent;	/* Parent of this anchor */

  /* ChildAnchor-specific information */
  char * 	tag;		/* Address of this anchor relative to parent */
};
</PRE>

<PRE>
#endif /* HTANCMAN_H */
</PRE>

<HR>
<ADDRESS>
@(#) $Id: HTAncMan.html,v 2.9 1996/07/18 03:56:26 frystyk Exp $
</ADDRESS>
</BODY>
</HTML>




Webmaster