summary refs log tree commit diff stats
path: root/code/directory.rb
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2009-11-22 21:13:09 +0100
committerhut <hut@lavabit.com>2009-11-22 21:13:09 +0100
commit907e349c11b2ef689434e9e3504b97a6c0a843b6 (patch)
tree872fc12c557c7c60affee08b3590c22767e6db35 /code/directory.rb
parentae2705f42b7ded7c3a91294154b83b541e150542 (diff)
downloadranger-907e349c11b2ef689434e9e3504b97a6c0a843b6.tar.gz
a partly done directory class
Diffstat (limited to 'code/directory.rb')
-rw-r--r--code/directory.rb66
1 files changed, 66 insertions, 0 deletions
diff --git a/code/directory.rb b/code/directory.rb
new file mode 100644
index 00000000..5c6e84c1
--- /dev/null
+++ b/code/directory.rb
@@ -0,0 +1,66 @@
+# A Class that contains data about directories
+class Directory
+	class LoadStatus
+		# @n contains a three bit number: x3x2x1
+		# x1:
+		# 0 = not scheduled
+		# 1 = scheduled
+		# x3x2:
+		# 00 = nothing loaded
+		# 01 = got the list of files
+		# 10 = <undefined>
+		# 11 = got the list of files and entry objects
+		def initialize(n = 0)
+			@n = 0
+		end
+
+		def got_files?
+			# is bit 2 nd 3 == 01
+			return n & 2 == 2
+		end
+
+		def scheduled?
+			# is the first bit 1?
+			return n & 1 == 1
+		end
+
+		def got_objects?
+			return n & 4 == 4
+		end
+		attr_accessor :n
+	end
+
+	def initialize(path)
+		@path = path
+		@status = LoadStatus.new(0)
+		@files = []
+		@sort_time = nil
+		@mtime = nil
+#		@width = 1000
+		@read = false
+		@free_space = nil
+		@empty = true
+		@scheduled = false
+	end
+
+	# {{{ Trivial
+	def inspect
+		return "<Directory: #{path}>"
+	end
+	alias to_s inspect
+
+	def size
+		return @files.size
+	end
+
+	def not_loaded?
+		return @level == 0
+	end
+	def file_list_loaded?
+		return @level >= 1
+	end
+	def ready?
+		return @level >= 2
+	end
+	# }}}
+end