aboutsummaryrefslogtreecommitdiffstats
path: root/org.openembedded.bc.ui/src/org/openembedded/bc/ui/filesystem/OEFileSystem.java
blob: 1c138b9621d8c87d093b3b19944176a78e191ce8 (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
/*****************************************************************************
 * Copyright (c) 2009 Ken Gilmer
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Ken Gilmer - initial API and implementation
 *******************************************************************************/
package org.openembedded.bc.ui.filesystem;

import java.io.File;
import java.net.URI;
import java.util.ArrayList;
import java.util.Hashtable;
import java.util.List;
import java.util.Map;

import org.eclipse.core.filesystem.IFileStore;
import org.eclipse.core.filesystem.IFileSystem;
import org.eclipse.core.filesystem.provider.FileSystem;
import org.eclipse.core.internal.filesystem.NullFileStore;
import org.eclipse.core.runtime.Path;
import org.openembedded.bc.bitbake.BBSession;
import org.openembedded.bc.ui.Activator;


/**
 * A filesystem that ignores specific OE directories that contain derived information.
 * @author kgilmer
 *
 */
public class OEFileSystem extends FileSystem {

	private static IFileSystem ref;
	public static IFileSystem getInstance() {
		return ref;
	}

	private Map fileStoreCache;

	public OEFileSystem() {
		ref = this;
		fileStoreCache = new Hashtable();
	}
	
	@Override
	public IFileStore getStore(URI uri) {
		
		OEFile uf = (OEFile) fileStoreCache.get(uri);
		
		if (uf == null) {
			BBSession config = null;
			try {
				config = Activator.getBBSession(uri.getPath());
				if (!config.isInitialized()) {
					config.initialize();
				}
			} catch (Exception e) {
				e.printStackTrace();
				return new NullFileStore(new Path(uri.getPath()));
			}

			if (config.get("TMPDIR") == null || config.get("DL_DIR") == null) {
				throw new RuntimeException("Invalid local.conf: TMPDIR or DL_DIR undefined.");
			}
			
			List ignoreList = new ArrayList();

			//These directories are ignored because they contain too many files for Eclipse to handle efficiently.
			ignoreList.add(config.get("TMPDIR"));
			ignoreList.add(config.get("DL_DIR"));
			
			uf = new OEFile(new File(uri.getPath()), ignoreList, uri.getPath());
			fileStoreCache.put(uri, uf);
		}
		
		return uf;
	}
}