Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 1 | // 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 Vakulenko | af23b32 | 2014-05-08 16:25:45 -0700 | [diff] [blame] | 9 | #include <utility> |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 10 | #include <vector> |
| 11 | |
Alex Vakulenko | af23b32 | 2014-05-08 16:25:45 -0700 | [diff] [blame] | 12 | #include <base/basictypes.h> |
| 13 | |
| 14 | namespace buffet { |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 15 | |
| 16 | namespace mime { |
| 17 | |
| 18 | namespace types { |
| 19 | // Main MIME type categories |
Alex Vakulenko | af23b32 | 2014-05-08 16:25:45 -0700 | [diff] [blame] | 20 | 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 Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 27 | } |
| 28 | |
| 29 | namespace parameters { |
| 30 | // Common MIME parameters |
Alex Vakulenko | af23b32 | 2014-05-08 16:25:45 -0700 | [diff] [blame] | 31 | extern const char kCharset[]; // charset=... |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 32 | } |
| 33 | |
| 34 | namespace image { |
| 35 | // Common image MIME types |
Alex Vakulenko | af23b32 | 2014-05-08 16:25:45 -0700 | [diff] [blame] | 36 | 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 Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | namespace text { |
| 44 | // Common text MIME types |
Alex Vakulenko | af23b32 | 2014-05-08 16:25:45 -0700 | [diff] [blame] | 45 | extern const char kPlain[]; // text/plain |
| 46 | extern const char kHtml[]; // text/html |
| 47 | extern const char kXml[]; // text/xml |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | namespace application { |
| 51 | // Common application MIME types |
Alex Vakulenko | af23b32 | 2014-05-08 16:25:45 -0700 | [diff] [blame] | 52 | 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 Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | typedef 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 Vakulenko | b8ba595 | 2014-04-17 11:35:56 -0700 | [diff] [blame] | 62 | std::string Combine(const std::string& type, const std::string& subtype, |
Alex Vakulenko | bda220a | 2014-04-18 15:25:44 -0700 | [diff] [blame] | 63 | const Parameters& parameters = {}) WARN_UNUSED_RESULT; |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 64 | |
| 65 | // Splits a MIME string into type and subtype. |
| 66 | // "text/plain;charset=utf-8" => ("text", "plain") |
Alex Vakulenko | b8ba595 | 2014-04-17 11:35:56 -0700 | [diff] [blame] | 67 | bool Split(const std::string& mime_string, |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 68 | 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 Vakulenko | b8ba595 | 2014-04-17 11:35:56 -0700 | [diff] [blame] | 72 | bool Split(const std::string& mime_string, |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 73 | 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 Vakulenko | b8ba595 | 2014-04-17 11:35:56 -0700 | [diff] [blame] | 77 | std::string GetType(const std::string& mime_string); |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 78 | |
| 79 | // Returns the MIME sub-type from MIME string. |
| 80 | // "text/plain;charset=utf-8" => "plain" |
Alex Vakulenko | b8ba595 | 2014-04-17 11:35:56 -0700 | [diff] [blame] | 81 | std::string GetSubtype(const std::string& mime_string); |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 82 | |
| 83 | // Returns the MIME parameters from MIME string. |
| 84 | // "text/plain;charset=utf-8" => {{"charset","utf-8"}} |
Alex Vakulenko | b8ba595 | 2014-04-17 11:35:56 -0700 | [diff] [blame] | 85 | Parameters GetParameters(const std::string& mime_string); |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 86 | |
| 87 | // Removes parameters from a MIME string |
| 88 | // "text/plain;charset=utf-8" => "text/plain" |
Alex Vakulenko | bda220a | 2014-04-18 15:25:44 -0700 | [diff] [blame] | 89 | std::string RemoveParameters(const std::string& mime_string) WARN_UNUSED_RESULT; |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 90 | |
| 91 | // Appends a parameter to a MIME string. |
| 92 | // "text/plain" => "text/plain; charset=utf-8" |
Alex Vakulenko | b8ba595 | 2014-04-17 11:35:56 -0700 | [diff] [blame] | 93 | std::string AppendParameter(const std::string& mime_string, |
| 94 | const std::string& paramName, |
Alex Vakulenko | bda220a | 2014-04-18 15:25:44 -0700 | [diff] [blame] | 95 | const std::string& paramValue) WARN_UNUSED_RESULT; |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 96 | |
| 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 Vakulenko | b8ba595 | 2014-04-17 11:35:56 -0700 | [diff] [blame] | 99 | std::string GetParameterValue(const std::string& mime_string, |
| 100 | const std::string& paramName); |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 101 | |
Alex Vakulenko | af23b32 | 2014-05-08 16:25:45 -0700 | [diff] [blame] | 102 | } // namespace mime |
| 103 | } // namespace buffet |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 104 | |
Alex Vakulenko | af23b32 | 2014-05-08 16:25:45 -0700 | [diff] [blame] | 105 | #endif // BUFFET_MIME_UTILS_H_ |