summaryrefslogtreecommitdiff
blob: 83f389e4cd15279fc7762adc2882bdc5d2233bf7 (plain)
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
<?

	/**
	 * Right now this will run fine is run as a cron job.  It will clean up after itself
	 * if there are NO ebuilds in the tree, but if you accidentally remove an entire package
	 * or something, it will still only insert what's new (recently modified since last mtime).
	 * For now, you're going to have to manually flip some bits to get it to correct mistakes
	 * like that.  It's too much of a pain to have it check for it (at this point).
	 */

  	$verbose = true;
  	$debug = false;
  	$all = false;
	
	if($debug) {
		$all = $verbose = true;
	}

	require_once 'header.php';
	require_once 'class.portage.tree.php';
	require_once 'class.portage.category.php';
	require_once 'class.portage.package.php';
	require_once 'class.portage.ebuild.php';
	require_once '/home/steve/svn/znurt/class.db.ebuild.php';
	
	// Reset the status on ones that were going to be removed or updated
	$sql = "UPDATE ebuild SET status = 0 WHERE status IN (1,3);";
	
	// Delete any ebuilds that were new ones
	$sql = "DELETE FROM ebuild WHERE status = 1;";
	$db->query($sql);
	
	// Check to see if there are any ebuilds
	$sql = "SELECT COUNT(1) FROM ebuild WHERE status = 0;";
	$count = $db->getOne($sql);
	
	// If there aren't any, then import *all* packages
	if(!$count)
		$all = true;
	else {
		
		// If there are, get the last modified time
		$sql = "SELECT MAX(mtime) FROM ebuild WHERE status = 0;";
		$mtime = $db->getOne($sql);
		
		if(is_null($mtime))
			$all = true;
		else {
			$x = time() - $mtime;
			$x = $x / 60;
			$mmin = intval($x) + 1;
		}
		
	}
	
	$tree = new PortageTree();
	$categories = $tree->getCategories();
	$arr_import = array();
	
	// Find all the ebuilds that are currently in the db
	// FIXME rewrite to exclude update/delete statuses?
	$arr = $arr_db = array();
	if(!$all) {
		// Find all the packages that have been updated in the last 24 hours
		// Need to check the packages themselves, because something may have
		// been deleted.
		$cache = $tree->getTree()."/metadata/cache/";
		
		$exec = "find $cache -type f -mmin -$mmin";
		$arr = shell::cmd($exec);
		
		if($verbose) {
			shell::msg($exec);
			shell::msg("(".count($arr).") new/updated ebuilds found since last sync.");
		}
		
		foreach($arr as $dir) {
			$atom = str_replace($tree->getTree()."/metadata/cache/", "", $dir);
			$e = new PortageEbuild($atom);
			
			$arr_import[$e->category][] = $e->pn;
			$arr_import[$e->category] = array_unique($arr_import[$e->category]);
		}
		
		ksort($arr_import);
		
	} elseif($all) {
	
		foreach($categories as $name) {
			$c = new PortageCategory($name);
			$arr_import[$name] = $c->getPackages();
		}
	
	}
	
	if($debug || $all) {
		shell::msg("Checking ALL categories");
	} elseif($verbose) {
		shell::msg("(".count($arr_import).") RECENTLY MODIFIED categories ");
	}
	
	// Get the package IDs for reference
	// and the mtimes of the ebuilds for verification
	$sql = "SELECT p.id AS package_id, c.name AS category_name, p.name AS package_name, e.pf AS ebuild_name, e.mtime, e.id AS ebuild FROM ebuild e RIGHT OUTER JOIN package p ON e.package = p.id INNER JOIN category c ON p.category = c.id ORDER BY c.name, p.name;";
	$arr = $db->getAll($sql);
	if(count($arr)) {
		foreach($arr as $row) {
			extract($row);
			$arr_db[$category_name][$package_name] = $package_id;
			if($ebuild_name) {
				$arr_ebuild_ids[$category_name][$package_name][$ebuild_name] = $ebuild;
			}
		}
	}
	
	
	if(count($arr_import)) {
		
		foreach($arr_import as $category_name => $arr_category) {
		
			foreach($arr_category as $package_name) {
			
				// FIXME always snags the last few, so says they are
				// being updated even if they're not (to duplicate, delete
				// all ebuilds, and run this twice in a row).
				if($verbose)
					shell::msg("[$category_name/$package_name]");
			
				$arr_insert = array();
				$arr_delete = array();
				
				if(count($arr_ebuild_ids[$category_name][$package_name]))
					$arr_db_ebuilds = array_keys($arr_ebuild_ids[$category_name][$package_name]);
				else
					$arr_db_ebuilds = array();
					
				$obj_package = new PortagePackage($category_name, $package_name);
				
				$package_id =& $arr_db[$category_name][$package_name];
				
				// If there are any old ebuilds (in the DB), then compare the new (in portage)
				if(count($arr_db_ebuilds)) {
				
					$arr_fs_ebuilds = $obj_package->getEbuilds();
					
					// Check old against new
					$arr_delete = array_diff($arr_db_ebuilds, $arr_fs_ebuilds);
					$arr_insert = array_diff($arr_fs_ebuilds, $arr_db_ebuilds);
					
					// Next, look at the mtimes and see if any need to be updated
					if(count($arr_fs_ebuilds)) {
					
						foreach($arr_fs_ebuilds as $ebuild_name) {
							
							$obj_ebuild = new PortageEbuild("$category_name/$ebuild_name");
							
							$ebuild = $arr_ebuild_ids[$category_name][$package_name][$ebuild_name];
							
							if($ebuild) {
								$db_ebuild = new DBEbuild($ebuild);
								
								if($obj_ebuild->mtime != $db_ebuild->mtime || $obj_ebuild->ctime != $db_ebuild->ctime) {
								
									if($verbose) {
										shell::msg("[update] $category_name/$ebuild_name");
									}
								
									// Flag as being updated
									$db_ebuild->status = 2;
									if($obj_ebuild->mtime != $db_ebuild->mtime)
										$db_ebuild->mtime = $obj_ebuild->mtime;
									if($obj_ebuild->ctime != $db_ebuild->ctime)
										$db_ebuild->ctime = $obj_ebuild->ctime;
										
								}
							}
						}
					}
					
					if(count($arr_delete)) {
					
						foreach($arr_delete as $ebuild_name) {
						
							if($verbose)
								shell::msg("[delete] $category_name/$ebuild_name");
							
							$ebuild = $arr_ebuild_ids[$category_name][$package_name][$ebuild_name];
							
							if($ebuild) {
								$db_ebuild = new DBEbuild($ebuild);
								$db_ebuild->status = 3;
							}
							
						}
						
					}
				
				}
				// Otherwise, insert all of them
				else {
					$arr_insert = $obj_package->getEbuilds();
				}
				
				if(count($arr_insert)) {
				
					$arr_insert = array_unique($arr_insert);
					
					foreach($arr_insert as $ebuild_name) {
					
						if($verbose)
							shell::msg("[insert] $category_name/$ebuild_name");
					
						$obj_ebuild = new PortageEbuild("$category_name/$ebuild_name");
						
						$arr = array(
							'package' => $package_id,
							'pf' => $obj_ebuild->pf,
							'pv' => $obj_ebuild->pv,
							'pr' => $obj_ebuild->pr,
							'pvr' => $obj_ebuild->pvr,
							'alpha' => $obj_ebuild->_alpha,
							'beta' => $obj_ebuild->_beta,
							'pre' => $obj_ebuild->_pre,
							'rc' => $obj_ebuild->_rc,
							'p' => $obj_ebuild->_p,
							'version' => $obj_ebuild->version,
							'slot' => $obj_ebuild->slot,
							'mtime' => $obj_ebuild->mtime,
							'ctime' => $obj_ebuild->ctime,
							'status' => 1,
						);
						
						$db->autoExecute('ebuild', $arr, MDB2_AUTOQUERY_INSERT);
						
						
					}
					
				}
				
			}
			
		}
		
	}
	
?>