Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Unified Diff: runtime/bin/http.dart

Issue 10407002: Add special handling of the content type HTTP header (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/bin/http_impl.dart » ('j') | runtime/bin/http_impl.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/http.dart
diff --git a/runtime/bin/http.dart b/runtime/bin/http.dart
index b0d01d3d03dfc806e0627a2bfe3b9c0b455fa6bd..8679c01edf840a84b1e2cb3582592dc67c86dbd6 100644
--- a/runtime/bin/http.dart
+++ b/runtime/bin/http.dart
@@ -299,6 +299,80 @@ interface HttpHeaders default _HttpHeaders {
* connection.
*/
int port;
+
+ /**
+ * Gets and sets the content type.
+ */
+ ContentType contentType;
Anders Johnsen 2012/05/21 07:37:30 IMO, this is a good way of exposing this.
Søren Gjesse 2012/05/21 11:11:06 Thanks!
+}
+
+
+/**
+ * Representation of a header value in the form:
+ *
+ * [:value; parameter1=value1; parameter2=value2:]
+ */
+interface HeaderValue default _HeaderValue {
Anders Johnsen 2012/05/21 07:37:30 The name HeaderValue confuses me. It sounds as it
Mads Ager (google) 2012/05/21 07:40:39 Should we expose this interface? At this point onl
Søren Gjesse 2012/05/21 11:11:06 ContentType extend HeaderValue. It should be possi
Søren Gjesse 2012/05/21 11:11:06 Currently this interface is extended by ContentTyp
+ /**
+ * Creates a new header value object setting the value.
+ */
+ HeaderValue([String value]);
+
+ /**
+ * Creates a new header value object from parsing a header value.
Mads Ager (google) 2012/05/21 07:40:39 What is the format of the input string? Does it co
Søren Gjesse 2012/05/21 11:11:06 Added example to interface description.
+ */
+ HeaderValue.fromString(String value);
+
+ /**
+ * Gets and sets the header value.
+ */
+ String value;
Anders Johnsen 2012/05/21 07:37:30 Have a toString that maps to the full content?
Søren Gjesse 2012/05/21 11:11:06 toString was already there. Documentation added.
+
+ /**
+ * Gets the map of parameters.
+ */
+ Map<String, String> get parameters();
+}
+
+
+/**
+ * Representation of a content type.
+ */
+interface ContentType extends HeaderValue default _ContentType {
Anders Johnsen 2012/05/21 07:37:30 Here, I think we should have a toString as well.
Søren Gjesse 2012/05/21 11:11:06 toString is now documented in the HeaderValue inte
+ /**
+ * Creates a new content type object setting the primary type and
+ * sub type. If either is not passed their values will be the empty
+ * string.
+ */
+ ContentType([String primaryType, String subType]);
+
+ /**
+ * Creates a new content type object from parsing a Content-Type
+ * header value. As primary type, sub type and parameter names and
Mads Ager (google) 2012/05/21 07:40:39 Maybe give a concrete example of a Content-Type he
Søren Gjesse 2012/05/21 11:11:06 Done.
+ * values are not case sensitive all these values will be converted
+ * to lower case.
+ */
+ ContentType.fromString(String value);
+
+ /**
+ * Gets and sets the content type in the form "primaryType/subType".
+ */
+ String value;
+
+ /**
+ * Gets and sets the primary type.
+ */
+ String primaryType;
+
+ /**
+ * Gets and sets the sub type.
+ */
+ String subType;
+
+ /**
+ * Gets and sets the character set.
Mads Ager (google) 2012/05/21 07:40:39 Can we specify the valid values in the interface?
Søren Gjesse 2012/05/21 11:11:06 This is not really possible.
+ */
+ String charset;
}
« no previous file with comments | « no previous file | runtime/bin/http_impl.dart » ('j') | runtime/bin/http_impl.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698