DownloadDb
from panda3d.core import DownloadDb
- class DownloadDb
Bases:
A listing of files within multifiles for management of client-side synchronization with a server-provided set of files.
This class manages one copy of the database for the client, representing the files on the client system, and another copy for the server, representing the files the server has available.
Inheritance diagram
-
enum Status
Status of a multifile is stored in this enum Note these values are in increasing order of “doneness” So if you are decompressed, you are complete If you are extracted, you are decompressed and complete
-
enumerator Status_incomplete = 0
-
enumerator Status_complete = 1
-
enumerator Status_decompressed = 2
-
enumerator Status_extracted = 3
-
enumerator Status_incomplete = 0
- __init__()
Primarily used for testing.
- __init__(param0: DownloadDb)
- __init__(server_file: Filename, client_file: Filename)
Create a download db with these client and server dbs
- __init__(server_file: Ramfile, client_file: Filename)
Create a download db with these client and server dbs
- addVersion(name: Filename, hash: HashVal, version: int)
Appends a new version of the file onto the end of the list, or changes the hash associated with a version previously added.
Note: version numbers start at 1
- clientMultifileComplete(mfname: str) bool
A multifile is complete when it is completely downloaded. Note: it may already be decompressed or extracted and it is still complete
- createNewServerDb()
Used on the server side makefiles to create a new clean server db
- getHash(name: Filename, version: int) HashVal
Returns the MD5 hash associated with the indicated version of the indicated file.
- getVersion(name: Filename, hash: HashVal) int
Returns the version number of this particular file, determined by looking up the hash generated from the file. Returns -1 if the version number cannot be determined.
- hasVersion(name: Filename) bool
Returns true if the indicated file has version information, false otherwise. Some files recorded in the database may not bother to track versions.
- insertNewVersion(name: Filename, hash: HashVal)
Inserts a new version 1 copy of the file, sliding all the other versions up by one.
-
enum Status