-
Notifications
You must be signed in to change notification settings - Fork 51
/
reverseproxy.cpp
136 lines (124 loc) · 2.53 KB
/
reverseproxy.cpp
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
#include<bits/stdc++.h>
using namespace std;
string read(string s){
int i=0;
string domain="";
while(s[i]!='/'){
domain+=s[i];
i++;
}
return domain;
}
string read_up(string s){
int i=0;
string ip="";
string up="";
while(s[i]!='/'){
i++;
}
i++;
while(i<s.length() && s[i]!='/' && s[i]!='?')
{
up+=s[i];
i++;
}
i++;
if(up=="machine_up"){
i+=3;
while(i<s.length())
{
ip+=s[i];
i++;
}
}
return ip;
}
string read_down(string s){
int i=0;
string ip="";
string down="";
while(s[i]!='/'){
i++;
}
i++;
while(i<s.length()&&s[i]!='/' && s[i]!='?')
{
down+=s[i];
i++;
}
i++;
if(down=="machine_down"){
i+=3;
while(i<s.length())
{
ip+=s[i];
i++;
}
}
return ip;
}
int main(){
int n,urlcnt,count,queries;
string url_s,s,p;
map<string,vector<string>>mp;
map<string,queue<string>>mp1;
cin>>n;
for(int i=0;i<n;i++){
cin>>p;
}
cin>>urlcnt;
for(int i=0;i<urlcnt;i++){
cin>>url_s;
cin>>count;
queue<string>q;
for(int j=0;j<count;j++){
cin>>s;
q.push(s);
}
mp1[url_s]=q;
}
cin>>queries;
for(int i=0;i<queries;i++){
cin>>s;
string domain=read(s);
string up=read_up(s);
string down=read_down(s);
if(up==""&& down==""){
queue<string> q=mp1[domain];
string machine=q.front();
q.pop();
mp[machine].push_back(s);
q.push(machine);
mp1[domain]=q;
}
else if(up!=""){
queue<string> q=mp1[domain];
q.push(up);
string temp=q.front();
q.pop();
q.push(temp);
mp1[domain]=q;
}
else if(down!=""){
queue<string> modified;
queue<string> q=mp1[domain];
while(!q.empty() && q.front()!=down){
modified.push(q.front());
q.pop();
}
q.pop();
while(!q.empty()){
modified.push(q.front());
q.pop();
}
mp1[domain]=modified;
}
}
for(auto it:mp){
cout<<it.first<<endl;
vector<string> vec=it.second;
for(auto it1:vec)
cout<<it1<<endl;
}
return 0;
}