cse 333 section
play

CSE 333 Section I/O, POSIX, and System Calls! 1 Logistics Due - PowerPoint PPT Presentation

CSE 333 Section I/O, POSIX, and System Calls! 1 Logistics Due TODAY: Homework 1 @ 11:59 pm Due Monday: Exercise 7 @ 11 am 2 POSIX Posix is a family of standards specified by the IEEE. These standards maintains compatibility across


  1. CSE 333 Section I/O, POSIX, and System Calls! 1

  2. Logistics Due TODAY: Homework 1 @ 11:59 pm Due Monday: Exercise 7 @ 11 am 2

  3. POSIX Posix is a family of standards specified by the IEEE. These standards maintains compatibility across variants of Unix-like operating systems by defining APIs and standards for basic I/O (file, terminal, and network) and for threading. 1) What does POSIX stand for? Portable Operating System Interface ` 2) Why might a POSIX standard be beneficial? From an application perspective? Versus using the C stdio library? ● More explicit control since read and write functions are system calls and you can directly access system resources. ● POSIX calls are unbuffered so you can implement your own buffer strategy on top of read()/write(). ● There is no standard higher level API for network and other I/O devices 3

  4. Review from Lecture ssize_t read(int fd, void *buf, size_t count) result = -1 An error occurred errno = error result = 0 Already at EOF result < count Partial Read result == count Success! 4

  5. 5

  6. New Scenario - Messy Roommate ● The Linux kernel now lives with you in room #333 ● There are N pieces of trash in the room There is a single trash can, char bin[N] ● ○ (For some reason, the trash goes in a particular order) ● You can tell your roommate to pick it up, but he/she is unreliable 6

  7. New Scenario - Messy Roommate NumTrash pickup(roomNum, trashBin, Amount) NumTrash == -1 “ I tried to start cleaning, but something came up ” errno == excuse (got hungry, had a midterm, room was locked, etc.) NumTrash == 0 “ You told me to pick up trash, but the room was already clean ” NumTrash < Amount “ I picked up some of it, but then I got distracted by my favorite show on Netflix ” NumTrash == Amount “ I did it! I picked up all the trash! ” 7

  8. New Scenario - Messy Roommate NumTrash pickup(roomNum, trashBin, Amount) ● The Linux kernel now lives with you in room #333 ● There are N pieces of trash in the room There is a single trash can, char bin[N] ● 8

  9. NumTrash pickup(roomNum, trashBin, Amount) How do we get room 333 NumTrash == -1, errno == excuse clean? NumTrash == 0 NumTrash < Amount NumTrash == Amount What do we bin[N-1] do in the following scenarios? bin[0] 9

  10. NumTrash pickup(roomNum, trashBin, Amount) How do we get room 333 NumTrash == -1, errno == excuse clean? NumTrash == 0 NumTrash < Amount NumTrash == Amount Decide if the bin[N-1] excuse is I have to study for cse333! I’ll reasonable, do it later. and either let it be or ask again. bin[0] 10

  11. NumTrash pickup(roomNum, trashBin, Amount) How do we get room 333 NumTrash == -1, errno == excuse clean? NumTrash == 0 NumTrash < Amount NumTrash == Amount Stop asking bin[N-1] them to clean The room is already clean, the room! dawg! There’s nothing to do. bin[0] 11

  12. NumTrash pickup(roomNum, trashBin, Amount) How do we get room 333 NumTrash == -1, errno == excuse clean? NumTrash == 0 NumTrash < Amount NumTrash == Amount Ask them I picked up 3 bin[N-1] again to pick whole pieces of trash! What more up the rest do you want from me? of it. bin[0] 12

  13. NumTrash pickup(roomNum, trashBin, Amount) How do we get room 333 NumTrash == -1, errno == excuse clean? NumTrash == 0 NumTrash < Amount NumTrash == Amount They did bin[N-1] what you I did it! The whole room asked, so is finally clean. stop asking them to pick up trash. bin[0] 13

  14. NumTrash pickup(roomNum, trashBin, Amount) How do we get room 333 NumTrash == -1, errno == excuse clean? NumTrash == 0 int pickedUp = 0; NumTrash < Amount while ( ____________ ) { NumTrash == Amount } 14

  15. NumTrash pickup(roomNum, trashBin, Amount) How do we get room 333 NumTrash == -1, errno == excuse clean? NumTrash == 0 int pickedUp = 0; NumTrash < Amount while ( pickedUp < N ) { NumTrash == Amount NumTrash = pickup( 333, bin + pickedUp, N - pickedUp ) if ( NumTrash == -1 ) { if ( NumTrash == -1 ) { if ( bad excuse ) if ( bad excuse ) if ( excuse not reasonable ) ask again ask again ask again stop asking stop asking and handle the excuse } } if ( NumTrash == 0 ) if ( NumTrash == 0 ) // we over-estimated the trash stop asking stop asking since the room is clean add NumTrash to pickedUp } 15

  16. NumTrash pickup(roomNum, trashBin, Amount) How do we get room 333 NumTrash == -1, errno == excuse clean? NumTrash == 0 int pickedUp = 0; NumTrash < Amount while ( pickedUp < N ) { NumTrash == Amount result = pickup( 333, bin + pickedUp, N - pickedUp ) if ( NumTrash == -1 ) { if ( result == -1 ) { if ( bad excuse ) if ( bad excuse ) if ( errno == E_BUSY_NETFLIX ) ask again ask again continue; stop asking break; } } if ( NumTrash == 0 ) if ( result == 0 ) stop asking break; pickedUp += result; } 16

  17. Some Final Notes... We assumed that there were exactly N pieces of trash (N bytes of data that we wanted to read from a file). How can we modify our solution if we don’t know N? (Answer): Keep trying to read(...) until we get 0 back (EOF / clean room) We determine N dynamically by tracking the number of bytes read until this point, and use malloc to allocate more space as we read. (This case comes up when reading/writing to the network!) There is no one true loop (or true analogy). Tailor your POSIX loops to the specifics of what you need! 17

  18. Back to the worksheet (Q3) 18

  19. 19

  20. 20

  21. More Posix! 21

  22. More Posix! 22

  23. More Posix! 23

  24. DIRECTORIES 24

  25. DIR* in POSIX? Looks Like C-STDIO DIR *opendir(const char* name); But, it’s actually POSIX! int closedir(DIR *dirp); struct dirent *readdir(DIR *dirp); DIR* is not quite a file descriptor, but we will use it very similarly Gives you the 'next' directory entry, returns null when end of directory reached. 25

  26. readdir() example ~/tiny_dir/ Hello.txt goodbye.c Internal Directory Pointer DIR* dirp = opendir("~/tiny_dir"); // opens directory struct dirent *file = readdir(dirp); // gets pointer to "Hello.txt" dirent file = readdir(dirp); // gets pointer to "goodbye.c" dirent file = readdir(dirp); // gets NULL closedir(dirp); // cleanup 26

  27. Struct dirent Stands for: Directory Entry Result from: struct dirent *readdir(DIR *dirp); data stored in integer types about the directory entry // Probably the thing // we care about most ** You do not need to “free” or “close” dirent structs from readdir() ** 27

  28. 28

  29. 29

  30. 30

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend