crawlo 1.1.0__py3-none-any.whl → 1.1.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of crawlo might be problematic. Click here for more details.

Files changed (120) hide show
  1. crawlo/__init__.py +34 -24
  2. crawlo/__version__.py +1 -1
  3. crawlo/cli.py +40 -40
  4. crawlo/commands/__init__.py +13 -13
  5. crawlo/commands/check.py +594 -155
  6. crawlo/commands/genspider.py +152 -111
  7. crawlo/commands/list.py +156 -119
  8. crawlo/commands/run.py +285 -170
  9. crawlo/commands/startproject.py +196 -101
  10. crawlo/commands/stats.py +188 -167
  11. crawlo/commands/utils.py +187 -0
  12. crawlo/config.py +280 -0
  13. crawlo/core/__init__.py +2 -2
  14. crawlo/core/engine.py +171 -158
  15. crawlo/core/enhanced_engine.py +190 -0
  16. crawlo/core/processor.py +40 -40
  17. crawlo/core/scheduler.py +162 -57
  18. crawlo/crawler.py +1028 -493
  19. crawlo/downloader/__init__.py +242 -78
  20. crawlo/downloader/aiohttp_downloader.py +212 -199
  21. crawlo/downloader/cffi_downloader.py +252 -277
  22. crawlo/downloader/httpx_downloader.py +257 -246
  23. crawlo/event.py +11 -11
  24. crawlo/exceptions.py +78 -78
  25. crawlo/extension/__init__.py +31 -31
  26. crawlo/extension/log_interval.py +49 -49
  27. crawlo/extension/log_stats.py +44 -44
  28. crawlo/extension/logging_extension.py +34 -34
  29. crawlo/filters/__init__.py +154 -37
  30. crawlo/filters/aioredis_filter.py +242 -150
  31. crawlo/filters/memory_filter.py +269 -202
  32. crawlo/items/__init__.py +23 -23
  33. crawlo/items/base.py +21 -21
  34. crawlo/items/fields.py +53 -53
  35. crawlo/items/items.py +104 -104
  36. crawlo/middleware/__init__.py +21 -21
  37. crawlo/middleware/default_header.py +32 -32
  38. crawlo/middleware/download_delay.py +28 -28
  39. crawlo/middleware/middleware_manager.py +135 -135
  40. crawlo/middleware/proxy.py +248 -245
  41. crawlo/middleware/request_ignore.py +30 -30
  42. crawlo/middleware/response_code.py +18 -18
  43. crawlo/middleware/response_filter.py +26 -26
  44. crawlo/middleware/retry.py +125 -90
  45. crawlo/mode_manager.py +201 -0
  46. crawlo/network/__init__.py +21 -7
  47. crawlo/network/request.py +311 -203
  48. crawlo/network/response.py +269 -166
  49. crawlo/pipelines/__init__.py +13 -13
  50. crawlo/pipelines/console_pipeline.py +39 -39
  51. crawlo/pipelines/csv_pipeline.py +317 -0
  52. crawlo/pipelines/json_pipeline.py +219 -0
  53. crawlo/pipelines/mongo_pipeline.py +116 -116
  54. crawlo/pipelines/mysql_pipeline.py +195 -195
  55. crawlo/pipelines/pipeline_manager.py +56 -56
  56. crawlo/project.py +153 -0
  57. crawlo/queue/pqueue.py +37 -0
  58. crawlo/queue/queue_manager.py +304 -0
  59. crawlo/queue/redis_priority_queue.py +192 -0
  60. crawlo/settings/__init__.py +7 -7
  61. crawlo/settings/default_settings.py +226 -169
  62. crawlo/settings/setting_manager.py +99 -99
  63. crawlo/spider/__init__.py +639 -129
  64. crawlo/stats_collector.py +59 -59
  65. crawlo/subscriber.py +106 -106
  66. crawlo/task_manager.py +30 -27
  67. crawlo/templates/crawlo.cfg.tmpl +10 -10
  68. crawlo/templates/project/__init__.py.tmpl +3 -3
  69. crawlo/templates/project/items.py.tmpl +17 -17
  70. crawlo/templates/project/middlewares.py.tmpl +87 -76
  71. crawlo/templates/project/pipelines.py.tmpl +336 -64
  72. crawlo/templates/project/run.py.tmpl +239 -0
  73. crawlo/templates/project/settings.py.tmpl +248 -54
  74. crawlo/templates/project/spiders/__init__.py.tmpl +5 -5
  75. crawlo/templates/spider/spider.py.tmpl +178 -32
  76. crawlo/utils/__init__.py +7 -7
  77. crawlo/utils/controlled_spider_mixin.py +336 -0
  78. crawlo/utils/date_tools.py +233 -233
  79. crawlo/utils/db_helper.py +343 -343
  80. crawlo/utils/func_tools.py +82 -82
  81. crawlo/utils/large_scale_config.py +287 -0
  82. crawlo/utils/large_scale_helper.py +344 -0
  83. crawlo/utils/log.py +128 -128
  84. crawlo/utils/queue_helper.py +176 -0
  85. crawlo/utils/request.py +267 -267
  86. crawlo/utils/request_serializer.py +220 -0
  87. crawlo/utils/spider_loader.py +62 -62
  88. crawlo/utils/system.py +11 -11
  89. crawlo/utils/tools.py +4 -4
  90. crawlo/utils/url.py +39 -39
  91. crawlo-1.1.2.dist-info/METADATA +567 -0
  92. crawlo-1.1.2.dist-info/RECORD +108 -0
  93. examples/__init__.py +7 -0
  94. tests/__init__.py +7 -7
  95. tests/test_final_validation.py +154 -0
  96. tests/test_proxy_health_check.py +32 -32
  97. tests/test_proxy_middleware_integration.py +136 -136
  98. tests/test_proxy_providers.py +56 -56
  99. tests/test_proxy_stats.py +19 -19
  100. tests/test_proxy_strategies.py +59 -59
  101. tests/test_redis_config.py +29 -0
  102. tests/test_redis_queue.py +225 -0
  103. tests/test_request_serialization.py +71 -0
  104. tests/test_scheduler.py +242 -0
  105. crawlo/pipelines/mysql_batch_pipline.py +0 -273
  106. crawlo/utils/concurrency_manager.py +0 -125
  107. crawlo/utils/pqueue.py +0 -174
  108. crawlo/utils/project.py +0 -197
  109. crawlo-1.1.0.dist-info/METADATA +0 -49
  110. crawlo-1.1.0.dist-info/RECORD +0 -97
  111. examples/gxb/items.py +0 -36
  112. examples/gxb/run.py +0 -16
  113. examples/gxb/settings.py +0 -72
  114. examples/gxb/spider/__init__.py +0 -2
  115. examples/gxb/spider/miit_spider.py +0 -180
  116. examples/gxb/spider/telecom_device.py +0 -129
  117. {examples/gxb → crawlo/queue}/__init__.py +0 -0
  118. {crawlo-1.1.0.dist-info → crawlo-1.1.2.dist-info}/WHEEL +0 -0
  119. {crawlo-1.1.0.dist-info → crawlo-1.1.2.dist-info}/entry_points.txt +0 -0
  120. {crawlo-1.1.0.dist-info → crawlo-1.1.2.dist-info}/top_level.txt +0 -0
