All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jruby.ext.openssl.impl.Mime Maven / Gradle / Ivy

There is a newer version: 0.8.14
Show newest version
/***** BEGIN LICENSE BLOCK *****
 * Version: CPL 1.0/GPL 2.0/LGPL 2.1
 *
 * The contents of this file are subject to the Common Public
 * License Version 1.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.eclipse.org/legal/cpl-v10.html
 *
 * 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.
 *
 * Copyright (C) 2008 Ola Bini 
 * 
 * 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 CPL, 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 CPL, the GPL or the LGPL.
 ***** END LICENSE BLOCK *****/
package org.jruby.ext.openssl.impl;

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

/**
 *
 * @author Ola Bini
 */
public interface Mime {
    Mime DEFAULT = new Mime() {
            private final static int MIME_START = 1;
            private final static int MIME_TYPE = 2;
            private final static int MIME_NAME = 3;
            private final static int MIME_VALUE = 4;
            private final static int MIME_QUOTE = 5;
            private final static int MIME_COMMENT = 6;

            private final static int MAX_SMLEN = 1024;

            /* c: static strip_start
             */
            private int stripStart(byte[] buffer, int start, int end) {
                byte c;
                for(int p = start; p= start; p--) {
                    mimeDebug("  p = "+p+", c = "+(char)buffer[p] + "(" + buffer[p] + ")");
                    c = buffer[p];
                    if(c == '"') {
                        if(p - 1 == start) {
                            return -1;
                        }
                        return p;
                    }
                    if(!Character.isWhitespace((char)c)) {
                        return p+1;
                    }
                }

                return -1;
            }

            /* c: static strip_ends
             */
            private String stripEnds(byte[] buffer, int start, int end) {
                start = stripStart(buffer, start, end);
                end = stripEnd(buffer, start, end);

                try {
                    return new String(buffer, start, end-start, "ISO8859-1");
                } catch(Exception e) {
                    return null;
                }
            }

            public void mimeDebug(String str) {
                //                System.err.println(str);
            }

            public List parseHeaders(BIO bio) throws IOException {
                mimeDebug("\n!!!!!!!!!!!!!!!!!\n" + bio + "\n^^^^^^^^^^^^^^^^^^^^^^^^\n"); 
                int state = 0;
                byte[] linebuf = new byte[MAX_SMLEN];
                int len = 0;
                String ntmp = null;
                int p, q;
                byte c;
                MimeHeader mhdr = null;
                int saveState = -1;

                List headers = new ArrayList();

                while((len = bio.gets(linebuf, MAX_SMLEN)) > 0) {
                    if(mhdr != null && Character.isWhitespace((char)linebuf[0])) {
                        state = MIME_NAME;
                    } else {
                        state = MIME_START;
                    }

                    for(p = 0, q = 0; p headers, String key) {
                for(MimeHeader hdr : headers) {
                    if(hdr.getName().equals(key)) {
                        return hdr;
                    }
                }

                return null;
            }

            public MimeParam findParam(MimeHeader header, String key) {
                for(MimeParam par : header.getParams()) {
                    if(par.getParamName().equals(key)) {
                        return par;
                    }
                }

                return null;
            }
        };


    /* c: mime_parse_hdr
     *
     */
    List parseHeaders(BIO bio) throws IOException; 

    /* c: mime_hdr_find
     *
     */
    MimeHeader findHeader(List headers, String key); 

    /* c: mime_param_find
     *
     */
    MimeParam findParam(MimeHeader header, String key); 
}// Mime




© 2015 - 2025 Weber Informatics LLC | Privacy Policy