- 29 Aug, 2002 3 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
names and Python method names. (Checked this in on the trace branch by mistake.)
-
- 28 Aug, 2002 13 commits
-
-
Guido van Rossum authored
Change the wire protocol back by providing aliases.
-
Guido van Rossum authored
-
Guido van Rossum authored
Log cache flips and non-trivial read_index statistics (at info level). Move RCS info into docstring. Add XXX TO DO comment at top. Whitespace normalization.
-
Jeremy Hylton authored
Also, reformat the _finish() method and add some comments.
-
Guido van Rossum authored
-
Jeremy Hylton authored
same as the serialno in the last non-version data record. XXX This might be the only time that the serialno of a data record does not match the transaction id.
-
Jeremy Hylton authored
Remove checkNewSerialOnAbortVersion and checkNewSerialOnCommitVersion. They duplicate checkCommitVersionSerialno and checkAbortVersionSerialno.
-
Guido van Rossum authored
public API.
-
Jeremy Hylton authored
-
Guido van Rossum authored
Open the cache later to avoid scanning it twice if a connection is made right away. ClientStorage.close() is now idempotent. ClientStorage stores its addr argument as self._addr so the test suite doesn't have to dig it out of the rpc manager to reopen the storage as readonly. Renamed some of the callbacks into the client for clarity: begin -> beginVerify end -> endVerify invalidate -> invalidateVerify Invalidate -> invalidateTrans
-
Jeremy Hylton authored
Also refactor the test code to use _abortVersion() and _commitVersion().
-
Guido van Rossum authored
Note that the checkModifyAfterAbortVersion() test still fails; Jeremy wants to change abortVersion in FileStorage and DemoStorage to revert the serialno to the last nonversion serialno instead of assigning a brand new serialno, so I'm holding off on invalidating the cache in ClientStorage.abortVersion. Also note that on Red Hat 7.2, the ZEO test suite hangs in checkCommitLock2OnAbort or checkCommitLock2OnCommit; we'll try to debug this later today.
-
Jim Fulton authored
serials. Modified FileStorage and DemoStorage to pass this test.
-
- 27 Aug, 2002 9 commits
-
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Guido van Rossum authored
In checkSize(), delete the half of the index that's no longer valid.
-
Guido van Rossum authored
erase the half of the _index dict that is invalidated by the flip.
-
Barry Warsaw authored
-
Guido van Rossum authored
identification harder, especially when generic test classes are inherited by multiple specific test classes.)
-
Guido van Rossum authored
- Document the correct persistent filenames and the presence of a magic number at the start of the file. (Also document the conditions under which the cache is persistent.) - In __init__(), seek to the correct position to read the first record's serialno. It was reading the last byte of dlen plus the first 7 bytes of the serialno. - In invalidate(), fix the seek call after the read(8) to actually seek to the status byte. It was seeking 8 bytes too far, causing it to overwrite the 2nd byte of dlen instead of the status byte.
-
Guido van Rossum authored
This will cause three failures with the current version of ClientCache.py, because some of the tests were specifically written to verify certain bugs. I will check in fixes for thse bugs shortly.
-
Barry Warsaw authored
-
- 26 Aug, 2002 2 commits
-
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
- 23 Aug, 2002 4 commits
-
-
Jeremy Hylton authored
-
Jeremy Hylton authored
Use STUPID_LOG_FILE instead of EVENT_LOG_FILE so that it works with older Zopes. Make sure buf1 is defined even if open() never succeeds.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
- 22 Aug, 2002 4 commits
-
-
Jeremy Hylton authored
-
Jeremy Hylton authored
The one in ZEO/trigger.py was the good code, but we want it to live in ZEO/zrpc/trigger.py. This checkin makes that change. The key checkin of ZEO/trigger.py had this checkin comment: Fix trigger close/__del__. The close() mechanism for an asyncore file_dispatcher is not safe to call multiple times. It's calling os.close() on a file descriptor (int). Guido observed that if you call close() twice, you could be in trouble: 1) First close() call closes FD 6. 2) Another bit of code opens a new file, getting FD 6. 3) Second close() call closes FD 6. Waah! FD 6 is some other file. The workaround attempt here is to define a close() method on a trigger that only closes the file descriptors the first time. Also, make sure that both file descriptors are closed. The previous version only closed the read-end of the pipe.
-
Jeremy Hylton authored
Boost the accumulator limit to 60000. Use "".join() to accumulate multiple strings, since it is not unusual to have more than 2 strings to join together. Add comment explaining why we do this stuff.
-
Barry Warsaw authored
StorageTransactionError. This exception is raised when a transaction exhausts some finite storage resource. E.g. a transaction changing a huge number of objects could fill a Berkeley lock table. Also, removed some unnecessary `pass' statements, and improved consistency in class docstrings (first line is a complete sentence).
-
- 16 Aug, 2002 5 commits
-
-
Jeremy Hylton authored
Use this method to set self._transaction to None and notify another thread.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
Not only can we move the assignment of self._transaction about the timestamp / id initialization, but we can eliminate the test for self._server being None. It will never be None. self._server is the first instance variable initialized by __init__(). It is also assigned to in notifyConnected() and notifyDisconnected(), which do not assign it to None.
-
Tim Peters authored
_basic_init(): repair tpc_cond comments in light of recent changes. tpc_begin: when self._server is None, do tpc_cond.notify() to let other threads waiting for "_transaction is None" to continue.
-
Tim Peters authored
anymore. Tried to fix that. Jeremy, please review the new XXX comments.
-