配置VScode
我想让程序输出在外部终端,发现C/C++插件现在的版本无法做到这一点,需要回退,而我的vscode TMD无法安装这个插件的历史版本,于是经过搜索知道,在网页抓包把版本信息替换为想要的版本
1
| https://marketplace.visualstudio.com/_apis/public/gallery/publishers/ms-vscode/vsextensions/cpptools/1.8.4/vspackage?targetPlatform=win32-x64
|
在lauch.json
中添加"externalConsole": true
输出如图:
是的,又出现了中文乱码!!!!而在vscode内部终端则正常,一眼丁真鉴定为,cmd的编码。经过查询,按以下方法可以成功更改编码。
在cmd输入chcp
返回Active code page: 65001
说明成功更改为utf-8
再次运行:
成功!,虽然字体也变了的说,但是也可以接受吧。。。
不要忘记修改output
文件夹配置:
OS文件系统知识梳理
- 定义:文件就是一组有意义的信息/数据的集合
- 属性
- 文件名 :同一目录下不允许有重名文件
- 标识符:具有唯一性,用于区分各个文件的一种内部名称
- 文件类型
- 位置:文件存放的路径(用户使用),在外层中的地址(OS使用,对用户透明)
- 大小
- 创建时间,上次修改时间
- 文件所有者信息
- 保护信息:对文件进行保护的访问控制信息
文件内部的组织形式(逻辑结构)
所谓逻辑结构就是站在用户的观点来看,文件内部的数据应该是如何组织起来的
无结构文件,如.txt,由一些二进制和字符流组成,又称为流式文件
有结构文件,如.csv,sql_table,由一组相似的记录组成,又称记录文件
根据各条长度是否相等,分为定长记录和可变长记录(常见)
记录是一组相关数据项的集合,和sql的元组很像捏
逻辑结构
目录
目录是一种数据结构,用于标志系统中的文件及其物理位置
供检索时使用
- 用户文件目录(UFD)
| 文件名 | .. | 存放位置 |
| :-----: | ----- | :-----: |
| a | | ... |
| b | | .. |
两级目录不同用户允许文件重名,也可以实现在目录上实现访问限制
- 多级目录(树形目录结构)
- ![image-20230619110407145](https://blog-faithererer.oss-cn-qingdao.aliyuncs.com/blog/typoraImg202306191152388.png)
- 无环图目录结构
- ![image-20230619111003269](https://blog-faithererer.oss-cn-qingdao.aliyuncs.com/blog/typoraImg202306191152015.png)
应提供的功能
创建文件
需要提供
- 所需外存空间大小(如:一个盘块,1KB)
- 文件存放路径(D:/Demo)
文件名
OS做的事情:
- 在外存中找到文件所需空间
- 根据路径信息,找到该目录对应的目录文件
- 在目录中添加该文件的目录项
读文件
- 需要提供
- 打开文件表的文件编号
- 指明读入多少数据
- 放在内存的位置
- OS做的事情
- 将r指针指向的外存中,将用户指定大小的数据读入用户指定的内存区域
写文件
- 需要提供
- 打开文件表的文件编号
- 写回多少数据
- 写会外存的数据放在内存中的位置
- OS做的事情
- 从指定的内存中,将用户指定大小的数据写回w指针指向的外存
删除文件
- 需要提供
- OS做的事情
- 找到文件名对应的目录项
- 根据该目录项在外存的位置,文件大小等信息,回收文件占用的磁盘块
- 删除对应目录项
打开文件
关闭文件
- 需要提供
- OS做的事情
- 将进程的打开文件表的对应表项删除
- 回收分配给该文件的内存空间等资源
- 系统表打开计数器-1,如果为0则删除系统表对应表项。
如何存放在外存(物理结构):
物理结构就是从OS的观点来看,文件的数据如何存放在外存中的
其他功能:文件共享,文件保护
实现
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 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562
| #include<bits/stdc++.h> using namespace std;
string command;
vector<string> path_list;
struct File{ string filename; int size; string content=""; time_t time; };
struct User{ string user_name; string pwd; };
struct Dir{ string dir_name; vector<struct File> file; vector<struct Dir> dir; };
struct Dir_Node{ struct Dir dir; vector<struct Dir_Node*> child; struct Dir_Node *parent; };
struct Thread_Open_File_Table{ struct File file; int permission; char* p; int index; };
struct Sys_Open_File_Table{ struct File file; int permission; char* p; int index; int count; };
vector<struct User> MFD;
void Welcome(); void Command_Judge(string command); void Create_User(); void Show_User(); void Login_In(struct User u); void Dir(); void Insert_Node_Dir(); void Cd(string dir_name); void Cd_Rollback(); void MkDir(string dir_name); void Os_Open(string filename); void Os_Read(); void Os_Write(); void Os_Create(string fileName); void Os_Close(); void showU(); void ShowFileInfo();
struct Dir_Node *pDir_root=new Dir_Node; struct Dir_Node *pCurDir=pDir_root; vector<struct Sys_Open_File_Table> SOFT; vector<struct Thread_Open_File_Table> TOFT; time_t now_time; string Login_In_status="";
int main(){ Welcome(); pDir_root->dir.dir_name="root"; pDir_root->parent=nullptr; path_list.push_back("root"); while(1){ now_time=time(NULL);
for(int i=0;i<path_list.size();i++){ if(i==path_list.size()-1) cout<<path_list[i]; else cout<<path_list[i]<<"/"; } if(Login_In_status!="") cout<<"("<<Login_In_status<<")"; cout<<": >>> ";
cin>>command; Command_Judge(command); } }
void Command_Judge(string command){ if(command=="help"){ cout<<"dir-----显示当前目录文件"<<endl; cout<<"mkdir-----新建目录"<<endl; cout<<"cd-----切换到指定目录"<<endl; cout<<"cd..-----回退一级目录"<<endl; cout<<"del-----删除文件"<<endl; cout<<"open-----打开文件"<<endl; cout<<"create-----新建文件"<<endl; cout<<"read-----读文件"<<endl; cout<<"write-----写文件"<<endl; cout<<"close-----关闭文件"<<endl; cout<<"create_user-----创建用户"<<endl; cout<<"login-----用户登录"<<endl; cout<<"showU-----显示用户信息"<<endl; cout<<"showF-----显示文件详细信息"<<endl; cout<<endl; } else if(command=="dir"){ Dir(); cout<<endl; } else if(command=="exit"){ system("pause"); } else if(command=="create_user"){
Create_User();
cout<<endl; } else if(command=="login"){ struct User u; cout<<"输入用户名"<<endl; cin>>u.user_name; cout<<"输入密码"<<endl; cin>>u.pwd; Login_In(u); } else if(command=="cd"){ string dir_name; cin>>dir_name; Cd(dir_name);
} else if(command=="cd.."){ Cd_Rollback(); } else if(command=="mkdir"){ cout<<"输入新建目录名"<<endl; string dir_name; cin>>dir_name; MkDir(dir_name); } else if(command=="create"){ string fileName; cout<<"输入文件名"<<endl; cin>>fileName; while(fileName.find("/")!=std::string::npos){ cout<<"文件名不能包含'/' !!!"<<endl; cout<<"输入文件名"<<endl; cin>>fileName; } while(fileName.find(".")==std::string::npos||fileName.find(".")==fileName.size()-1){ cout<<"文件必须有后缀 !!!"<<endl; cout<<"输入文件名"<<endl; cin>>fileName; } Os_Create(fileName); } else if(command=="open"){
cout<<"输入文件名"<<endl; string fileName; cin>>fileName; Os_Open(fileName); } else if(command=="write"){ Os_Write(); } else if(command=="read"){ Os_Read(); } else if(command=="showU"){ showU(); } else if(command=="showF"){ ShowFileInfo(); } else{ cout<<"不是命令"<<endl; cout<<endl; } }
void Login_In(struct User u){ bool flag=false; for(int i=0;i<MFD.size();i++){ if(MFD[i].user_name==u.user_name){ if(MFD[i].pwd==u.pwd){ cout<<"登录成功"<<endl; Login_In_status=u.user_name; cout<<endl; flag=true; for(int i=0;i<pCurDir->child.size();i++){ if(pCurDir->child[i]->dir.dir_name==u.user_name){ pCurDir=pCurDir->child[i]; path_list.push_back(u.user_name); break; } } break; } else{ cout<<"密码错误"<<endl; cout<<endl; flag=true; break; }
} } if(flag==false) cout<<"用户名不存在"<<endl; cout<<endl; }
void Dir(){ for(int i=0;i<pCurDir->child.size();i++){ cout<<pCurDir->child[i]->dir.dir_name<<endl; } for(int i=0;i<pCurDir->dir.file.size();i++){ cout<<pCurDir->dir.file[i].filename<<endl; } }
void Insert_Node_Dir(struct Dir_Node *pcurDir, struct Dir newDir){
struct Dir_Node *child_node=new Dir_Node; child_node->dir=newDir; child_node->parent=pcurDir;
pcurDir->child.push_back(child_node); } void Insert_Node_File(struct Dir_Node *pcurDir, struct Dir newDir){
struct Dir_Node *child_node=new Dir_Node; child_node->dir.file=newDir.file; child_node->parent=pcurDir;
pcurDir->child.push_back(child_node); }
void Create_User(){ if(pCurDir->parent!=nullptr){ cout<<"非根目录无法创建用户!!!"<<endl; return; } struct User u; cout<<"输入用户名"<<endl; cin>>u.user_name; cout<<"输入密码"<<endl; cin>>u.pwd; for(int i=0;i<MFD.size();i++){ if(MFD[i].user_name==u.user_name){ cout<<"用户名已存在"<<endl; cout<<endl; return; } } MFD.push_back(u);
struct Dir_Node *dn=new Dir_Node; struct Dir d; d.dir_name=u.user_name; dn->dir=d; Insert_Node_Dir(pCurDir, dn->dir); cout<<"创建成功!"<<endl; }
void Cd(string dir_name){ if(pCurDir->parent==nullptr){ if(Login_In_status=="no"){ cout<<"请先登录"<<endl; cout<<endl; return; } else{ if(Login_In_status==dir_name){ for(int i=0;i<pCurDir->child.size();i++){ if(pCurDir->child[i]->dir.dir_name==dir_name){ pCurDir=pCurDir->child[i]; path_list.push_back(dir_name); return; } } } } } bool flag=false; for(int i=0;i<pCurDir->child.size();i++){ if(pCurDir->child[i]->dir.dir_name==dir_name){ pCurDir=pCurDir->child[i]; path_list.push_back(dir_name); flag=true; break; } } if(flag==false) cout<<"目录不存在"<<endl; cout<<endl; }
void Cd_Rollback(){ if(pCurDir->parent==nullptr) cout<<"已经到达最顶级目录!"<<endl; else{ pCurDir=pCurDir->parent; path_list.pop_back(); } }
void MkDir(string dir_name){ if(pCurDir->parent==nullptr){ cout<<"根目录无法创建非用户目录!!!"<<endl; return; } for(int i=0;i<pCurDir->child.size();i++){ if(pCurDir->child[i]->dir.dir_name==dir_name){ cout<<"目录已存在"<<endl; cout<<endl; return; } } struct Dir_Node *dn=new Dir_Node; struct Dir d; d.dir_name=dir_name; dn->dir=d; Insert_Node_Dir(pCurDir, dn->dir); cout<<"创建成功"<<endl; }
void Os_Open(string filename){ int f=0; for(int i=0;i<pCurDir->dir.file.size();i++){ if(pCurDir->dir.file[i].filename==filename){ f=1; break; } } if(f==0){ cout<<"文件不存在"<<endl; return; } struct Thread_Open_File_Table toft; struct Sys_Open_File_Table soft; bool flag=false; cout<<"权限: 1:读 2.写 3.读写"<<endl; int s; cin>>s; if(s==1) toft.permission=1; else if(s==2) toft.permission=2; else if(s==3) toft.permission=3; else{ cout<<"输入错误"<<endl; cout<<endl; return; } for(int i=0;i<SOFT.size();i++){ if(SOFT[i].file.filename==filename){ soft.file.filename=filename; SOFT[i].count++; toft.file.filename=filename; toft.index=i; TOFT.push_back(toft); flag=true; break; } } if(flag==false){ soft.file.filename=filename; soft.count=1; SOFT.push_back(soft); toft.file.filename=filename; toft.index=SOFT.size()-1; TOFT.push_back(toft); } cout<<"打开成功"<<endl; }
void Os_Write(){ string fileName; int flag=false; int flag2=false; cout<<"输入文件名"<<endl; cin>>fileName; for(int i=0;i<pCurDir->dir.file.size();i++){ if(pCurDir->dir.file[i].filename==fileName){ flag=true; for(int j=0;j<TOFT.size();j++){ if(TOFT[j].file.filename==fileName){ flag2=true; if(TOFT[j].permission==2||TOFT[j].permission==3){ cout<<"输入内容"<<endl; string content; cin>>content; pCurDir->dir.file[i].content=content; pCurDir->dir.file[i].size=content.size(); break; } else{ cout<<"没有写权限"<<endl; return; } } } if(flag2==false){ cout<<"文件未打开"<<endl; return; } } } if(flag==false){ cout<<"当前目录不存在该文件"; return; } cout<<"写入成功"<<endl; }
void Os_Read(){ bool flag=false; bool flag2=false; string fileName; cout<<"输入文件名"<<endl; cin>>fileName; for(int i=0;i<pCurDir->dir.file.size();i++){ if(pCurDir->dir.file[i].filename==fileName){ flag=true; for(int j=0;j<TOFT.size();j++){ if(TOFT[j].file.filename==fileName){ flag2=true; if(TOFT[j].permission==1||TOFT[j].permission==3){ cout<<pCurDir->dir.file[i].content<<endl; break; } else{ cout<<"没有读权限"<<endl; return; } } } if(flag2==false){ cout<<"文件未打开"<<endl; return; } } } if(flag==false){ cout<<"当前目录不存在该文件"<<endl; return; } }
void Os_Del(string filename){ int flag=false; for(int i=0;i<pCurDir->dir.file.size();i++){ if(pCurDir->dir.file[i].filename==filename){ flag=true; pCurDir->dir.file.erase(pCurDir->dir.file.begin()+i); break; } } if(flag==false){ cout<<"当前目录不存在该文件"<<endl; return; } cout<<"删除成功"<<endl; }
void Os_Create(string fileName){ for(int i=0;i<pCurDir->dir.file.size();i++){ if(pCurDir->dir.file[i].filename==fileName){ cout<<"当前目录已存在该文件,无法继续创建"<<endl; return; } } struct File file; file.filename=fileName; file.size=file.content.size(); file.time=now_time; pCurDir->dir.file.push_back(file); cout<<"创建成功"<<endl; }
void Show_User(){ for(int i=0;i<MFD.size();i++){ cout<<MFD[i].user_name<<endl; } }
void showU(){
cout<<"-------------------------------------------------------------------"<<endl; cout<<"用户名"<<"\t"<<endl; for(int i=0;i<MFD.size();i++){ cout<<MFD[i].user_name<<endl; } cout<<"-------------------------------------------------------------------"<<endl;
}
void Os_Close(){ string filename; cout<<"输入文件名"<<endl; for(int i=0;i<TOFT.size();i++){ if(TOFT[i].file.filename==filename){ SOFT[TOFT[i].index].count--; if(SOFT[TOFT[i].index].count==0) SOFT.erase(SOFT.begin()+TOFT[i].index); TOFT.erase(TOFT.begin()+i); cout<<"关闭成功"<<endl; return; } } }
void ShowFileInfo(){ cout<<"-------------------------------------------------------------------"<<endl; cout.setf(ios::right); cout<<"文件名\t\t文件大小\t创建时间戳\n"; for(int i=0;i<pCurDir->dir.file.size();i++){ cout<<pCurDir->dir.file[i].filename<<"\t\t"<<pCurDir->dir.file[i].size<<"\t\t"<<pCurDir->dir.file[i].time<<endl; } cout.unsetf(ios::right); cout<<"-------------------------------------------------------------------"<<endl; }
void Welcome(){ cout<<"-------------------------------------------------------------------"<<endl; cout<<"欢迎使用文件系统"<<endl; cout<<"输入help以查看帮助"<<endl; cout<<"-------------------------------------------------------------------"<<endl; }
|