]> git.mxchange.org Git - hub.git/blob - application/hub/main/crawler/class_BaseNodeCrawler.php
Added initial crawler stuff:
[hub.git] / application / hub / main / crawler / class_BaseNodeCrawler.php
1 <?php
2 /**
3  * A general NodeCrawler class
4  *
5  * @author              Roland Haeder <webmaster@shipsimu.org>
6  * @version             0.0.0
7  * @copyright   Copyright (c) 2014 Crawler Developer Team
8  * @license             GNU GPL 3.0 or any newer version
9  * @link                http://www.shipsimu.org
10  *
11  * This program is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation, either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23  */
24 class BaseNodeCrawler extends BaseHubSystem {
25         /**
26          * Whether this Crawler is active
27          */
28         private $isActive = FALSE;
29
30         /**
31          * Protected constructor
32          *
33          * @param       $className      Name of the class
34          * @return      void
35          */
36         protected function __construct ($className) {
37                 // Call parent constructor
38                 parent::__construct($className);
39
40                 // Init state which sets the state to 'init'
41                 $this->initState();
42         }
43
44         /**
45          * Initializes the node's state which sets it to 'init'
46          *
47          * @return      void
48          */
49         private function initState() {
50                 // Get the state factory and create the initial state.
51                 CrawlerStateFactory::createCrawlerStateInstanceByName('init', $this);
52         }
53
54         /**
55          * Initializes this crawler instance
56          *
57          * @param       $stateInstance  An instance of a Stateable class
58          * @return      void
59          * @todo        0% done
60          */
61         public function initCrawler (Stateable $stateInstance) {
62                 // Please implement
63                 $this->partialStub('Unfinished method.');
64         }
65
66         /**
67          * Enables/disables the crawler (just sets a flag)
68          *
69          * @param       $version        Version number of this crawler
70          * @return      void
71          */
72         public final function enableIsActive ($isActive = TRUE) {
73                 $this->isActive = (bool) $isActive;
74         }
75
76         /**
77          * Determines whether the crawler is active
78          *
79          * @return      $isActive       Whether the crawler is active
80          */
81         public final function isActive () {
82                 return $this->isActive;
83         }
84 }
85
86 // [EOF]
87 ?>