Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

336

337

338

339

340

341

342

343

344

345

346

347

348

349

350

351

352

353

354

355

356

357

358

359

360

361

362

363

364

365

366

367

368

369

370

371

372

373

374

375

376

377

378

379

380

381

382

383

384

385

386

387

388

389

390

391

392

393

394

395

396

397

398

399

400

401

402

403

404

405

406

407

408

409

410

411

412

413

414

415

416

417

418

419

420

421

422

423

424

425

# -*- coding: utf-8 -*- 

# 

# Copyright (C) 2007-2010 Andrew Resch <andrewresch@gmail.com> 

# 

# This file is part of Deluge and is licensed under GNU General Public License 3.0, or later, with 

# the additional special exception to link portions of this program with the OpenSSL library. 

# See LICENSE for more details. 

# 

 

import logging 

from collections import defaultdict 

 

from twisted.internet.defer import DeferredList, fail, maybeDeferred, succeed 

from twisted.internet.task import LoopingCall 

 

log = logging.getLogger(__name__) 

 

 

class ComponentAlreadyRegistered(Exception): 

    pass 

 

 

class Component(object): 

    """ 

    Component objects are singletons managed by the :class:`ComponentRegistry`. 

    When a new Component object is instantiated, it will be automatically 

    registered with the :class:`ComponentRegistry`. 

 

    The ComponentRegistry has the ability to start, stop, pause and shutdown the 

    components registered with it. 

 

    **Events:** 

 

        **start()** - This method is called when the client has connected to a 

                  Deluge core. 

 

        **stop()** - This method is called when the client has disconnected from a 

                 Deluge core. 

 

        **update()** - This method is called every 1 second by default while the 

                   Componented is in a *Started* state.  The interval can be 

                   specified during instantiation.  The update() timer can be 

                   paused by instructing the :class:`ComponentRegistry` to pause 

                   this Component. 

 

        **shutdown()** - This method is called when the client is exiting.  If the 

                     Component is in a "Started" state when this is called, a 

                     call to stop() will be issued prior to shutdown(). 

 

    **States:** 

 

        A Component can be in one of these 5 states. 

 

        **Started** - The Component has been started by the :class:`ComponentRegistry` 

                    and will have it's update timer started. 

 

        **Starting** - The Component has had it's start method called, but it hasn't 

                    fully started yet. 

 

        **Stopped** - The Component has either been stopped or has yet to be started. 

 

        **Stopping** - The Component has had it's stop method called, but it hasn't 

                    fully stopped yet. 

 

        **Paused** - The Component has had it's update timer stopped, but will 

                    still be considered in a Started state. 

 

    """ 

    def __init__(self, name, interval=1, depend=None): 

        self._component_name = name 

        self._component_interval = interval 

        self._component_depend = depend 

        self._component_state = "Stopped" 

        self._component_timer = None 

        self._component_starting_deferred = None 

        self._component_stopping_deferred = None 

        _ComponentRegistry.register(self) 

 

    def __del__(self): 

exit        if _ComponentRegistry: 

            _ComponentRegistry.deregister(self) 

 

    def _component_start_timer(self): 

exit        if hasattr(self, "update"): 

            self._component_timer = LoopingCall(self.update) 

            self._component_timer.start(self._component_interval) 

 

    def _component_start(self): 

        def on_start(result): 

            self._component_state = "Started" 

            self._component_starting_deferred = None 

            self._component_start_timer() 

            return True 

 

        def on_start_fail(result): 

            self._component_state = "Stopped" 

            self._component_starting_deferred = None 

            log.error(result) 

            return result 

 

        if self._component_state == "Stopped": 

109            if hasattr(self, "start"): 

                self._component_state = "Starting" 

                d = maybeDeferred(self.start) 

                d.addCallback(on_start) 

                d.addErrback(on_start_fail) 

                self._component_starting_deferred = d 

            else: 

                d = maybeDeferred(on_start, None) 

        elif self._component_state == "Starting": 

            return self._component_starting_deferred 

