안녕하세요, 한국디지털미디어고등학교 웹프로그래밍과 3학년 3반 1번 김강민입니다.
이 글은 테스트 용도입니다.
개추~ 히비키추~ 배추~
/* 전략 */
export class Router {
#staticRoutes: Map<string, Route> = new Map<string, Route>();
#tree: Tree = new Map();
public setRoute(path: string, route: Route): void {
if(path[0] === '/') {
let tree: Tree = this.#tree;
let isStatic: boolean = true;
if(path['length'] !== 1) {
if(path[path['length'] - 1] !== '/') {
path += '/';
let currentIndex: number = 1;
let nextIndex: number = path.indexOf('/', 1);
let treePath: typeof ALL | typeof PARAMETER | string;
let targetTree: Tree | undefined;
while(nextIndex !== -1) {
treePath = path.slice(currentIndex, nextIndex);
targetTree = tree.get(treePath);
if(typeof(targetTree) !== 'object') {
if(treePath[0] === ':') {
targetTree = tree.get(PARAMETER);
treePath = treePath.slice(1);
if(typeof(targetTree) !== 'object') {
targetTree = new Map([[NAME, treePath]]) as Tree;
tree.set(PARAMETER, targetTree);
if(isStatic) {
isStatic = false;
}
} else if(targetTree.get(NAME) !== treePath) {
throw new Error('Parameter name must match');
}
} else if(treePath === '*') {
if(path['length'] === nextIndex + 1) {
targetTree = tree.get(ALL);
if(typeof(targetTree) !== 'object') {
targetTree = new Map();
tree.set(ALL, targetTree);
if(isStatic) {
isStatic = false;
}
}
} else {
throw new Error('All must be end of the path');
}
} else {
targetTree = new Map();
tree.set(treePath, targetTree);
}
}
tree = targetTree;
currentIndex = nextIndex + 1;
nextIndex = path.indexOf('/', currentIndex);
}
} else {
throw new Error('Path must not ends with /');
}
}
if(!tree.has(ROUTE)) {
tree.set(ROUTE, route);
if(isStatic) {
this.#staticRoutes.set(path, route);
}
return;
} else {
throw new Error('Path must be unique');
}
} else {
throw new Error('Path must starts with /');
}
}
/* 후략 */
}
https://github.com/H2Owater425/miyako
GitHub - H2Owater425/miyako: Simple api framework
Simple api framework. Contribute to H2Owater425/miyako development by creating an account on GitHub.
github.com
가나다라마바사
가나다라마바사
가나다라마바사
가나다라마바사
가나다라마바사
가나다라마바사
가 | 나 | 다 | 라 | 마 | 바 | 사 | 아 | 파 | 하 |
가는 길이지만 | 나를 생각해요 | 다른 사람에게 벌써 마음을 주지 마요 | 라일락 꽃잎들을 | 마음껏 밟고 가요 | 바라는 건 딱 한 가지 끝까지 나를 생각해요 | 사라져 버릴까봐서 겁나요 | 아자차카타파 | 파란 하늘 보며 가슴을 펴고 | 하하 웃지 말아요 |
가랑비라도 | 나리는 날엔 | 다시 한번 나를 떠올려줘요 | |||||||
가벼운 발걸음 | 나는 싫어요 | 다 잊었다 제발 생각 말아요 | |||||||
가끔 생각이 | 나면 | 다 잊은 뒤에 | 라도 | 마음 터 놓고 만나기를 | 바라는 건 욕심이겠죠 | 사르르 녹아버릴까봐 겁나요 | 아자차카타파 | 파르르 떨리는 입술을 물고 | 하염 없이 울어요 |
가랑비라도 | 나리는 날엔 | 다시 한번 나를 떠올려줘요 | |||||||
가벼운 발걸음 | 나는 싫어요 | 다 잊었다 제발 생각 말아요 | |||||||
가로등불이 | 나를 만지면 | 다시 너랑 둘이 걷고 싶겠지 | |||||||
가끔이라도 | 나와 단둘이 | 다정했던 우리 밤과 낮을 생각해 줘요 |