summaryrefslogtreecommitdiffstats
path: root/src/parser/media_type.h
blob: c7fe348c5664099e9498f8dcc1b1c9fe4bbce3fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
    Copyright (C) 2005-2009  Michel de Boer <michel@twinklephone.com>

    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, see <https://www.gnu.org/licenses/>.
*/

/**
 * @file
 * Media MIME type definition.
 */

#ifndef _MEDIA_TYPE_H
#define _MEDIA_TYPE_H

#include <list>
#include <string>
#include "parameter.h"

using namespace std;

/** Media MIME type definition. */
class t_media {
public:
	string	type;		/**< main type */
	string	subtype;	/**< subtype */
	string	charset;	/**< Character set */
	float	q;		/**< quality factor */
	list<t_parameter> media_param_list; 	 /**< media paramters */
	list<t_parameter> accept_extension_list; /**< accept parameters */

	/** Constructor */
	t_media();

	/** 
	 * Constructor. 
	 * Construct object with a specic type and subtype.
	 * @param t [in] type
	 * @param s [in] subtype
	 */
	t_media(const string &t, const string &s);
	
	/**
	 * Constructor.
	 * Construct a media object from a mime type name
	 * @param mime_type [in] The mime type name, e.g. "text/plain"
	 */
	t_media(const string &mime_type);

	/**
	 * Add a parameter list.
	 * Method for parser to add the parsed parameter list l.
	 * l should start with optional media parameters followed
	 * by the q-paramter followed by accept parameters.
	 * @param l [in] The parameter list.
	 */
	void add_params(const list<t_parameter> &l);

	/**
	 * Encode as string.
	 * @return The encoded media type.
	 */
	string encode(void) const;
	
	/**
	 * Get the glob for a file name containing this MIME type.
	 * E.g. <wildcard>.txt for text/plain
	 * @return The file name extension.
	 */
	string get_file_glob(void) const;
};

#endif