115        elif self._component_state == "Started": 

            d = succeed(True) 

        else: 

            d = fail("Cannot start a component not in a Stopped state!") 

 

        return d 

 

    def _component_stop(self): 

        def on_stop(result): 

            self._component_state = "Stopped" 

            if self._component_timer and self._component_timer.running: 

                self._component_timer.stop() 

            return True 

 

        def on_stop_fail(result): 

            self._component_state = "Started" 

            self._component_stopping_deferred = None 

            log.error(result) 

            return result 

 

        if self._component_state != "Stopped" and self._component_state != "Stopping": 

140            if hasattr(self, "stop"): 

                self._component_state = "Stopping" 

                d = maybeDeferred(self.stop) 

                d.addCallback(on_stop) 

                d.addErrback(on_stop_fail) 

                self._component_stopping_deferred = d 

            else: 

                d = maybeDeferred(on_stop, None) 

 

        if self._component_state == "Stopping": 

            return self._component_stopping_deferred 

 

        return succeed(None) 

 

    def _component_pause(self): 

        def on_pause(result): 

            self._component_state = "Paused" 

 

157        if self._component_state == "Started": 

156            if self._component_timer and self._component_timer.running: 

                d = maybeDeferred(self._component_timer.stop) 

                d.addCallback(on_pause) 

            else: 

                d = succeed(None) 

        elif self._component_state == "Paused": 

            d = succeed(None) 

        else: 

            d = fail("Cannot pause a component in a non-Started state!") 

 

        return d 

 

    def _component_resume(self): 

        def on_resume(result): 

            self._component_state = "Started" 

 

172        if self._component_state == "Paused": 

            d = maybeDeferred(self._component_start_timer) 

            d.addCallback(on_resume) 

        else: 

            d = fail("Component cannot be resumed from a non-Paused state!") 

 

        return d 

 

    def _component_shutdown(self): 

        def on_stop(result): 

180            if hasattr(self, "shutdown"): 

                return maybeDeferred(self.shutdown) 

            return succeed(None) 

 

        d = self._component_stop() 

        d.addCallback(on_stop) 

        return d 

 

    def start(self): 

        pass 

 

    def stop(self): 

        pass 

 

    def update(self): 

        pass 

 

    def shutdown(self): 

        pass 

 

 

class ComponentRegistry(object): 

    """ 

    The ComponentRegistry holds a list of currently registered 

    :class:`Component` objects.  It is used to manage the Components by 

    starting, stopping, pausing and shutting them down. 

    """ 

    def __init__(self): 

        self.components = {} 

        # Stores all of the components that are dependent on a particular component 

        self.dependents = defaultdict(list) 

 

    def register(self, obj): 

        """ 

        Registers a component object with the registry.  This is done 

        automatically when a Component object is instantiated. 

 

        :param obj: the Component object 

        :type obj: object 

 

        :raises ComponentAlreadyRegistered: if a component with the same name is already registered. 

 

        """ 

        name = obj._component_name 

        if name in self.components: 

            raise ComponentAlreadyRegistered( 

                "Component already registered with name %s" % name) 

 

        self.components[obj._component_name] = obj 

        if obj._component_depend: 

            for depend in obj._component_depend: 

                self.dependents[depend].append(name) 

 

    def deregister(self, obj): 

        """ 

        Deregisters a component from the registry.  A stop will be 

        issued to the component prior to deregistering it. 

 

        :param obj: the Component object 

        :type obj: object 

 

        """ 

 

        if obj in self.components.values(): 

            log.debug("Deregistering Component: %s", obj._component_name) 

            d = self.stop([obj._component_name]) 

 

            def on_stop(result, name): 

                del self.components[name] 

            return d.addCallback(on_stop, obj._component_name) 

        else: 

            return succeed(None) 

 

    def start(self, names=[]): 

        """ 

        Starts Components that are currently in a Stopped state and their 

        dependencies.  If *names* is specified, will only start those 

        Components and their dependencies and if not it will start all 

        registered components. 

 

        :param names: a list of Components to start 

        :type names: list 

 

        :returns: a Deferred object that will fire once all Components have been sucessfully started 

        :rtype: twisted.internet.defer.Deferred 

 

        """ 

        # Start all the components if names is empty 

        if not names: 

            names = self.components.keys() 

