/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (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.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is mozilla.org code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. * * Contributor(s): * * Alternatively, the contents of this file may be used under the terms of * either of the GNU General Public License Version 2 or later (the "GPL"), * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ #include "prmem.h" #include "plstr.h" #include "prlog.h" #include "nsCRT.h" #include "prio.h" #include "mimecont.h" #include "nsMimeStringResources.h" #define MIME_SUPERCLASS mimeObjectClass MimeDefClass(MimeContainer, MimeContainerClass, mimeContainerClass, &MIME_SUPERCLASS); static int MimeContainer_initialize (MimeObject *); static void MimeContainer_finalize (MimeObject *); static int MimeContainer_add_child (MimeObject *, MimeObject *); static int MimeContainer_parse_eof (MimeObject *, PRBool); static int MimeContainer_parse_end (MimeObject *, PRBool); static PRBool MimeContainer_displayable_inline_p (MimeObjectClass *clazz, MimeHeaders *hdrs); #if defined(DEBUG) && defined(XP_UNIX) static int MimeContainer_debug_print (MimeObject *, PRFileDesc *, PRInt32 depth); #endif static int MimeContainerClassInitialize(MimeContainerClass *clazz) { MimeObjectClass *oclass = (MimeObjectClass *) &clazz->object; NS_ASSERTION(!oclass->class_initialized, "1.1 19 Mar 1999 12:00"); oclass->initialize = MimeContainer_initialize; oclass->finalize = MimeContainer_finalize; oclass->parse_eof = MimeContainer_parse_eof; oclass->parse_end = MimeContainer_parse_end; oclass->displayable_inline_p = MimeContainer_displayable_inline_p; clazz->add_child = MimeContainer_add_child; #if defined(DEBUG) && defined(XP_UNIX) oclass->debug_print = MimeContainer_debug_print; #endif return 0; } static int MimeContainer_initialize (MimeObject *object) { /* This is an abstract class; it shouldn't be directly instantiated. */ NS_ASSERTION(object->clazz != (MimeObjectClass *) &mimeContainerClass, "1.1 19 Mar 1999 12:00"); return ((MimeObjectClass*)&MIME_SUPERCLASS)->initialize(object); } static void MimeContainer_finalize (MimeObject *object) { MimeContainer *cont = (MimeContainer *) object; /* Do this first so that children have their parse_eof methods called in forward order (0-N) but are destroyed in backward order (N-0) */ if (!object->closed_p) object->clazz->parse_eof (object, PR_FALSE); if (!object->parsed_p) object->clazz->parse_end (object, PR_FALSE); if (cont->children) { int i; for (i = cont->nchildren-1; i >= 0; i--) { MimeObject *kid = cont->children[i]; if (kid) mime_free(kid); cont->children[i] = 0; } PR_FREEIF(cont->children); cont->nchildren = 0; } ((MimeObjectClass*)&MIME_SUPERCLASS)->finalize(object); } static int MimeContainer_parse_eof (MimeObject *object, PRBool abort_p) { MimeContainer *cont = (MimeContainer *) object; int status; /* We must run all of this object's parent methods first, to get all the data flushed down its stream, so that the children's parse_eof methods can access it. We do not access *this* object again after doing this, only its children. */ status = ((MimeObjectClass*)&MIME_SUPERCLASS)->parse_eof(object, abort_p); if (status < 0) return status; if (cont->children) { int i; for (i = 0; i < cont->nchildren; i++) { MimeObject *kid = cont->children[i]; if (kid && !kid->closed_p) { int lstatus = kid->clazz->parse_eof(kid, abort_p); if (lstatus < 0) return lstatus; } } } return 0; } static int MimeContainer_parse_end (MimeObject *object, PRBool abort_p) { MimeContainer *cont = (MimeContainer *) object; int status; /* We must run all of this object's parent methods first, to get all the data flushed down its stream, so that the children's parse_eof methods can access it. We do not access *this* object again after doing this, only its children. */ status = ((MimeObjectClass*)&MIME_SUPERCLASS)->parse_end(object, abort_p); if (status < 0) return status; if (cont->children) { int i; for (i = 0; i < cont->nchildren; i++) { MimeObject *kid = cont->children[i]; if (kid && !kid->parsed_p) { int lstatus = kid->clazz->parse_end(kid, abort_p); if (lstatus < 0) return lstatus; } } } return 0; } static int MimeContainer_add_child (MimeObject *parent, MimeObject *child) { MimeContainer *cont = (MimeContainer *) parent; MimeObject **old_kids, **new_kids; NS_ASSERTION(parent && child, "1.1 19 Mar 1999 12:00"); if (!parent || !child) return -1; old_kids = cont->children; new_kids = (MimeObject **)PR_MALLOC(sizeof(MimeObject *) * (cont->nchildren + 1)); if (!new_kids) return MIME_OUT_OF_MEMORY; if (cont->nchildren > 0) memcpy(new_kids, old_kids, sizeof(MimeObject *) * cont->nchildren); new_kids[cont->nchildren] = child; PR_Free(old_kids); cont->children = new_kids; cont->nchildren++; child->parent = parent; /* Copy this object's options into the child. */ child->options = parent->options; return 0; } static PRBool MimeContainer_displayable_inline_p (MimeObjectClass *clazz, MimeHeaders *hdrs) { return PR_TRUE; } #if defined(DEBUG) && defined(XP_UNIX) static int MimeContainer_debug_print (MimeObject *obj, PRFileDesc *stream, PRInt32 depth) { MimeContainer *cont = (MimeContainer *) obj; int i; char *addr = mime_part_address(obj); for (i=0; i < depth; i++) PR_Write(stream, " ", 2); /* PR_Write(stream, "<%s %s (%d kid%s) 0x%08X>\n", obj->clazz->class_name, addr ? addr : "???", cont->nchildren, (cont->nchildren == 1 ? "" : "s"), (PRUint32) cont); */ PR_FREEIF(addr); /* if (cont->nchildren > 0) fprintf(stream, "\n"); */ for (i = 0; i < cont->nchildren; i++) { MimeObject *kid = cont->children[i]; int status = kid->clazz->debug_print (kid, stream, depth+1); if (status < 0) return status; } /* if (cont->nchildren > 0) fprintf(stream, "\n"); */ return 0; } #endif