Add types to objects
This commit is contained in:
18
ugit/data.py
18
ugit/data.py
@@ -10,13 +10,21 @@ def init():
|
||||
Path.mkdir(f"{GIT_DIR}/objects")
|
||||
|
||||
|
||||
def hash_object(data):
|
||||
oid = hashlib.sha1(data).hexdigest()
|
||||
def hash_object(data, type_="blob"):
|
||||
obj = type_.encode() + b"\x00" + data
|
||||
oid = hashlib.sha1(obj).hexdigest()
|
||||
with open(f"{GIT_DIR}/objects/{oid}", "wb") as out:
|
||||
out.write(data)
|
||||
out.write(obj)
|
||||
return oid
|
||||
|
||||
|
||||
def get_object(oid):
|
||||
def get_object(oid, expected="blob"):
|
||||
with open(f"{GIT_DIR}/objects/{oid}", "rb") as f:
|
||||
return f.read()
|
||||
obj = f.read()
|
||||
|
||||
type_, _, content = obj.partition(b"\x00")
|
||||
type_ = type_.decode()
|
||||
|
||||
if expected is not None:
|
||||
assert type_ == expected, f"Expected {expected}, got {type_}"
|
||||
return content
|
||||
|
||||
Reference in New Issue
Block a user