269        elif isinstance(names, str): 

            names = [names] 

 

        def on_depends_started(result, name): 

            return self.components[name]._component_start() 

 

        deferreds = [] 

 

        for name in names: 

            if self.components[name]._component_depend: 

                # This component has depends, so we need to start them first. 

                d = self.start(self.components[name]._component_depend) 

                d.addCallback(on_depends_started, name) 

                deferreds.append(d) 

            else: 

                deferreds.append(self.components[name]._component_start()) 

 

        return DeferredList(deferreds) 

 

    def stop(self, names=[]): 

        """ 

        Stops Components that are currently not in a Stopped state.  If 

        *names* is specified, then it will only stop those Components, 

        and if not it will stop all the registered Components. 

 

        :param names: a list of Components to start 

        :type names: list 

 

        :returns: a Deferred object that will fire once all Components have been sucessfully stopped 

        :rtype: twisted.internet.defer.Deferred 

 

        """ 

        if not names: 

            names = self.components.keys() 

303        elif isinstance(names, str): 

            names = [names] 

 

        def on_dependents_stopped(result, name): 

            return self.components[name]._component_stop() 

 

        stopped_in_deferred = set() 

        deferreds = [] 

 

        for name in names: 

            if name in stopped_in_deferred: 

                continue 

            if name in self.components: 

                if name in self.dependents: 

                    # If other components depend on this component, stop them first 

                    d = self.stop(self.dependents[name]).addCallback(on_dependents_stopped, name) 

                    deferreds.append(d) 

                    stopped_in_deferred.update(self.dependents[name]) 

                else: 

                    deferreds.append(self.components[name]._component_stop()) 

 

        return DeferredList(deferreds) 

 

    def pause(self, names=[]): 

        """ 

        Pauses Components that are currently in a Started state.  If 

        *names* is specified, then it will only pause those Components, 

        and if not it will pause all the registered Components. 

 

        :param names: a list of Components to pause 

        :type names: list 

 

        :returns: a Deferred object that will fire once all Components have been sucessfully paused 

        :rtype: twisted.internet.defer.Deferred 

 

        """ 

339        if not names: 

            names = self.components.keys() 

        elif isinstance(names, str): 

            names = [names] 

 

        deferreds = [] 

 

        for name in names: 

345            if self.components[name]._component_state == "Started": 

                deferreds.append(self.components[name]._component_pause()) 

 

        return DeferredList(deferreds) 

 

    def resume(self, names=[]): 

        """ 

        Resumes Components that are currently in a Paused state.  If 

        *names* is specified, then it will only resume those Components, 

        and if not it will resume all the registered Components. 

 

        :param names: a list of Components to resume 

        :type names: list 

 

        :returns: a Deferred object that will fire once all Components have been successfully resumed 

        :rtype: twisted.internet.defer.Deferred 

 

        """ 

365        if not names: 

            names = self.components.keys() 

369        elif isinstance(names, str): 

            names = [names] 

 

        deferreds = [] 

 

        for name in names: 

371            if self.components[name]._component_state == "Paused": 

                deferreds.append(self.components[name]._component_resume()) 

 

        return DeferredList(deferreds) 

 

    def shutdown(self): 

        """ 

        Shutdowns all Components regardless of state.  This will call 

        :meth:`stop` on call the components prior to shutting down.  This should 

        be called when the program is exiting to ensure all Components have a 

        chance to properly shutdown. 

 

        :returns: a Deferred object that will fire once all Components have been successfully shut down 

        :rtype: twisted.internet.defer.Deferred 

 

        """ 

        def on_stopped(result): 

            return DeferredList(map(lambda c: c._component_shutdown(), self.components.values())) 

 

        return self.stop(self.components.keys()).addCallback(on_stopped) 

 

    def update(self): 

        """ 

        Updates all Components that are in a Started state. 

 

        """ 

        for component in self.components.items(): 

            component.update() 

 

_ComponentRegistry = ComponentRegistry() 

 

deregister = _ComponentRegistry.deregister 

start = _ComponentRegistry.start 

stop = _ComponentRegistry.stop 

pause = _ComponentRegistry.pause 

resume = _ComponentRegistry.resume 

update = _ComponentRegistry.update 

shutdown = _ComponentRegistry.shutdown 

 

 

def get(name): 

    """ 

    Return a reference to a component. 

 

    :param name: the Component name to get 

    :type name: string 

 

    :returns: the Component object 

    :rtype: object 

 

    :raises KeyError: if the Component does not exist 

 

    """ 

    return _ComponentRegistry.components[name]