aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/tools/android/java/com/google/devtools/build/android/DataKey.java
blob: 02f193c0f773dc0ac74110e48b58137cd69b68db (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
// Copyright 2016 The Bazel Authors. All rights reserved.
//
// 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.google.devtools.build.android;

import java.io.IOException;
import java.io.OutputStream;

/**
 * A general interface for resource and asset keys.
 *
 * <p>Resource and Assets are merged on the basis of a key value:
 *
 * <p>For Resources, this is the fully qualified name, consisting of the resource package, name,
 * type, and qualifiers.
 *
 * <p>For Assets, it is the asset path from the assets directory.
 */
public interface DataKey extends Comparable<DataKey> {

  /**
   * Writes the Key and the value size to a stream.
   *
   * @param output The destination stream to serialize the key.
   * @param valueSize The size, in bytes, of the serialized output for this key. The value size can
   *     be used for calculating offsets of the value in the stream.
   */
  void serializeTo(OutputStream output, int valueSize) throws IOException;

  /** Returns a human readable string representation of the key. */
  String toPrettyString();

  /** Defines a total ordering on the different key types to assist in compareTo operations. */
  enum KeyType {
    ASSET_PATH,
    FULL_QUALIFIED_NAME
  }

  KeyType getKeyType();
}