Feature #11: Directory Iterator

Implementing the "Directory Iterator" feature for our "Operating System" project.

Description

In this feature, we will create a directory tree iterator. A directory can contain files or other directories. Similarly, subdirectories can contain both files and other directories. We will be given a directory structure for a specific directory in the file system. This directory will be available as a list. Each element of this list is either a file represented as a scalar element, or a directory represented as a nested list. We will have to iterate over all of the files one by one, using an iterator.

The task is to implement the DirectoryIterator class:

  • def __init__(self, nested_list) initializes the iterator with the nested list nested_list.
  • next() returns the next file in the nested directories.
  • has_next() returns True if there are still some files in the nested list. If there are no files left in the nested list, it returns False.

Solution

We will use a stack to solve this feature. The stack will be used to store the directories and files on the iterator object. In the constructor, we will push all the files and the directories in the stack in reverse order.

The has_next function checks if the top element of the stack is a file or directory. If so, then it returns True. Otherwise, if the top element is a list of files or directories, then it pops from the stack and pushes each element of the list in the stack in reverse order. This way, the lists at the top of the stack are converted into individual files or a directory whenever the has_next function is called.

The next function first calls the has_next function to check if there is any file or directory in the stack. If the has_next function returns True, then it pops from the stack and returns the topmost value.

Here is an example of how this function works:

Let’s look at the code for this solution:

main.py
NestedDirectory.py
class NestedDirectories:
# Constructor initializes a single file if a value has been passed
# else initializes an empty list
def __init__(self, opt_parm = None):
if opt_parm:
self.file = opt_parm
else:
self.n_list = []
self.file = 0
# return true if this NestedDirectories holds a single file, rather than a nested list.
def is_file(self):
if self.file:
return True
return False
# return the single file that this NestedDirectories holds, if it holds a single file
# Return null if this NestedDirectories holds a nested list
def get_file(self):
return self.file
# Set this NestedDirectories to hold a single file.
def set_file(self,value):
self.n_list = None
self.file = value
# Set this NestedDirectories to hold a nested list and adds a nested file to it.
def add(self,ni):
if self.file:
self.n_list = []
self.n_list.append(NestedDirectories(self.file))
self.file = None
self.n_list.append(ni)
# return the nested list that this NestedDirectories holds, if it holds a nested list
# Return null if this NestedDirectories holds a single file
def get_list(self):
return self.n_list
Directory Iterator

Complexity measures

Time complexity Space complexity
O(n+l)O(n + l)
...