about summary refs log tree commit diff stats
path: root/050_write.subx
blob: 0d6b8152b0b45f2d40bf3039addd38862b94f76e (plain) (blame)
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
# _write: write to a file descriptor (fd)

== code
#   instruction                     effective address                                                   register    displacement    immediate
# . op          subop               mod             rm32          base        index         scale       r32
# . 1-3 bytes   3 bits              2 bits          3 bits        3 bits      3 bits        2 bits      2 bits      0/1/2/4 bytes   0/1/2/4 bytes

Entry:  # just exit; can't test _write just yet
    # . syscall(exit, 0)
    bb/copy-to-EBX  0/imm32
    b8/copy-to-EAX  1/imm32/exit
    cd/syscall  0x80/imm8

_write:  # fd : int, s : (address array byte) -> <void>
    # . prolog
    55/push-EBP
    89/copy                         3/mod/direct    5/rm32/EBP    .           .             .           4/r32/ESP   .               .                 # copy ESP to EBP
    # . save registers
    50/push-EAX
    51/push-ECX
    52/push-EDX
    53/push-EBX
    # syscall(write, fd, (data) s+4, (size) *s)
    # . fd : EBX
    8b/copy                         1/mod/*+disp8   5/rm32/EBP    .           .             .           3/r32/EBX   8/disp8         .                 # copy *(EBP+8) to EBX
    # . data : ECX = s+4
    8b/copy                         1/mod/*+disp8   5/rm32/EBP    .           .             .           1/r32/ECX   0xc/disp8       .                 # copy *(EBP+12) to ECX
    81          0/subop/add         3/mod/direct    1/rm32/ECX    .           .             .           .           .               4/imm32           # add to ECX
    # . size : EDX = *s
    8b/copy                         1/mod/*+disp8   5/rm32/EBP    .           .             .           2/r32/EDX   0xc/disp8       .                 # copy *(EBP+12) to EDX
    8b/copy                         0/mod/indirect  2/rm32/EDX    .           .             .           2/r32/EDX   .               .                 # copy *EDX to EDX
    # . syscall
    b8/copy-to-EAX  4/imm32/write
    cd/syscall  0x80/imm8
    # if (EAX < 0) abort
    3d/compare-EAX-with  0/imm32
    0f 8c/jump-if-lesser  $_write:abort/disp32
$_write:end:
    # . restore registers
    5b/pop-to-EBX
    5a/pop-to-EDX
    59/pop-to-ECX
    58/pop-to-EAX
    # . epilog
    89/copy                         3/mod/direct    4/rm32/ESP    .           .             .           5/r32/EBP   .               .                 # copy EBP to ESP
    5d/pop-to-EBP
    c3/return

$_write:abort:
    # can't write a message here for risk of an infinite loop, so we'll use a special exit code instead
    # . syscall(exit, 255)
    bb/copy-to-EBX  0xff/imm32
    b8/copy-to-EAX  1/imm32/exit
    cd/syscall  0x80/imm8
    # never gets here

# . . vim:nowrap:textwidth=0
:15 +0100 committer hut <hut@lavabit.com> 2009-12-11 00:51:15 +0100 moved commands from fm.py to actions.py, cleanups' href='/akspecs/ranger/commit/ranger/actions.py?h=v1.9.0&id=0c0b9489072922c0f597c7099f8728868ffbb4a4'>0c0b9489 ^
f2d8598d ^

0c0b9489 ^
f2d8598d ^
0c0b9489 ^



728fb838 ^
f2d8598d ^
0c0b9489 ^

728fb838 ^
0c0b9489 ^


728fb838 ^
0c0b9489 ^


728fb838 ^
0c0b9489 ^

2b82ef62 ^


0c0b9489 ^

728fb838 ^
0c0b9489 ^


728fb838 ^
d88232a3 ^
0c0b9489 ^

728fb838 ^
b4b0eb24 ^



728fb838 ^
0c0b9489 ^


f5b7240a ^
0c0b9489 ^








728fb838 ^
0c0b9489 ^



7ec262f8 ^
728fb838 ^
d88232a3 ^
7ec262f8 ^
0c0b9489 ^

728fb838 ^
0c0b9489 ^


728fb838 ^
0c0b9489 ^



728fb838 ^
d88232a3 ^
0c0b9489 ^


1bc3dd59 ^
728fb838 ^
1bc3dd59 ^
0c0b9489 ^

728fb838 ^
0c0b9489 ^




728fb838 ^
0c0b9489 ^

2b82ef62 ^










0c0b9489 ^
6a5d09b8 ^

















a8407dbf ^


6a5d09b8 ^
7aca88d4 ^

6a5d09b8 ^


7aca88d4 ^

6a5d09b8 ^


7aca88d4 ^

6a5d09b8 ^



7aca88d4 ^

6a5d09b8 ^


7aca88d4 ^


6a5d09b8 ^



7aca88d4 ^
6a5d09b8 ^




7aca88d4 ^



6a5d09b8 ^


7aca88d4 ^


6a5d09b8 ^

7aca88d4 ^











e65cebe4 ^


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


             
                                                         
                           


                                               
                                                                           




                                                                       
                                                                            




                                                                         
                                      
                                                                                 







                                          
                                               
                                     

                       
                                      


                                  
                                                           
                                               

                                      
                                                            


                                                                          

                                                        
                                                         
                                                            



                                           
                                                                                   
                                                  

                                      
                                                             


                                          
                                                


                                        
                                                                             

                                              


                                                                          

                                       
                                                        


                                             
                                                             
                                      

                                                                      
                                  



                                                                               
 


                                                    
                                          








                                                    
                                                                               



                                                              
                                                    
                                                                      
                                                    
                                                          

                                                              
                                                                          


                                                                           
                                                               



                                                                                
                                                     
                                              


                                                               
                                
                                       
                                       

                        
                                                                          




                                                
                                                            

                                                               










                                                       
 

















                                                                                   


                                    
                                

                                                                   


                                                                              

                                                                     


                                             

                                                                    



                                                                                                            

                                                                             


                                                                                      


                                                                             



                                           
                                                             




                                                         



                                                                               


                                                                 


                                                                               

                              











                                                                       


                      
import os
import shutil

from ranger.shared import EnvironmentAware, SettingsAware
from ranger import fsobject

class Actions(EnvironmentAware, SettingsAware):
	def search_forward(self):
		"""Search forward for the regexp in self.env.last_search"""
		if self.env.pwd:
			if self.env.pwd.search(self.env.last_search):
				self.env.cf = self.env.pwd.pointed_file

	def search_backward(self):
		"""Search backward for the regexp in self.env.last_search"""
		if self.env.pwd:
			if self.env.pwd.search(self.env.last_search, -1):
				self.env.cf = self.env.pwd.pointed_file

	def interrupt(self):
		"""Waits a short time.
		If CTRL+C is pressed while waiting, the program will be exited"""
		import time
		self.env.key_clear()
		try:
			time.sleep(0.2)
		except KeyboardInterrupt:
			raise SystemExit()

	def resize(self):
		"""Update the size of the UI"""
		self.ui.update_size()

	def exit(self):
		"""Exit the program"""
		raise SystemExit()

	def enter_dir(self, path):
		"""Enter the directory at the given path"""
		return self.env.enter_dir(path)

	def enter_bookmark(self, key):
		"""Enter the bookmark with the name <key>"""
		from ranger.container.bookmarks import NonexistantBookmark
		try:
			destination = self.bookmarks[key]
			pwd = self.env.pwd
			if destination.path != pwd.path:
				self.bookmarks.enter(key)
				self.bookmarks.remember(pwd)
		except NonexistantBookmark:
			pass

	def set_bookmark(self, key):
		"""Set the bookmark with the name <key> to the current directory"""
		self.bookmarks[key] = self.env.pwd

	def unset_bookmark(self, key):
		"""Delete the bookmark with the name <key>"""
		self.bookmarks.delete(key)

	def move_left(self):
		"""Enter the parent directory"""
		self.env.enter_dir('..')
	
	def move_right(self, mode = 0):
		"""Enter the current directory or execute the current file"""
		cf = self.env.cf
		if not self.env.enter_dir(cf):
			if cf is not None:
				if not self.execute_file(cf, mode = mode):
					self.open_console('@')

	def history_go(self, relative):
		"""Move back and forth in the history"""
		self.env.history_go(relative)
	
	def handle_mouse(self):
		"""Handle mouse-buttons if one was pressed"""
		self.ui.handle_mouse()

	def execute_file(self, files, app = '', flags = '', mode = 0):
		"""Execute a file.
		app is the name of a method in Applications, without the "app_"
		flags is a string consisting of applications.ALLOWED_FLAGS
		mode is a positive integer.
		Both flags and mode specify how the program is run."""

		if type(files) not in (list, tuple):
			files = [files]

		return self.apps.get(app)(
				mainfile = files[0],
				files = files,
				flags = flags,
				mode = mode,
				fm = self,
				stdin = None,
				apps = self.apps)
	
	def edit_file(self):
		"""Calls execute_file with the current file and app='editor'"""
		if self.env.cf is None:
			return
		self.execute_file(self.env.cf, app = 'editor')

	def open_console(self, mode=':', string=''):
		"""Open the console if the current UI supports that"""
		if hasattr(self.ui, 'open_console'):
			self.ui.open_console(mode, string)

	def move_pointer(self, relative = 0, absolute = None):
		"""Move the pointer down by <relative> or to <absolute>"""
		self.env.cf = self.env.pwd.move_pointer(relative, absolute)

	def move_pointer_by_pages(self, relative):
		"""Move the pointer down by <relative> pages"""
		self.env.cf = self.env.pwd.move_pointer(
				relative = int(relative * self.env.termsize[0]))

	def scroll(self, relative):
		"""Scroll down by <relative> lines"""
		if hasattr(self.ui, 'scroll'):
			self.ui.scroll(relative)
			self.env.cf = self.env.pwd.pointed_file

	def redraw_window(self):
		"""Redraw the window"""
		self.ui.redraw_window()

	def reset(self):
		"""Reset the filemanager, clearing the directory buffer"""
		old_path = self.env.pwd.path
		self.env.directories = {}
		self.enter_dir(old_path)

	def toggle_boolean_option(self, string):
		"""Toggle a boolean option named <string>"""
		if isinstance(self.env.settings[string], bool):
			self.env.settings[string] ^= True
	
	def force_load_preview(self, obj=None):
		if not obj:
			obj = self.env.cf

		if isinstance(obj, fsobject.Directory):
			if not obj.force_load:
				obj.force_load = True
			else:
				obj.load_content()


# ------------------------------------ filesystem operations

	def copy(self):
		"""Copy the selected items"""

		selected = set([self.env.cf])
		self.env.copy = set(f for f in selected if f in self.env.pwd.files)
		self.env.cut = False
	
	def cut(self):
		self.copy()
		self.env.cut = True

	def paste(self):
		"""Paste the selected items into the current directory"""
		from os.path import join, isdir
		copied_files = self.env.copy

		if not copied_files:
			return

		if self.env.cut:
			msg = self.notify("Moving ...", duration=0)
			self.ui.redraw()
			for f in self.env.copy:
				try:
					shutil.move(f.path, self.env.pwd.path)
				except (shutil.Error, IOError) as x:
					self.notify(str(x), bad=True)
			self.env.copy.clear()
			self.env.cut = False
		else:
			msg = self.notify("Copying ...", duration=0)
			self.ui.redraw()
			for f in self.env.copy:
				if isdir(f.path):
					try:
						shutil.copytree(f.path, join(self.env.pwd.path, f.basename))
					except (shutil.Error, IOError) as x:
						self.notify(str(x), bad=True)
				else:
					try:
						shutil.copy(f.path, self.env.pwd.path)
					except (shutil.Error, IOError) as x:
						self.notify(str(x), bad=True)
		msg.delete()

		self.env.pwd.load_content()

	def delete(self):
		msg = self.notify("Deleting ...", duration=0)
		selected = set([self.env.cf])
		self.env.copy -= selected
		if selected:
			for f in selected:
				if os.path.isdir(f.path):
					try:
						shutil.rmtree(f.path)
					except OSError as err:
						self.notify(str(err), bad=True)
				else:
					try:
						os.remove(f.path)
					except OSError as err:
						self.notify(str(err), bad=True)
		msg.delete()
	
	def mkdir(self, name):
		try:
			os.mkdir(os.path.join(self.env.pwd.path, name))
		except OSError as err:
			self.notify(str(err), bad=True)
	
	def notify(self, text, duration=4, bad=False):
		try:
			method = self.ui.display
		except AttributeError:
			pass
		else:
			return method(text, duration=duration, bad=bad)

	# aliases:
	cd = enter_dir