Python os.SEEK_SET Examples
The following are 30
code examples of os.SEEK_SET().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
os
, or try the search function
.
Example #1
Source File: test_fd.py From ironpython2 with Apache License 2.0 | 6 votes |
def test_open(self): test_filename = "tmp.open.test" fd1 = os.open(test_filename + "1", flags) # make sure fd+1 and fd+2 are closed os.closerange(fd1 + 1, fd1 + 2) # open should return the lowest-numbered file descriptor not currently open # for the process fd2 = os.open(test_filename + "2", flags) fd3 = os.open(test_filename + "3", flags) os.close(fd2) self.assertRaisesMessage(OSError, "[Errno 9] Bad file descriptor", os.lseek, fd2, os.SEEK_SET, 0) fd4 = os.open(test_filename + "4", flags) self.assertEqual(fd4, fd2) os.close(fd1) os.close(fd3) os.close(fd4) for i in range(1, 5): os.unlink(test_filename + str(i))
Example #2
Source File: tarfile.py From meddle with MIT License | 6 votes |
def seek(self, pos, whence=os.SEEK_SET): """Seek to a position in the file. """ if self.closed: raise ValueError("I/O operation on closed file") if whence == os.SEEK_SET: self.position = min(max(pos, 0), self.size) elif whence == os.SEEK_CUR: if pos < 0: self.position = max(self.position + pos, 0) else: self.position = min(self.position + pos, self.size) elif whence == os.SEEK_END: self.position = max(min(self.size + pos, self.size), 0) else: raise ValueError("Invalid argument") self.buffer = "" self.fileobj.seek(self.position)
Example #3
Source File: buddy.py From ds_store with MIT License | 6 votes |
def flush(self): if self._dirty: size = self._root_block_size() self.allocate(size, 0) with self.get_block(0) as rblk: self._write_root_block_into(rblk) addr = self._offsets[0] offset = addr & ~0x1f size = 1 << (addr & 0x1f) self._file.seek(0, os.SEEK_SET) self._file.write(struct.pack(b'>I4sIII16s', 1, b'Bud1', offset, size, offset, self._unknown1)) self._dirty = False self._file.flush()
Example #4
Source File: __init__.py From vaping with Apache License 2.0 | 6 votes |
def __init__(self, config, ctx, emit=None): super(FileProbe, self).__init__(config, ctx, emit) self.path = self.pluginmgr_config.get("path") self.run_level = 0 self.backlog = int(self.pluginmgr_config.get("backlog",0)) self.max_lines = int(self.pluginmgr_config.get("max_lines",1000)) if self.path: self.fh = open(self.path, "r") self.fh.seek(0,2) if self.backlog: try: self.fh.seek(self.fh.tell() - self.backlog, os.SEEK_SET) except ValueError as exc: if str(exc).find("negative seek position") > -1: self.fh.seek(0) else: raise
Example #5
Source File: tarfile.py From recruit with Apache License 2.0 | 6 votes |
def seek(self, pos, whence=os.SEEK_SET): """Seek to a position in the file. """ if self.closed: raise ValueError("I/O operation on closed file") if whence == os.SEEK_SET: self.position = min(max(pos, 0), self.size) elif whence == os.SEEK_CUR: if pos < 0: self.position = max(self.position + pos, 0) else: self.position = min(self.position + pos, self.size) elif whence == os.SEEK_END: self.position = max(min(self.size + pos, self.size), 0) else: raise ValueError("Invalid argument") self.buffer = b"" self.fileobj.seek(self.position)
Example #6
Source File: tarfile.py From Safejumper-for-Desktop with GNU General Public License v2.0 | 6 votes |
def seek(self, pos, whence=os.SEEK_SET): """Seek to a position in the file. """ if self.closed: raise ValueError("I/O operation on closed file") if whence == os.SEEK_SET: self.position = min(max(pos, 0), self.size) elif whence == os.SEEK_CUR: if pos < 0: self.position = max(self.position + pos, 0) else: self.position = min(self.position + pos, self.size) elif whence == os.SEEK_END: self.position = max(min(self.size + pos, self.size), 0) else: raise ValueError("Invalid argument") self.buffer = b"" self.fileobj.seek(self.position)
Example #7
Source File: server.py From Pyro5 with MIT License | 6 votes |
def annotation_stream(self, with_checksum=False): # create a large temporary file f = tempfile.TemporaryFile() for _ in range(5000): f.write(b"1234567890!" * 1000) filesize = f.tell() f.seek(os.SEEK_SET, 0) # return the file data via annotation stream (remote iterator) annotation_size = 500000 print("transmitting file via annotations stream (%d bytes in chunks of %d)..." % (filesize, annotation_size)) with f: while True: chunk = f.read(annotation_size) if not chunk: break # store the file data chunk in the FDAT response annotation, # and return the current file position and checksum (if asked). current_context.response_annotations = {"FDAT": chunk} yield f.tell(), zlib.crc32(chunk) if with_checksum else 0
Example #8
Source File: tarfile.py From anpr with Creative Commons Attribution 4.0 International | 6 votes |
def seek(self, pos, whence=os.SEEK_SET): """Seek to a position in the file. """ if self.closed: raise ValueError("I/O operation on closed file") if whence == os.SEEK_SET: self.position = min(max(pos, 0), self.size) elif whence == os.SEEK_CUR: if pos < 0: self.position = max(self.position + pos, 0) else: self.position = min(self.position + pos, self.size) elif whence == os.SEEK_END: self.position = max(min(self.size + pos, self.size), 0) else: raise ValueError("Invalid argument") self.buffer = b"" self.fileobj.seek(self.position)
Example #9
Source File: client.py From Safejumper-for-Desktop with GNU General Public License v2.0 | 6 votes |
def _determineLength(self, fObj): """ Determine how many bytes can be read out of C{fObj} (assuming it is not modified from this point on). If the determination cannot be made, return C{UNKNOWN_LENGTH}. """ try: seek = fObj.seek tell = fObj.tell except AttributeError: return UNKNOWN_LENGTH originalPosition = tell() seek(0, os.SEEK_END) end = tell() seek(originalPosition, os.SEEK_SET) return end - originalPosition
Example #10
Source File: archive.py From king-phisher with BSD 3-Clause "New" or "Revised" License | 6 votes |
def add_data(self, name, data): """ Add arbitrary data directly to the archive under the specified name. This allows data to be directly inserted into the archive without first writing it to a file or file like object. :param str name: The name of the destination file in the archive. :param data: The data to place into the archive. :type data: bytes, str """ if its.py_v2 and isinstance(data, unicode): data = data.encode(self.encoding) elif its.py_v3 and isinstance(data, str): data = data.encode(self.encoding) pseudo_file = io.BytesIO() pseudo_file.write(data) tarinfo = tarfile.TarInfo(name=name) tarinfo.mtime = self.mtime tarinfo.size = pseudo_file.tell() pseudo_file.seek(os.SEEK_SET) self._tar_h.addfile(tarinfo=tarinfo, fileobj=pseudo_file)
Example #11
Source File: tarfile.py From Mastering-Elasticsearch-7.0 with MIT License | 6 votes |
def seek(self, pos, whence=os.SEEK_SET): """Seek to a position in the file. """ if self.closed: raise ValueError("I/O operation on closed file") if whence == os.SEEK_SET: self.position = min(max(pos, 0), self.size) elif whence == os.SEEK_CUR: if pos < 0: self.position = max(self.position + pos, 0) else: self.position = min(self.position + pos, self.size) elif whence == os.SEEK_END: self.position = max(min(self.size + pos, self.size), 0) else: raise ValueError("Invalid argument") self.buffer = b"" self.fileobj.seek(self.position)
Example #12
Source File: tarfile.py From Mastering-Elasticsearch-7.0 with MIT License | 6 votes |
def seek(self, pos, whence=os.SEEK_SET): """Seek to a position in the file. """ if self.closed: raise ValueError("I/O operation on closed file") if whence == os.SEEK_SET: self.position = min(max(pos, 0), self.size) elif whence == os.SEEK_CUR: if pos < 0: self.position = max(self.position + pos, 0) else: self.position = min(self.position + pos, self.size) elif whence == os.SEEK_END: self.position = max(min(self.size + pos, self.size), 0) else: raise ValueError("Invalid argument") self.buffer = b"" self.fileobj.seek(self.position)
Example #13
Source File: baseheader.py From torba with MIT License | 6 votes |
def connect(self, start: int, headers: bytes) -> int: added = 0 bail = False loop = asyncio.get_running_loop() async with self._header_connect_lock: for height, chunk in self._iterate_chunks(start, headers): try: # validate_chunk() is CPU bound and reads previous chunks from file system await loop.run_in_executor(None, self.validate_chunk, height, chunk) except InvalidHeader as e: bail = True chunk = chunk[:(height-e.height)*self.header_size] written = 0 if chunk: self.io.seek(height * self.header_size, os.SEEK_SET) written = self.io.write(chunk) // self.header_size self.io.truncate() # .seek()/.write()/.truncate() might also .flush() when needed # the goal here is mainly to ensure we're definitely flush()'ing await loop.run_in_executor(None, self.io.flush) self._size = None added += written if bail: break return added
Example #14
Source File: tarfile.py From oss-ftp with MIT License | 6 votes |
def seek(self, pos, whence=os.SEEK_SET): """Seek to a position in the file. """ if self.closed: raise ValueError("I/O operation on closed file") if whence == os.SEEK_SET: self.position = min(max(pos, 0), self.size) elif whence == os.SEEK_CUR: if pos < 0: self.position = max(self.position + pos, 0) else: self.position = min(self.position + pos, self.size) elif whence == os.SEEK_END: self.position = max(min(self.size + pos, self.size), 0) else: raise ValueError("Invalid argument") self.buffer = "" self.fileobj.seek(self.position)
Example #15
Source File: tarfile.py From ironpython2 with Apache License 2.0 | 6 votes |
def seek(self, pos, whence=os.SEEK_SET): """Seek to a position in the file. """ if self.closed: raise ValueError("I/O operation on closed file") if whence == os.SEEK_SET: self.position = min(max(pos, 0), self.size) elif whence == os.SEEK_CUR: if pos < 0: self.position = max(self.position + pos, 0) else: self.position = min(self.position + pos, self.size) elif whence == os.SEEK_END: self.position = max(min(self.size + pos, self.size), 0) else: raise ValueError("Invalid argument") self.buffer = "" self.fileobj.seek(self.position)
Example #16
Source File: TiffImagePlugin.py From teleport with Apache License 2.0 | 6 votes |
def setup(self): # Reset everything. self.f.seek(self.beginning, os.SEEK_SET) self.whereToWriteNewIFDOffset = None self.offsetOfNewPage = 0 self.IIMM = IIMM = self.f.read(4) if not IIMM: # empty file - first page self.isFirst = True return self.isFirst = False if IIMM == b"II\x2a\x00": self.setEndian("<") elif IIMM == b"MM\x00\x2a": self.setEndian(">") else: raise RuntimeError("Invalid TIFF file header") self.skipIFDs() self.goToEnd()
Example #17
Source File: tarfile.py From oss-ftp with MIT License | 6 votes |
def seek(self, pos, whence=os.SEEK_SET): """Seek to a position in the file. """ if self.closed: raise ValueError("I/O operation on closed file") if whence == os.SEEK_SET: self.position = min(max(pos, 0), self.size) elif whence == os.SEEK_CUR: if pos < 0: self.position = max(self.position + pos, 0) else: self.position = min(self.position + pos, self.size) elif whence == os.SEEK_END: self.position = max(min(self.size + pos, self.size), 0) else: raise ValueError("Invalid argument") self.buffer = b"" self.fileobj.seek(self.position)
Example #18
Source File: make_data.py From DCC with MIT License | 6 votes |
def load_mnist(root, training): if training: data = 'train-images-idx3-ubyte' label = 'train-labels-idx1-ubyte' N = 60000 else: data = 't10k-images-idx3-ubyte' label = 't10k-labels-idx1-ubyte' N = 10000 with open(osp.join(root, data), 'rb') as fin: fin.seek(16, os.SEEK_SET) X = np.fromfile(fin, dtype=np.uint8).reshape((N, 28 * 28)) with open(osp.join(root, label), 'rb') as fin: fin.seek(8, os.SEEK_SET) Y = np.fromfile(fin, dtype=np.uint8) return X, Y
Example #19
Source File: tarfile.py From Python24 with MIT License | 6 votes |
def seek(self, pos, whence=os.SEEK_SET): """Seek to a position in the file. """ if self.closed: raise ValueError("I/O operation on closed file") if whence == os.SEEK_SET: self.position = min(max(pos, 0), self.size) elif whence == os.SEEK_CUR: if pos < 0: self.position = max(self.position + pos, 0) else: self.position = min(self.position + pos, self.size) elif whence == os.SEEK_END: self.position = max(min(self.size + pos, self.size), 0) else: raise ValueError("Invalid argument") self.buffer = b"" self.fileobj.seek(self.position)
Example #20
Source File: meta_data.py From kobo-predict with BSD 2-Clause "Simplified" License | 6 votes |
def create_media(media): """Download media link""" if is_valid_url(media.data_value): filename = media.data_value.split('/')[-1] data_file = NamedTemporaryFile() content_type = mimetypes.guess_type(filename) with closing(requests.get(media.data_value, stream=True)) as r: for chunk in r.iter_content(chunk_size=CHUNK_SIZE): if chunk: data_file.write(chunk) data_file.seek(os.SEEK_SET, os.SEEK_END) size = os.path.getsize(data_file.name) data_file.seek(os.SEEK_SET) media.data_value = filename media.data_file = InMemoryUploadedFile( data_file, 'data_file', filename, content_type, size, charset=None) return media return None
Example #21
Source File: meta_data.py From kobo-predict with BSD 2-Clause "Simplified" License | 6 votes |
def _set_hash(self): if not self.data_file: return None file_exists = self.data_file.storage.exists(self.data_file.name) if (file_exists and self.data_file.name != '') \ or (not file_exists and self.data_file): try: self.data_file.seek(os.SEEK_SET) except IOError: return u'' else: self.file_hash = u'md5:%s' \ % md5(self.data_file.read()).hexdigest() return self.file_hash return u''
Example #22
Source File: tarfile.py From kobo-predict with BSD 2-Clause "Simplified" License | 6 votes |
def seek(self, pos, whence=os.SEEK_SET): """Seek to a position in the file. """ if self.closed: raise ValueError("I/O operation on closed file") if whence == os.SEEK_SET: self.position = min(max(pos, 0), self.size) elif whence == os.SEEK_CUR: if pos < 0: self.position = max(self.position + pos, 0) else: self.position = min(self.position + pos, self.size) elif whence == os.SEEK_END: self.position = max(min(self.size + pos, self.size), 0) else: raise ValueError("Invalid argument") self.buffer = b"" self.fileobj.seek(self.position)
Example #23
Source File: tarfile.py From vnpy_crypto with MIT License | 6 votes |
def seek(self, pos, whence=os.SEEK_SET): """Seek to a position in the file. """ if self.closed: raise ValueError("I/O operation on closed file") if whence == os.SEEK_SET: self.position = min(max(pos, 0), self.size) elif whence == os.SEEK_CUR: if pos < 0: self.position = max(self.position + pos, 0) else: self.position = min(self.position + pos, self.size) elif whence == os.SEEK_END: self.position = max(min(self.size + pos, self.size), 0) else: raise ValueError("Invalid argument") self.buffer = b"" self.fileobj.seek(self.position)
Example #24
Source File: common.py From deplicate with MIT License | 6 votes |
def sidesum(filename, chksize, bufsize, offset=0): if bufsize < chksize: bufsizes = (bufsize, chksize % bufsize) else: bufsizes = (chksize, 0) offset = abs(offset) with readopen(filename, sequential=False, direct=True) as (read, fd): whence = (offset, os.SEEK_SET) header = _chunksum(fd, read, chksize, bufsizes, whence) whence = (-chksize - offset, os.SEEK_END) footer = _chunksum(fd, read, chksize, bufsizes, whence) return header, footer
Example #25
Source File: utils.py From clusterfuzz with Apache License 2.0 | 6 votes |
def read_from_handle_truncated(file_handle, max_len): """Read from file handle, limiting output to |max_len| by removing output in the middle.""" file_handle.seek(0, os.SEEK_END) file_size = file_handle.tell() file_handle.seek(0, os.SEEK_SET) if file_size <= max_len: return file_handle.read() # Read first and last |half_max_len| bytes. half_max_len = max_len // 2 start = file_handle.read(half_max_len) file_handle.seek(file_size - half_max_len, os.SEEK_SET) end = file_handle.read(half_max_len) truncated_marker = b'\n...truncated %d bytes...\n' % (file_size - max_len) return start + truncated_marker + end
Example #26
Source File: tarfile.py From FuYiSpider with Apache License 2.0 | 6 votes |
def seek(self, pos, whence=os.SEEK_SET): """Seek to a position in the file. """ if self.closed: raise ValueError("I/O operation on closed file") if whence == os.SEEK_SET: self.position = min(max(pos, 0), self.size) elif whence == os.SEEK_CUR: if pos < 0: self.position = max(self.position + pos, 0) else: self.position = min(self.position + pos, self.size) elif whence == os.SEEK_END: self.position = max(min(self.size + pos, self.size), 0) else: raise ValueError("Invalid argument") self.buffer = b"" self.fileobj.seek(self.position)
Example #27
Source File: tarfile.py From FuYiSpider with Apache License 2.0 | 6 votes |
def seek(self, pos, whence=os.SEEK_SET): """Seek to a position in the file. """ if self.closed: raise ValueError("I/O operation on closed file") if whence == os.SEEK_SET: self.position = min(max(pos, 0), self.size) elif whence == os.SEEK_CUR: if pos < 0: self.position = max(self.position + pos, 0) else: self.position = min(self.position + pos, self.size) elif whence == os.SEEK_END: self.position = max(min(self.size + pos, self.size), 0) else: raise ValueError("Invalid argument") self.buffer = b"" self.fileobj.seek(self.position)
Example #28
Source File: tarfile.py From Computable with MIT License | 6 votes |
def seek(self, pos, whence=os.SEEK_SET): """Seek to a position in the file. """ if self.closed: raise ValueError("I/O operation on closed file") if whence == os.SEEK_SET: self.position = min(max(pos, 0), self.size) elif whence == os.SEEK_CUR: if pos < 0: self.position = max(self.position + pos, 0) else: self.position = min(self.position + pos, self.size) elif whence == os.SEEK_END: self.position = max(min(self.size + pos, self.size), 0) else: raise ValueError("Invalid argument") self.buffer = "" self.fileobj.seek(self.position)
Example #29
Source File: __init__.py From CyberScan with GNU General Public License v3.0 | 6 votes |
def _get_org(self, ipnum): """ Seek and return organization or ISP name for ipnum. Return org/isp name. :arg ipnum: Result of ip2long conversion """ seek_org = self._seek_country(ipnum) if seek_org == self._databaseSegments: return None read_length = (2 * self._recordLength - 1) * self._databaseSegments try: self._lock.acquire() self._fp.seek(seek_org + read_length, os.SEEK_SET) buf = self._fp.read(const.MAX_ORG_RECORD_LENGTH) finally: self._lock.release() if PY3 and type(buf) is bytes: buf = buf.decode(ENCODING) return buf[:buf.index(chr(0))]
Example #30
Source File: tarfile.py From BinderFilter with MIT License | 6 votes |
def seek(self, pos, whence=os.SEEK_SET): """Seek to a position in the file. """ if self.closed: raise ValueError("I/O operation on closed file") if whence == os.SEEK_SET: self.position = min(max(pos, 0), self.size) elif whence == os.SEEK_CUR: if pos < 0: self.position = max(self.position + pos, 0) else: self.position = min(self.position + pos, self.size) elif whence == os.SEEK_END: self.position = max(min(self.size + pos, self.size), 0) else: raise ValueError("Invalid argument") self.buffer = "" self.fileobj.seek(self.position)