-
Notifications
You must be signed in to change notification settings - Fork 146
Expand file tree
/
Copy pathFormDataStream.cs
More file actions
168 lines (148 loc) · 5.57 KB
/
Copy pathFormDataStream.cs
File metadata and controls
168 lines (148 loc) · 5.57 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
using System;
using System.IO;
using System.Text;
using System.Collections.Generic;
namespace UnityHTTP {
public class FormPart {
byte[] header;
Stream contents;
int position = 0;
public FormPart(string fieldName, string mimeType, string boundary, Stream contents, string fileName=null){
string filenameheader = "";
if (fileName != null){
filenameheader = "; filename=\"" + fileName +"\"";
}
header = Encoding.ASCII.GetBytes(
"\r\n--" + boundary + "\r\n" +
"Content-Type: " + mimeType + "\r\n" +
"Content-disposition: form-data; name=\"" + fieldName + "\"" + filenameheader + "\r\n\r\n"
);
this.contents = contents;
}
public long Length {
get {
return header.Length + contents.Length;
}
}
public int Read(byte[] buffer, int offset, int size){
int writed = 0;
int bytesToWrite;
if (position < header.Length){
bytesToWrite = (int)(header.Length - position) > size ? size : (int)(header.Length - position);
Array.Copy (
header, // from header
position, // started from position
buffer, // to buffer
offset, // started with offset
bytesToWrite
);
writed += bytesToWrite;
position += bytesToWrite;
}
if (writed >= size){
return writed;
}
bytesToWrite = contents.Read(buffer, writed + offset, size - writed);
writed += bytesToWrite;
position += bytesToWrite;
return writed;
}
public void Dispose(){
header = null;
contents.Close();
}
}
public class FormDataStream: Stream {
long position = 0;
List<FormPart> parts = new List<FormPart>();
bool dirty = false;
byte[] footer;
string boundary;
public FormDataStream(string boundary){
this.boundary = boundary;
footer = Encoding.ASCII.GetBytes("\r\n--" + boundary + "--\r\n");
}
public override bool CanRead { get { return true; } }
public override bool CanSeek { get { return false; } }
public override bool CanTimeout { get { return false; } }
public override bool CanWrite { get { return false; } }
public override int ReadTimeout { get { return 0; } set { } }
public override int WriteTimeout { get { return 0; } set { } }
public override long Position {
get {
return position;
}
set {
throw new NotImplementedException("FormDataStream is non-seekable stream");
}
}
public override long Length {
get {
if (parts.Count == 0){
return 0;
}
dirty = true;
long len = 0;
foreach (var part in parts){
len += part.Length;
}
return len + footer.Length;
}
}
public override void Flush(){
throw new NotImplementedException("FormDataStream is readonly stream");
}
public override int Read(byte[] buffer, int offset, int count){
dirty = true;
int writed = 0;
int bytesToWrite = 0;
// write parts
long partsSize = 0;
foreach (var part in parts){
partsSize += part.Length;
if (position > partsSize){
continue;
}
bytesToWrite = part.Read(buffer, writed + offset, count - writed);
writed += bytesToWrite;
position += bytesToWrite;
if (writed >= count){
return count;
}
}
// write footer
bytesToWrite = count - writed > footer.Length? footer.Length : count - writed;
Array.Copy (footer, 0, buffer, writed + offset, bytesToWrite);
position += bytesToWrite;
writed += bytesToWrite;
return writed;
}
public override long Seek(long amount, SeekOrigin origin){
throw new NotImplementedException("FormDataStream is non-seekable stream");
}
public override void SetLength (long len){
throw new NotImplementedException("FormDataStream is readonly stream");
}
public override void Write(byte[] source, int offset, int count){
throw new NotImplementedException("FormDataStream is readonly stream");
}
public void AddPart(string fieldName, string mimeType, Stream contents, string fileName=null){
if (dirty){
throw new InvalidOperationException("You can't change form data, form already readed");
}
parts.Add(new FormPart(fieldName, mimeType, boundary, contents, fileName));
}
public void AddPart(FormPart part){
if (dirty){
throw new InvalidOperationException("You can't change form data, form already readed");
}
parts.Add(part);
}
public override void Close(){
foreach (var part in parts){
part.Dispose();
}
base.Close();
}
}
}