blob: e8a6ab334d5d442f426cf45f9a01392f6daac51a [file] [log] [blame]
/*
* Copyright (C) 2019 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.clearcut;
import com.android.asuite.clearcut.Common.UserType;
import com.android.asuite.clearcut.ExternalUserLog.AtestLogEventExternal;
import com.android.asuite.clearcut.ExternalUserLog.AtestLogEventExternal.AtestStartEvent;
import com.android.asuite.clearcut.InternalUserLog.AtestLogEventInternal;
import com.google.protobuf.ByteString;
/** Utility to help populate the event protos */
public class ClearcutEventHelper {
private static final String TOOL_NAME = "Tradefed";
/**
* Create the start event for Tradefed.
*
* @param userKey The unique id representing the user
* @param runId The current id for the session.
* @param userType The type of the user: internal or external.
* @return a ByteString representation of the even proto.
*/
public static ByteString createStartEvent(String userKey, String runId, UserType userType) {
if (UserType.GOOGLE.equals(userType)) {
AtestLogEventInternal.Builder builder =
createBaseInternalEventBuilder(userKey, runId, userType);
AtestLogEventInternal.AtestStartEvent.Builder startEventBuilder =
AtestLogEventInternal.AtestStartEvent.newBuilder();
builder.setAtestStartEvent(startEventBuilder.build());
return builder.build().toByteString();
}
AtestLogEventExternal.Builder builder =
createBaseExternalEventBuilder(userKey, runId, userType);
AtestStartEvent.Builder startBuilder = AtestStartEvent.newBuilder();
builder.setAtestStartEvent(startBuilder.build());
return builder.build().toByteString();
}
/**
* Create the basic event builder with all the common informations.
*
* @param userKey The unique id representing the user
* @param runId The current id for the session.
* @param userType The type of the user: internal or external.
* @return a builder for the event.
*/
private static AtestLogEventExternal.Builder createBaseExternalEventBuilder(
String userKey, String runId, UserType userType) {
AtestLogEventExternal.Builder builder = AtestLogEventExternal.newBuilder();
builder.setUserKey(userKey);
builder.setRunId(runId);
builder.setUserType(userType);
builder.setToolName(TOOL_NAME);
return builder;
}
/**
* Create the basic event builder with all the common informations.
*
* @param userKey The unique id representing the user
* @param runId The current id for the session.
* @param userType The type of the user: internal or external.
* @return a builder for the event.
*/
private static AtestLogEventInternal.Builder createBaseInternalEventBuilder(
String userKey, String runId, UserType userType) {
AtestLogEventInternal.Builder builder = AtestLogEventInternal.newBuilder();
builder.setUserKey(userKey);
builder.setRunId(runId);
builder.setUserType(userType);
builder.setToolName(TOOL_NAME);
return builder;
}
}