Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8d2287f2fd07db02c4671ddb9653b44d7f88c973 (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2007 compeople AG and others.
 * 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:
 * 	compeople AG (Stefan Liebig) - initial API and implementation
 *******************************************************************************/
package org.eclipse.equinox.internal.p2.artifact.processors.jbdiff;

import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.equinox.internal.p2.core.helpers.ServiceHelper;
import org.eclipse.equinox.p2.artifact.processors.Activator;
import org.eclipse.equinox.p2.artifact.repository.*;
import org.eclipse.equinox.p2.artifact.repository.processing.ProcessingStep;
import org.eclipse.equinox.p2.artifact.repository.processing.ProcessingStepDescriptor;
import org.eclipse.equinox.p2.metadata.IArtifactKey;

/**
 * The <code>AbstractDeltaPatchStep</code> is an abstract processing step that
 * retrieves a local artifact repository containing the serialized/encoded
 * artifact key. It assumes that the artifact key is stored within the data property
 * of the processing step descriptor and that is encoded with the <code>ArtifactKeyDeserializerXXX</code>.
 */
public abstract class AbstractDeltaPatchStep extends ProcessingStep {

	protected IArtifactKey key;
	protected IArtifactRepository repository;

	/* (non-Javadoc)
	 * @see org.eclipse.equinox.p2.artifact.repository.processing.ProcessingStep#initialize(org.eclipse.equinox.p2.artifact.repository.processing.ProcessingStepDescriptor, org.eclipse.equinox.p2.artifact.repository.IArtifactDescriptor)
	 */
	public void initialize(ProcessingStepDescriptor descriptor, IArtifactDescriptor context) {
		super.initialize(descriptor, context);

		fetchArtifactKey(descriptor);
		if (!status.isOK())
			return;

		fetchLocalArtifactRepository();
	}

	/**
	 * Fetch the artifact key from the given processing step descriptor.
	 * @param descriptor
	 */
	private void fetchArtifactKey(ProcessingStepDescriptor descriptor) {
		try {
			key = ArtifactKeyDeSerializer.deserialize(descriptor.getData());
		} catch (IllegalArgumentException e) {
			status = new Status(IStatus.ERROR, Activator.ID, "Predecessor artifact key for delta could not be deserialized. Serialized key is " + descriptor.getData(), e);
		}
	}

	/**
	 * Fetch a local artifact repository containing the fetched artifact key.
	 */
	private void fetchLocalArtifactRepository() {
		IArtifactRepositoryManager repoMgr = (IArtifactRepositoryManager) ServiceHelper.getService(Activator.getContext(), IArtifactRepositoryManager.class.getName());
		if (repoMgr == null) {
			status = new Status(IStatus.ERROR, Activator.ID, "Could not get artifact repository manager.");
			return;
		}

		IArtifactRepository[] repositories = repoMgr.getKnownRepositories();
		for (int i = 0; i < repositories.length; i++) {
			if ("file".equals(repositories[i].getLocation().getProtocol()) && repositories[i].contains(key)) {
				repository = repositories[i];
				return;
			}
		}
		status = new Status(IStatus.ERROR, Activator.ID, "No repository available containing key " + key);
	}

}

Back to the top