blob: 999b67733f946a367c2a4f7aef6a2f1aacac6c33 [file] [log] [blame]
Chris Sosa45d9f102014-03-24 11:18:54 -07001// Copyright 2014 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef BUFFET_MIME_UTILS_H_
6#define BUFFET_MIME_UTILS_H_
7
8#include <string>
Alex Vakulenkoaf23b322014-05-08 16:25:45 -07009#include <utility>
Chris Sosa45d9f102014-03-24 11:18:54 -070010#include <vector>
11
Alex Vakulenkoaf23b322014-05-08 16:25:45 -070012#include <base/basictypes.h>
13
14namespace buffet {
Chris Sosa45d9f102014-03-24 11:18:54 -070015
16namespace mime {
17
18namespace types {
19 // Main MIME type categories
Alex Vakulenkoaf23b322014-05-08 16:25:45 -070020 extern const char kApplication[]; // application
21 extern const char kAudio[]; // audio
22 extern const char kImage[]; // image
23 extern const char kMessage[]; // message
24 extern const char kMultipart[]; // multipart
25 extern const char kText[]; // test
26 extern const char kVideo[]; // video
Chris Sosa45d9f102014-03-24 11:18:54 -070027}
28
29namespace parameters {
30 // Common MIME parameters
Alex Vakulenkoaf23b322014-05-08 16:25:45 -070031 extern const char kCharset[]; // charset=...
Chris Sosa45d9f102014-03-24 11:18:54 -070032}
33
34namespace image {
35 // Common image MIME types
Alex Vakulenkoaf23b322014-05-08 16:25:45 -070036 extern const char kJpeg[]; // image/jpeg
37 extern const char kPng[]; // image/png
38 extern const char kBmp[]; // image/bmp
39 extern const char kTiff[]; // image/tiff
40 extern const char kGif[]; // image/gif
Chris Sosa45d9f102014-03-24 11:18:54 -070041}
42
43namespace text {
44 // Common text MIME types
Alex Vakulenkoaf23b322014-05-08 16:25:45 -070045 extern const char kPlain[]; // text/plain
46 extern const char kHtml[]; // text/html
47 extern const char kXml[]; // text/xml
Chris Sosa45d9f102014-03-24 11:18:54 -070048}
49
50namespace application {
51 // Common application MIME types
Alex Vakulenkoaf23b322014-05-08 16:25:45 -070052 extern const char kOctet_stream[]; // application/octet-stream
53 extern const char kJson[]; // application/json
54 extern const char kWwwFormUrlEncoded[]; // application/x-www-form-urlencoded
Chris Sosa45d9f102014-03-24 11:18:54 -070055}
56
57typedef std::vector<std::pair<std::string, std::string>> Parameters;
58
59// Combine a MIME type, subtype and parameters into a MIME string.
60// e.g. Combine("text", "plain", {{"charset", "utf-8"}}) will give:
61// "text/plain; charset=utf-8"
Alex Vakulenkob8ba5952014-04-17 11:35:56 -070062std::string Combine(const std::string& type, const std::string& subtype,
Alex Vakulenkobda220a2014-04-18 15:25:44 -070063 const Parameters& parameters = {}) WARN_UNUSED_RESULT;
Chris Sosa45d9f102014-03-24 11:18:54 -070064
65// Splits a MIME string into type and subtype.
66// "text/plain;charset=utf-8" => ("text", "plain")
Alex Vakulenkob8ba5952014-04-17 11:35:56 -070067bool Split(const std::string& mime_string,
Chris Sosa45d9f102014-03-24 11:18:54 -070068 std::string* type, std::string* subtype);
69
70// Splits a MIME string into type, subtype, and parameters.
71// "text/plain;charset=utf-8" => ("text", "plain", {{"charset","utf-8"}})
Alex Vakulenkob8ba5952014-04-17 11:35:56 -070072bool Split(const std::string& mime_string,
Chris Sosa45d9f102014-03-24 11:18:54 -070073 std::string* type, std::string* subtype, Parameters* parameters);
74
75// Returns the MIME type from MIME string.
76// "text/plain;charset=utf-8" => "text"
Alex Vakulenkob8ba5952014-04-17 11:35:56 -070077std::string GetType(const std::string& mime_string);
Chris Sosa45d9f102014-03-24 11:18:54 -070078
79// Returns the MIME sub-type from MIME string.
80// "text/plain;charset=utf-8" => "plain"
Alex Vakulenkob8ba5952014-04-17 11:35:56 -070081std::string GetSubtype(const std::string& mime_string);
Chris Sosa45d9f102014-03-24 11:18:54 -070082
83// Returns the MIME parameters from MIME string.
84// "text/plain;charset=utf-8" => {{"charset","utf-8"}}
Alex Vakulenkob8ba5952014-04-17 11:35:56 -070085Parameters GetParameters(const std::string& mime_string);
Chris Sosa45d9f102014-03-24 11:18:54 -070086
87// Removes parameters from a MIME string
88// "text/plain;charset=utf-8" => "text/plain"
Alex Vakulenkobda220a2014-04-18 15:25:44 -070089std::string RemoveParameters(const std::string& mime_string) WARN_UNUSED_RESULT;
Chris Sosa45d9f102014-03-24 11:18:54 -070090
91// Appends a parameter to a MIME string.
92// "text/plain" => "text/plain; charset=utf-8"
Alex Vakulenkob8ba5952014-04-17 11:35:56 -070093std::string AppendParameter(const std::string& mime_string,
94 const std::string& paramName,
Alex Vakulenkobda220a2014-04-18 15:25:44 -070095 const std::string& paramValue) WARN_UNUSED_RESULT;
Chris Sosa45d9f102014-03-24 11:18:54 -070096
97// Returns the value of a parameter on a MIME string (empty string if missing).
98// ("text/plain;charset=utf-8","charset") => "utf-8"
Alex Vakulenkob8ba5952014-04-17 11:35:56 -070099std::string GetParameterValue(const std::string& mime_string,
100 const std::string& paramName);
Chris Sosa45d9f102014-03-24 11:18:54 -0700101
Alex Vakulenkoaf23b322014-05-08 16:25:45 -0700102} // namespace mime
103} // namespace buffet
Chris Sosa45d9f102014-03-24 11:18:54 -0700104
Alex Vakulenkoaf23b322014-05-08 16:25:45 -0700105#endif // BUFFET_MIME_UTILS_H_