|
|
@ -1,5 +1,5 @@ |
|
|
|
from datetime import datetime |
|
|
|
from dvrip import DVRIPCam |
|
|
|
from asyncio_dvrip import DVRIPCam |
|
|
|
import json |
|
|
|
import struct |
|
|
|
import base64 |
|
|
@ -49,9 +49,10 @@ class File: |
|
|
|
print(data) |
|
|
|
return File(data, data.get("channel"), data.get("stream")) |
|
|
|
|
|
|
|
def generate_bytes(self, client:DVRIPCam, version = 0): |
|
|
|
async def generate_first_bytes(self, client:DVRIPCam, version = 0): |
|
|
|
client.logger.debug("init request") |
|
|
|
#init request |
|
|
|
client.send( |
|
|
|
await client.send( |
|
|
|
1424, |
|
|
|
{ |
|
|
|
"Name": "OPPlayBack", |
|
|
@ -69,7 +70,7 @@ class File: |
|
|
|
}, |
|
|
|
}, |
|
|
|
) |
|
|
|
|
|
|
|
client.logger.debug("download request") |
|
|
|
#download request |
|
|
|
msg = 1420 |
|
|
|
data = { |
|
|
@ -88,11 +89,12 @@ class File: |
|
|
|
}, |
|
|
|
} |
|
|
|
|
|
|
|
if client.socket is None: |
|
|
|
#todo raise error |
|
|
|
return [] |
|
|
|
#if client.socket_writer is None: |
|
|
|
# client.logger.debug("socket writer is null") |
|
|
|
# await client.connect() |
|
|
|
|
|
|
|
client.busy.acquire() |
|
|
|
client.logger.debug("Blocking busy") |
|
|
|
await client.busy.acquire() |
|
|
|
if hasattr(data, "__iter__"): |
|
|
|
if version == 1: |
|
|
|
data["SessionID"] = f"{client.session:#0{12}x}" |
|
|
@ -116,10 +118,13 @@ class File: |
|
|
|
+ data |
|
|
|
+ tail |
|
|
|
) |
|
|
|
client.logger.debug("Send first package") |
|
|
|
client.socket_send(pkt) |
|
|
|
data = client.socket_recv(20) |
|
|
|
client.logger.debug("Grab first response") |
|
|
|
data = await client.socket_recv(20) |
|
|
|
client.logger.debug(data) |
|
|
|
if data is None or len(data) < 20: |
|
|
|
return [] |
|
|
|
return None |
|
|
|
( |
|
|
|
head, |
|
|
|
version, |
|
|
@ -128,20 +133,20 @@ class File: |
|
|
|
msgid, |
|
|
|
len_data, |
|
|
|
) = struct.unpack("BB2xII2xHI", data) |
|
|
|
return self.get_file_stream(client, len_data) |
|
|
|
return len_data |
|
|
|
|
|
|
|
def get_file_stream(self, client: DVRIPCam, first_chunk_size): |
|
|
|
yield client.receive_with_timeout(first_chunk_size) |
|
|
|
async def get_file_stream(self, client: DVRIPCam, first_chunk_size) -> bytes: |
|
|
|
yield bytes(await client.receive_with_timeout(first_chunk_size)) |
|
|
|
while True: |
|
|
|
header = client.receive_with_timeout(20) |
|
|
|
header = await client.receive_with_timeout(20) |
|
|
|
len_data = struct.unpack("I", header[16:])[0] |
|
|
|
|
|
|
|
if len_data == 0: |
|
|
|
break |
|
|
|
|
|
|
|
yield client.receive_with_timeout(len_data) |
|
|
|
client.busy.release() |
|
|
|
client.send( |
|
|
|
yield bytes(await client.receive_with_timeout(len_data)) |
|
|
|
await client.busy.release() |
|
|
|
await client.send( |
|
|
|
1420, |
|
|
|
{ |
|
|
|
"Name": "OPPlayBack", |
|
|
@ -160,12 +165,12 @@ class File: |
|
|
|
}, |
|
|
|
}, |
|
|
|
) |
|
|
|
yield b"" |
|
|
|
yield bytes(b"") |
|
|
|
|
|
|
|
def list_local_files(client: DVRIPCam, startTime, endTime, filetype, channel = 0, streamType = 0): |
|
|
|
async def list_local_files(client: DVRIPCam, startTime, endTime, filetype, channel = 0, streamType = 0): |
|
|
|
# 1440 OPFileQuery |
|
|
|
result = [] |
|
|
|
data = client.send( |
|
|
|
data = await client.send( |
|
|
|
1440, |
|
|
|
{ |
|
|
|
"Name": "OPFileQuery", |
|
|
@ -203,7 +208,7 @@ def list_local_files(client: DVRIPCam, startTime, endTime, filetype, channel = 0 |
|
|
|
max_event["status"] = "run" |
|
|
|
while len(data["OPFileQuery"]) == 64 or max_event["status"] == "limit": |
|
|
|
newStartTime = data["OPFileQuery"][-1]["BeginTime"] |
|
|
|
data = client.send( |
|
|
|
data = await client.send( |
|
|
|
1440, |
|
|
|
{ |
|
|
|
"Name": "OPFileQuery", |
|
|
|