iterators.py
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:2k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. """
  2. @file iterators.py
  3. @brief Useful general-purpose iterators.
  4. $LicenseInfo:firstyear=2008&license=mit$
  5. Copyright (c) 2008-2010, Linden Research, Inc.
  6. Permission is hereby granted, free of charge, to any person obtaining a copy
  7. of this software and associated documentation files (the "Software"), to deal
  8. in the Software without restriction, including without limitation the rights
  9. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. copies of the Software, and to permit persons to whom the Software is
  11. furnished to do so, subject to the following conditions:
  12. The above copyright notice and this permission notice shall be included in
  13. all copies or substantial portions of the Software.
  14. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  20. THE SOFTWARE.
  21. $/LicenseInfo$
  22. """
  23. from __future__ import nested_scopes
  24. def iter_chunks(rows, aggregate_size=100):
  25.     """
  26.     Given an iterable set of items (@p rows), produces lists of up to @p
  27.     aggregate_size items at a time, for example:
  28.     
  29.     iter_chunks([1,2,3,4,5,6,7,8,9,10], 3)
  30.     Values for @p aggregate_size < 1 will raise ValueError.
  31.     Will return a generator that produces, in the following order:
  32.     - [1, 2, 3]
  33.     - [4, 5, 6]
  34.     - [7, 8, 9]
  35.     - [10]
  36.     """
  37.     if aggregate_size < 1:
  38.         raise ValueError()
  39.     def iter_chunks_inner():
  40.         row_iter = iter(rows)
  41.         done = False
  42.         agg = []
  43.         while not done:
  44.             try:
  45.                 row = row_iter.next()
  46.                 agg.append(row)
  47.             except StopIteration:
  48.                 done = True
  49.             if agg and (len(agg) >= aggregate_size or done):
  50.                 yield agg
  51.                 agg = []
  52.     
  53.     return iter_chunks_inner()