@@ -1,56 +1,56 @@
1
- #!/usr/bin/python
2
- # -*- coding:UTF-8 -*-
3
- from typing import List
4
- from pprint import pformat
5
- from asyncio import create_task
6
-
7
-
8
- from crawlo.utils.log import get_logger
9
- from crawlo.event import item_successful, item_discard
10
- from crawlo.utils.project import load_class, common_call
11
- from crawlo.exceptions import PipelineInitError, ItemDiscard, InvalidOutputError
12
-
13
-
14
- class PipelineManager:
15
-
16
- def __init__(self, crawler):
17
- self.crawler = crawler
18
- self.pipelines: List = []
19
- self.methods: List = []
20
-
21
- self.logger = get_logger(self.__class__.__name__, self.crawler.settings.get('LOG_LEVEL'))
22
- pipelines = self.crawler.settings.get_list('PIPELINES')
23
- self._add_pipelines(pipelines)
24
- self._add_methods()
25
-
26
- @classmethod
27
- def from_crawler(cls, *args, **kwargs):
28
- o = cls(*args, **kwargs)
29
- return o
30
-
31
- def _add_pipelines(self, pipelines):
32
- for pipeline in pipelines:
33
- pipeline_cls = load_class(pipeline)
34
- if not hasattr(pipeline_cls, 'from_crawler'):
35
- raise PipelineInitError(
36
- f"Pipeline init failed, must inherit from `BasePipeline` or have a `create_instance` method"
37
- )
38
- self.pipelines.append(pipeline_cls.from_crawler(self.crawler))
39
- if pipelines:
40
- self.logger.info(f"enabled pipelines: \n {pformat(pipelines)}")
41
-
42
- def _add_methods(self):
43
- for pipeline in self.pipelines:
44
- if hasattr(pipeline, 'process_item'):
45
- self.methods.append(pipeline.process_item)
46
-
47
- async def process_item(self, item):
48
- try:
49
- for method in self.methods:
50
- item = await common_call(method, item, self.crawler.spider)
51
- if item is None:
52
- raise InvalidOutputError(f"{method.__qualname__} return None is not supported.")
53
- except ItemDiscard as exc:
54
- create_task(self.crawler.subscriber.notify(item_discard, item, exc, self.crawler.spider))
55
- else:
56
- create_task(self.crawler.subscriber.notify(item_successful, item, self.crawler.spider))
1
+ #!/usr/bin/python
2
+ # -*- coding:UTF-8 -*-
3
+ from typing import List
4
+ from pprint import pformat
5
+ from asyncio import create_task
6
+
7
+
8
+ from crawlo.utils.log import get_logger
9
+ from crawlo.event import item_successful, item_discard
10
+ from crawlo.project import load_class, common_call
11
+ from crawlo.exceptions import PipelineInitError, ItemDiscard, InvalidOutputError
12
+
13
+
14
+ class PipelineManager:
15
+
16
+ def __init__(self, crawler):
17
+ self.crawler = crawler
18
+ self.pipelines: List = []
19
+ self.methods: List = []
20
+
21
+ self.logger = get_logger(self.__class__.__name__, self.crawler.settings.get('LOG_LEVEL'))
22
+ pipelines = self.crawler.settings.get_list('PIPELINES')
23
+ self._add_pipelines(pipelines)
24
+ self._add_methods()
25
+
26
+ @classmethod
27
+ def from_crawler(cls, *args, **kwargs):
28
+ o = cls(*args, **kwargs)
29
+ return o
30
+
31
+ def _add_pipelines(self, pipelines):
32
+ for pipeline in pipelines:
33
+ pipeline_cls = load_class(pipeline)
34
+ if not hasattr(pipeline_cls, 'from_crawler'):
35
+ raise PipelineInitError(
36
+ f"Pipeline init failed, must inherit from `BasePipeline` or have a `create_instance` method"
37
+ )
38
+ self.pipelines.append(pipeline_cls.from_crawler(self.crawler))
39
+ if pipelines:
40
+ self.logger.info(f"enabled pipelines: \n {pformat(pipelines)}")
41
+
42
+ def _add_methods(self):
43
+ for pipeline in self.pipelines:
44
+ if hasattr(pipeline, 'process_item'):
45
+ self.methods.append(pipeline.process_item)
46
+
47
+ async def process_item(self, item):
48
+ try:
49
+ for method in self.methods:
50
+ item = await common_call(method, item, self.crawler.spider)
51
+ if item is None:
52
+ raise InvalidOutputError(f"{method.__qualname__} return None is not supported.")
53
+ except ItemDiscard as exc:
54
+ create_task(self.crawler.subscriber.notify(item_discard, item, exc, self.crawler.spider))
55
+ else:
56
+ create_task(self.crawler.subscriber.notify(item_successful, item, self.crawler.spider))
crawlo/project.py ADDED
@@ -0,0 +1,153 @@
1
+ #!/usr/bin/python
2
+ # -*- coding: UTF-8 -*-
3
+ """
4
+ Crawlo 项目初始化模块
5
+
6
+ 负责:
7
+ 1. 向上搜索项目根目录(通过 crawlo.cfg 或 settings.py)
8
+ 2. 将项目根目录加入 sys.path
9
+ 3. 加载 settings 模块
10
+ 4. 返回 SettingManager 实例
11
+ """
12
+ import os
13
+ import sys
14
+ import configparser
15
+ from importlib import import_module
16
+ from inspect import iscoroutinefunction
17
+ from typing import Callable, Optional, Tuple
18
+
19
+ from crawlo.utils.log import get_logger
20
+ from crawlo.settings.setting_manager import SettingManager
21
+
22
+ logger = get_logger(__name__)
23
+
24
+
25
+ def _find_project_root(start_path: str = ".") -> Optional[str]:
26
+ """
27
+ 从指定路径向上查找项目根目录。
28
+ 识别依据:
29
+ 1. 存在 'crawlo.cfg'
30
+ 2. 存在 '__init__.py' 和 'settings.py'(即 Python 包)
31
+ """
32
+ path = os.path.abspath(start_path)
33
+ while True:
34
+ cfg_file = os.path.join(path, "crawlo.cfg")
35
+ if os.path.isfile(cfg_file):
36
+ logger.info(f"✅ 找到项目配置文件: {cfg_file}")
37
+ return path
38
+
39
+ settings_file = os.path.join(path, "settings.py")
40
+ init_file = os.path.join(path, "__init__.py")
41
+ if os.path.isfile(settings_file) and os.path.isfile(init_file):
42
+ logger.info(f"✅ 找到项目模块: {path}")
43
+ return path
44
+
45
+ parent = os.path.dirname(path)
46
+ if parent == path:
47
+ break
48
+ path = parent
49
+
50
+ logger.warning("❌ 未找到 Crawlo 项目根目录。请确保在包含 'crawlo.cfg' 或 'settings.py' 的目录运行。")
51
+ return None
52
+
53
+
54
+ def _get_settings_module_from_cfg(cfg_path: str) -> str:
55
+ """从 crawlo.cfg 读取 settings 模块路径"""
56
+ config = configparser.ConfigParser()
57
+ try:
58
+ config.read(cfg_path, encoding="utf-8")
59
+ if config.has_section("settings") and config.has_option("settings", "default"):
60
+ module_path = config.get("settings", "default")
61
+ logger.info(f"📄 从 crawlo.cfg 加载 settings 模块: {module_path}")
62
+ return module_path
63
+ else:
64
+ raise RuntimeError(f"配置文件缺少 [settings] 或 default 选项: {cfg_path}")
65
+ except Exception as e:
66
+ raise RuntimeError(f"解析 crawlo.cfg 失败: {e}")
67
+
68
+
69
+ def get_settings(custom_settings: Optional[dict] = None) -> SettingManager:
70
+ """
71
+ 获取配置管理器实例(主入口函数)
72
+
73
+ Args:
74
+ custom_settings: 运行时自定义配置,会覆盖 settings.py
75
+
76
+ Returns:
77
+ SettingManager: 已加载配置的实例
78
+ """
79
+ logger.info("🚀 正在初始化 Crawlo 项目配置...")
80
+
81
+ # 1. 查找项目根
82
+ project_root = _find_project_root()
83
+ if not project_root:
84
+ raise RuntimeError("未找到 Crawlo 项目,请检查项目结构")
85
+
86
+ # 2. 确定 settings 模块
87
+ settings_module_path = None
88
+ cfg_file = os.path.join(project_root, "crawlo.cfg")
89
+
90
+ if os.path.isfile(cfg_file):
91
+ settings_module_path = _get_settings_module_from_cfg(cfg_file)
92
+ else:
93
+ # 推断:项目目录名.settings
94
+ project_name = os.path.basename(project_root)
95
+ settings_module_path = f"{project_name}.settings"
96
+ logger.warning(f"⚠️ 未找到 crawlo.cfg,推断 settings 模块为: {settings_module_path}")
97
+
98
+ # 3. 注入 sys.path
99
+ project_root_str = os.path.abspath(project_root)
100
+ if project_root_str not in sys.path:
101
+ sys.path.insert(0, project_root_str)
102
+ logger.info(f"📁 项目根目录已加入 sys.path: {project_root_str}")
103
+
104
+ # 4. 加载 SettingManager
105
+ logger.info(f"⚙️ 正在加载配置模块: {settings_module_path}")
106
+ settings = SettingManager()
107
+
108
+ try:
109
+ settings.set_settings(settings_module_path)
110
+ logger.info("✅ settings 模块加载成功")
111
+ except Exception as e:
112
+ raise ImportError(f"加载 settings 模块失败 '{settings_module_path}': {e}")
113
+
114
+ # 5. 合并运行时配置
115
+ if custom_settings:
116
+ settings.update_attributes(custom_settings)
117
+ logger.info(f"🔧 已应用运行时自定义配置: {list(custom_settings.keys())}")
118
+
119
+ logger.info("🎉 Crawlo 项目配置初始化完成!")
120
+ return settings
121
+
122
+
123
+ def load_class(_path):
124
+ if not isinstance(_path, str):
125
+ if callable(_path):
126
+ return _path
127
+ else:
128
+ raise TypeError(f"args expect str or object, got {_path}")
129
+
130
+ module_name, class_name = _path.rsplit('.', 1)
131
+ module = import_module(module_name)
132
+
133
+ try:
134
+ cls = getattr(module, class_name)
135
+ except AttributeError:
136
+ raise NameError(f"Module {module_name!r} has no class named {class_name!r}")
137
+ return cls
138
+
139
+
140
+ def merge_settings(spider, settings):
141
+ spider_name = getattr(spider, 'name', 'UnknownSpider')
142
+ if hasattr(spider, 'custom_settings'):
143
+ custom_settings = getattr(spider, 'custom_settings')
144
+ settings.update_attributes(custom_settings)
145
+ else:
146
+ logger.debug(f"爬虫 '{spider_name}' 无 custom_settings,跳过合并") # 添加日志
147
+
148
+
149
+ async def common_call(func: Callable, *args, **kwargs):
150
+ if iscoroutinefunction(func):
151
+ return await func(*args, **kwargs)
152
+ else:
153
+ return func(*args, **kwargs)
crawlo/queue/pqueue.py ADDED
@@ -0,0 +1,37 @@
1
+ # -*- coding:UTF-8 -*-
2
+ import json
3
+ import sys
4
+ import asyncio
5
+ from asyncio import PriorityQueue
6
+ from typing import Optional
7
+
8
+
9
+ from crawlo import Request
10
+
11
+
12
+ class SpiderPriorityQueue(PriorityQueue):
13
+ """带超时功能的异步优先级队列"""
14
+
15
+ def __init__(self, maxsize: int = 0) -> None:
16
+ """初始化队列,maxsize为0表示无大小限制"""
17
+ super().__init__(maxsize)
18
+
19
+ async def get(self, timeout: float = 0.1) -> Optional[Request]:
20
+ """
21
+ 异步获取队列元素,带超时功能
22
+
23
+ Args:
24
+ timeout: 超时时间(秒),默认0.1秒
25
+
26
+ Returns:
27
+ 队列元素(优先级, 值)或None(超时)
28
+ """
29
+ try:
30
+ # 根据Python版本选择超时实现方式
31
+ if sys.version_info >= (3, 11):
32
+ async with asyncio.timeout(timeout):
33
+ return await super().get()
34
+ else:
35
+ return await asyncio.wait_for(super().get(), timeout=timeout)
36
+ except asyncio.TimeoutError:
37
+ return None
@@ -0,0 +1,304 @@
1
+ #!/usr/bin/python
2
+ # -*- coding: UTF-8 -*-
3
+ """
4
+ 统一的队列管理器
5
+ 提供简洁、一致的队列接口,自动处理不同队列类型的差异
6
+ """
7
+ from typing import Optional, Dict, Any, Union
8
+ from enum import Enum
9
+ import asyncio
10
+
11
+ from crawlo.utils.log import get_logger
12
+ from crawlo.utils.request_serializer import RequestSerializer
13
+ from crawlo.queue.pqueue import SpiderPriorityQueue
14
+ from crawlo import Request
15
+
16
+ try:
17
+ from crawlo.queue.redis_priority_queue import RedisPriorityQueue
18
+ REDIS_AVAILABLE = True
19
+ except ImportError:
20
+ RedisPriorityQueue = None
21
+ REDIS_AVAILABLE = False
22
+
23
+
24
+ class QueueType(Enum):
25
+ """队列类型枚举"""
26
+ MEMORY = "memory"
27
+ REDIS = "redis"
28
+ AUTO = "auto" # 自动选择
29
+
30
+
31
+ class QueueConfig:
32
+ """队列配置类"""
33
+
34
+ def __init__(
35
+ self,
36
+ queue_type: Union[QueueType, str] = QueueType.AUTO,
37
+ redis_url: Optional[str] = None,
38
+ redis_host: str = "127.0.0.1",
39
+ redis_port: int = 6379,
40
+ redis_password: Optional[str] = None,
41
+ redis_db: int = 0,
42
+ queue_name: str = "crawlo:requests",
43
+ max_queue_size: int = 1000,
44
+ max_retries: int = 3,
45
+ timeout: int = 300,
46
+ **kwargs
47
+ ):
48
+ self.queue_type = QueueType(queue_type) if isinstance(queue_type, str) else queue_type
49
+
50
+ # Redis 配置
51
+ if redis_url:
52
+ self.redis_url = redis_url
53
+ else:
54
+ if redis_password:
55
+ self.redis_url = f"redis://:{redis_password}@{redis_host}:{redis_port}/{redis_db}"
56
+ else:
57
+ self.redis_url = f"redis://{redis_host}:{redis_port}/{redis_db}"
58
+
59
+ self.queue_name = queue_name
60
+ self.max_queue_size = max_queue_size
61
+ self.max_retries = max_retries
62
+ self.timeout = timeout
63
+ self.extra_config = kwargs
64
+
65
+ @classmethod
66
+ def from_settings(cls, settings) -> 'QueueConfig':
67
+ """从 settings 创建配置"""
68
+ return cls(
69
+ queue_type=settings.get('QUEUE_TYPE', QueueType.AUTO),
70
+ redis_url=settings.get('REDIS_URL'),
71
+ redis_host=settings.get('REDIS_HOST', '127.0.0.1'),
72
+ redis_port=settings.get_int('REDIS_PORT', 6379),
73
+ redis_password=settings.get('REDIS_PASSWORD'),
74
+ redis_db=settings.get_int('REDIS_DB', 0),
75
+ queue_name=settings.get('SCHEDULER_QUEUE_NAME', 'crawlo:requests'),
76
+ max_queue_size=settings.get_int('SCHEDULER_MAX_QUEUE_SIZE', 1000),
77
+ max_retries=settings.get_int('QUEUE_MAX_RETRIES', 3),
78
+ timeout=settings.get_int('QUEUE_TIMEOUT', 300)
79
+ )
80
+
81
+
82
+ class QueueManager:
83
+ """统一的队列管理器"""
84
+
85
+ def __init__(self, config: QueueConfig):
86
+ self.config = config
87
+ self.logger = get_logger(self.__class__.__name__)
88
+ self.request_serializer = RequestSerializer()
89
+ self._queue = None
90
+ self._queue_semaphore = None
91
+ self._queue_type = None
92
+ self._health_status = "unknown"
93
+
94
+ async def initialize(self) -> bool:
95
+ """初始化队列"""
96
+ try:
97
+ queue_type = await self._determine_queue_type()
98
+ self._queue = await self._create_queue(queue_type)
99
+ self._queue_type = queue_type
100
+
101
+ # 测试队列健康状态
102
+ await self._health_check()
103
+
104
+ self.logger.info(f"✅ 队列初始化成功: {queue_type.value}")
105
+ self.logger.info(f"📊 队列配置: {self._get_queue_info()}")
106
+ return True
107
+
108
+ except Exception as e:
109
+ self.logger.error(f"❌ 队列初始化失败: {e}")
110
+ self._health_status = "error"
111
+ return False
112
+
113
+ async def put(self, request: Request, priority: int = 0) -> bool:
114
+ """统一的入队接口"""
115
+ if not self._queue:
116
+ raise RuntimeError("队列未初始化")
117
+
118
+ try:
119
+ # 序列化处理(仅对 Redis 队列)
120
+ if self._queue_type == QueueType.REDIS:
121
+ request = self.request_serializer.prepare_for_serialization(request)
122
+
123
+ # 背压控制(仅对内存队列)
124
+ if self._queue_semaphore:
125
+ # 对于大量请求,使用非阻塞式检查
126
+ if not self._queue_semaphore.locked():
127
+ await self._queue_semaphore.acquire()
128
+ else:
129
+ # 如果队列已满,返回 False 而不是阻塞
130
+ self.logger.warning("队列已满,跳过当前请求")
131
+ return False
132
+
133
+ # 统一的入队操作
134
+ if hasattr(self._queue, 'put'):
135
+ if self._queue_type == QueueType.REDIS:
136
+ success = await self._queue.put(request, priority)
137
+ else:
138
+ await self._queue.put(request)
139
+ success = True
140
+ else:
141
+ raise RuntimeError(f"队列类型 {self._queue_type} 不支持 put 操作")
142
+
143
+ if success:
144
+ self.logger.debug(f"✅ 请求入队成功: {request.url}")
145
+
146
+ return success
147
+
148
+ except Exception as e:
149
+ self.logger.error(f"❌ 请求入队失败: {e}")
150
+ if self._queue_semaphore:
151
+ self._queue_semaphore.release()
152
+ return False
153
+
154
+ async def get(self, timeout: float = 5.0) -> Optional[Request]:
155
+ """统一的出队接口"""
156
+ if not self._queue:
157
+ raise RuntimeError("队列未初始化")
158
+
159
+ try:
160
+ request = await self._queue.get(timeout=timeout)
161
+
162
+ # 释放信号量(仅对内存队列)
163
+ if self._queue_semaphore and request:
164
+ self._queue_semaphore.release()
165
+
166
+ # 反序列化处理(仅对 Redis 队列)
167
+ if request and self._queue_type == QueueType.REDIS:
168
+ # 这里需要 spider 实例,暂时返回原始请求
169
+ # 实际的 callback 恢复在 scheduler 中处理
170
+ pass
171
+
172
+ return request
173
+
174
+ except Exception as e:
175
+ self.logger.error(f"❌ 请求出队失败: {e}")
176
+ return None
177
+
178
+ async def size(self) -> int:
179
+ """获取队列大小"""
180
+ if not self._queue:
181
+ return 0
182
+
183
+ try:
184
+ if hasattr(self._queue, 'qsize'):
185
+ if asyncio.iscoroutinefunction(self._queue.qsize):
186
+ return await self._queue.qsize()
187
+ else:
188
+ return self._queue.qsize()
189
+ return 0
190
+ except Exception as e:
191
+ self.logger.warning(f"获取队列大小失败: {e}")
192
+ return 0
193
+
194
+ def empty(self) -> bool:
195
+ """检查队列是否为空"""
196
+ try:
197
+ # 对于内存队列,可以同步检查
198
+ if self._queue_type == QueueType.MEMORY:
199
+ return self._queue.qsize() == 0
200
+ # 对于 Redis 队列,需要异步操作,这里返回近似值
201
+ return False
202
+ except Exception:
203
+ return True
204
+
205
+ async def close(self) -> None:
206
+ """关闭队列"""
207
+ if self._queue and hasattr(self._queue, 'close'):
208
+ try:
209
+ await self._queue.close()
210
+ self.logger.info("✅ 队列已关闭")
211
+ except Exception as e:
212
+ self.logger.warning(f"关闭队列时发生错误: {e}")
213
+
214
+ def get_status(self) -> Dict[str, Any]:
215
+ """获取队列状态信息"""
216
+ return {
217
+ "type": self._queue_type.value if self._queue_type else "unknown",
218
+ "health": self._health_status,
219
+ "config": self._get_queue_info(),
220
+ "initialized": self._queue is not None
221
+ }
222
+
223
+ async def _determine_queue_type(self) -> QueueType:
224
+ """确定队列类型"""
225
+ if self.config.queue_type == QueueType.AUTO:
226
+ # 自动选择:优先使用 Redis(如果可用)
227
+ if REDIS_AVAILABLE and self.config.redis_url:
228
+ # 测试 Redis 连接
229
+ try:
230
+ test_queue = RedisPriorityQueue(self.config.redis_url)
231
+ await test_queue.connect()
232
+ await test_queue.close()
233
+ self.logger.info("🔍 自动检测: Redis 可用,使用分布式队列")
234
+ return QueueType.REDIS
235
+ except Exception as e:
236
+ self.logger.warning(f"🔍 自动检测: Redis 不可用 ({e}),使用内存队列")
237
+ return QueueType.MEMORY
238
+ else:
239
+ self.logger.info("🔍 自动检测: Redis 未配置,使用内存队列")
240
+ return QueueType.MEMORY
241
+
242
+ elif self.config.queue_type == QueueType.REDIS:
243
+ if not REDIS_AVAILABLE:
244
+ raise RuntimeError("Redis 队列不可用:未安装 redis 依赖")
245
+ if not self.config.redis_url:
246
+ raise RuntimeError("Redis 队列不可用:未配置 REDIS_URL")
247
+ return QueueType.REDIS
248
+
249
+ elif self.config.queue_type == QueueType.MEMORY:
250
+ return QueueType.MEMORY
251
+
252
+ else:
253
+ raise ValueError(f"不支持的队列类型: {self.config.queue_type}")
254
+
255
+ async def _create_queue(self, queue_type: QueueType):
256
+ """创建队列实例"""
257
+ if queue_type == QueueType.REDIS:
258
+ queue = RedisPriorityQueue(
259
+ redis_url=self.config.redis_url,
260
+ queue_name=self.config.queue_name,
261
+ max_retries=self.config.max_retries,
262
+ timeout=self.config.timeout
263
+ )
264
+ # 不需要立即连接,使用 lazy connect
265
+ return queue
266
+
267
+ elif queue_type == QueueType.MEMORY:
268
+ queue = SpiderPriorityQueue()
269
+ # 为内存队列设置背压控制
270
+ self._queue_semaphore = asyncio.Semaphore(self.config.max_queue_size)
271
+ return queue
272
+
273
+ else:
274
+ raise ValueError(f"不支持的队列类型: {queue_type}")
275
+
276
+ async def _health_check(self) -> None:
277
+ """健康检查"""
278
+ try:
279
+ if self._queue_type == QueueType.REDIS:
280
+ # 测试 Redis 连接
281
+ await self._queue.connect()
282
+ self._health_status = "healthy"
283
+ else:
284
+ # 内存队列总是健康的
285
+ self._health_status = "healthy"
286
+ except Exception as e:
287
+ self.logger.warning(f"队列健康检查失败: {e}")
288
+ self._health_status = "unhealthy"
289
+
290
+ def _get_queue_info(self) -> Dict[str, Any]:
291
+ """获取队列配置信息"""
292
+ info = {
293
+ "queue_name": self.config.queue_name,
294
+ "max_queue_size": self.config.max_queue_size
295
+ }
296
+
297
+ if self._queue_type == QueueType.REDIS:
298
+ info.update({
299
+ "redis_url": self.config.redis_url,
300
+ "max_retries": self.config.max_retries,
301
+ "timeout": self.config.timeout
302
+ })
303
+
304
+ return info