/* * aegis - project change supervisor * Copyright (C) 1999, 2001 Peter Miller; * All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA. * * MANIFEST: functions to manipulate opens */ #include #include #include #include #include #include #include #include #include #include input_ty * aedist_open(ifn, subject_p) string_ty *ifn; string_ty **subject_p; { input_ty *ifp; input_ty *cpio_p; rfc822_header_ty *hp; string_ty *s; /* * Open the input file and verify the format. */ os_become_orig(); ifp = input_file_open(ifn); hp = rfc822_header_read(ifp); s = rfc822_header_query(hp, "mime-version"); if (s) { string_ty *content_type; s = rfc822_header_query(hp, "content-type"); content_type = str_from_c("application/aegis-change-set"); if (!s || !str_equal(s, content_type)) input_fatal_error(ifp, "wrong content type"); str_free(content_type); } /* * Deal with the content encoding. */ s = rfc822_header_query(hp, "content-transfer-encoding"); if (s) { static string_ty *base64; static string_ty *uuencode; /* * We could cope with other encodings here, * if we ever need to. */ if (!base64) base64 = str_from_c("base64"); if (!uuencode) uuencode = str_from_c("uuencode"); if (str_equal(s, base64)) { /* * The rest of the input is in base64 encoding. */ ifp = input_base64(ifp, 1); } else if (str_equal(s, uuencode)) { /* * The rest of the input is uuencoded. */ ifp = input_uudecode(ifp, 1); } else { sub_context_ty *scp; string_ty *tmp; scp = sub_context_new(); sub_var_set_string(scp, "Name", s); tmp = subst_intl ( scp, i18n("content transfer encoding $name unknown") ); input_fatal_error(ifp, tmp->str_text); str_free(tmp); sub_context_delete(scp); } } /* * The contents we are interested in are * a gzipped cpio archive. */ ifp = input_gunzip(ifp); cpio_p = input_cpio(ifp); os_become_undo(); /* * Set the subject if they are interested. */ if (subject_p) { s = rfc822_header_query(hp, "subject"); if (s && s->str_length) *subject_p = str_copy(s); else *subject_p = str_from_c("No Subject"); } /* * clean up and go home */ rfc822_header_delete(hp); return cpio_p; }