aboutsummaryrefslogtreecommitdiff
path: root/src/com/android/tradefed/build/KernelBuildInfo.java
blob: bc8c868e618caa8ab218f5cf76fe42b85d60f14a (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
/*
 * Copyright (C) 2012 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.android.tradefed.build;

import java.io.File;
import java.io.IOException;

/**
 * A {@link IBuildInfo} that represents a kernel build.
 */
public class KernelBuildInfo extends BuildInfo implements IKernelBuildInfo {
    private static final long serialVersionUID = BuildSerializedVersion.VERSION;
    private final static String KERNEL_FILE = "kernel";

    private String mSha1 = null;
    private String mShortSha1 = null;
    private long mCommitTime = 0;

    /**
     * Creates a {@link KernelBuildInfo}.
     */
    public KernelBuildInfo() {
        super();
    }

    /**
     * Creates a {@link KernelBuildInfo}.
     *
     * @param sha1 the git sha1, used as the build id
     * @param shortSha1 the git short sha1
     * @param commitTime the git commit time
     * @param buildName the build name
     */
    public KernelBuildInfo(String sha1, String shortSha1, long commitTime, String buildName) {
        super(sha1, buildName);
        mSha1 = sha1;
        mShortSha1 = shortSha1;
        mCommitTime = commitTime;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public File getKernelFile() {
        return getFile(KERNEL_FILE);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public String getKernelVersion() {
        return getVersion(KERNEL_FILE);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void setKernelFile(File kernelFile, String version) {
        setFile(KERNEL_FILE, kernelFile, version);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public String getSha1() {
        return mSha1;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void setSha1(String sha1) {
        mSha1 = sha1;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public String getShortSha1() {
        return mShortSha1;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void setShortSha1(String shortSha1) {
        mShortSha1 = shortSha1;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public long getCommitTime() {
        return mCommitTime;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void setCommitTime(long time) {
        mCommitTime = time;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public IBuildInfo clone() {
        KernelBuildInfo copy = new KernelBuildInfo(getSha1(), getShortSha1(),
                getCommitTime(), getBuildTargetName());
        copy.addAllBuildAttributes(this);
        try {
            copy.addAllFiles(this);
        } catch (IOException e) {
            throw new RuntimeException(e);
        }
        copy.setBuildBranch(getBuildBranch());
        copy.setBuildFlavor(getBuildFlavor());

        return copy;
    }
}