1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-11 18:17:48 -05:00
denoland-deno/http.ts
Ryan Dahl ad578ab6fe wip
2018-11-08 18:15:26 -05:00

58 lines
1.2 KiB
TypeScript

import { listen, Conn } from "deno";
import { BufReader, BufState } from "./bufio.ts";
import { TextProtoReader } from "./textproto.ts";
import { Headers } from "./headers.ts";
export async function* serve(addr: string) {
const listener = listen("tcp", addr);
while (true) {
const c = await listener.accept();
yield* serveConn(c);
}
listener.close();
}
export async function* serveConn(c: Conn) {
let bufr = new BufReader(c);
try {
while (true) {
const req = await readRequest(bufr);
yield req;
}
} finally {
c.close();
}
}
interface Response {
status?: number;
body: string;
}
class ServerRequest {
url: string;
method: string;
proto: string;
headers: Headers;
respond(r: Response): Promise<void> {
throw Error("not implemented");
}
}
async function readRequest(b: BufReader): Promise<ServerRequest> {
const tp = new TextProtoReader(b);
const req = new ServerRequest();
let s: string;
let err: BufState;
// First line: GET /index.html HTTP/1.0
[s, err] = await tp.readLine();
[req.method, req.url, req.proto] = s.split(" ", 3);
[req.headers, err] = await tp.readMIMEHeader();
return req;
}