Search in sources :

Example 1 with LongRange

use of org.apache.commons.lang.math.LongRange in project hadoop by apache.

the class TestGetApplicationsRequest method testGetApplicationsRequest.

@Test
public void testGetApplicationsRequest() {
    GetApplicationsRequest request = GetApplicationsRequest.newInstance();
    EnumSet<YarnApplicationState> appStates = EnumSet.of(YarnApplicationState.ACCEPTED);
    request.setApplicationStates(appStates);
    Set<String> tags = new HashSet<String>();
    tags.add("tag1");
    request.setApplicationTags(tags);
    Set<String> types = new HashSet<String>();
    types.add("type1");
    request.setApplicationTypes(types);
    long startBegin = System.currentTimeMillis();
    long startEnd = System.currentTimeMillis() + 1;
    request.setStartRange(startBegin, startEnd);
    long finishBegin = System.currentTimeMillis() + 2;
    long finishEnd = System.currentTimeMillis() + 3;
    request.setFinishRange(finishBegin, finishEnd);
    long limit = 100L;
    request.setLimit(limit);
    Set<String> queues = new HashSet<String>();
    queues.add("queue1");
    request.setQueues(queues);
    Set<String> users = new HashSet<String>();
    users.add("user1");
    request.setUsers(users);
    ApplicationsRequestScope scope = ApplicationsRequestScope.ALL;
    request.setScope(scope);
    GetApplicationsRequest requestFromProto = new GetApplicationsRequestPBImpl(((GetApplicationsRequestPBImpl) request).getProto());
    // verify the whole record equals with original record
    Assert.assertEquals(requestFromProto, request);
    // verify all properties are the same as original request
    Assert.assertEquals("ApplicationStates from proto is not the same with original request", requestFromProto.getApplicationStates(), appStates);
    Assert.assertEquals("ApplicationTags from proto is not the same with original request", requestFromProto.getApplicationTags(), tags);
    Assert.assertEquals("ApplicationTypes from proto is not the same with original request", requestFromProto.getApplicationTypes(), types);
    Assert.assertEquals("StartRange from proto is not the same with original request", requestFromProto.getStartRange(), new LongRange(startBegin, startEnd));
    Assert.assertEquals("FinishRange from proto is not the same with original request", requestFromProto.getFinishRange(), new LongRange(finishBegin, finishEnd));
    Assert.assertEquals("Limit from proto is not the same with original request", requestFromProto.getLimit(), limit);
    Assert.assertEquals("Queues from proto is not the same with original request", requestFromProto.getQueues(), queues);
    Assert.assertEquals("Users from proto is not the same with original request", requestFromProto.getUsers(), users);
}
Also used : LongRange(org.apache.commons.lang.math.LongRange) ApplicationsRequestScope(org.apache.hadoop.yarn.api.protocolrecords.ApplicationsRequestScope) YarnApplicationState(org.apache.hadoop.yarn.api.records.YarnApplicationState) GetApplicationsRequestPBImpl(org.apache.hadoop.yarn.api.protocolrecords.impl.pb.GetApplicationsRequestPBImpl) GetApplicationsRequest(org.apache.hadoop.yarn.api.protocolrecords.GetApplicationsRequest) HashSet(java.util.HashSet) Test(org.junit.Test)

Example 2 with LongRange

use of org.apache.commons.lang.math.LongRange in project hadoop by apache.

the class GetApplicationsRequestPBImpl method getStartRange.

@Override
public LongRange getStartRange() {
    if (this.start == null) {
        GetApplicationsRequestProtoOrBuilder p = viaProto ? proto : builder;
        if (p.hasStartBegin() || p.hasStartEnd()) {
            long begin = p.hasStartBegin() ? p.getStartBegin() : 0L;
            long end = p.hasStartEnd() ? p.getStartEnd() : Long.MAX_VALUE;
            this.start = new LongRange(begin, end);
        }
    }
    return this.start;
}
Also used : LongRange(org.apache.commons.lang.math.LongRange) GetApplicationsRequestProtoOrBuilder(org.apache.hadoop.yarn.proto.YarnServiceProtos.GetApplicationsRequestProtoOrBuilder)

Example 3 with LongRange

use of org.apache.commons.lang.math.LongRange in project hadoop by apache.

the class GetApplicationsRequestPBImpl method getFinishRange.

@Override
public LongRange getFinishRange() {
    if (this.finish == null) {
        GetApplicationsRequestProtoOrBuilder p = viaProto ? proto : builder;
        if (p.hasFinishBegin() || p.hasFinishEnd()) {
            long begin = p.hasFinishBegin() ? p.getFinishBegin() : 0L;
            long end = p.hasFinishEnd() ? p.getFinishEnd() : Long.MAX_VALUE;
            this.finish = new LongRange(begin, end);
        }
    }
    return this.finish;
}
Also used : LongRange(org.apache.commons.lang.math.LongRange) GetApplicationsRequestProtoOrBuilder(org.apache.hadoop.yarn.proto.YarnServiceProtos.GetApplicationsRequestProtoOrBuilder)

Example 4 with LongRange

use of org.apache.commons.lang.math.LongRange in project hadoop by apache.

the class AppsBlock method fetchData.

protected void fetchData() throws YarnException, IOException, InterruptedException {
    reqAppStates = EnumSet.noneOf(YarnApplicationState.class);
    String reqStateString = $(APP_STATE);
    if (reqStateString != null && !reqStateString.isEmpty()) {
        String[] appStateStrings = reqStateString.split(",");
        for (String stateString : appStateStrings) {
            reqAppStates.add(YarnApplicationState.valueOf(stateString.trim()));
        }
    }
    callerUGI = getCallerUGI();
    final GetApplicationsRequest request = GetApplicationsRequest.newInstance(reqAppStates);
    String appsNumStr = $(APPS_NUM);
    if (appsNumStr != null && !appsNumStr.isEmpty()) {
        long appsNum = Long.parseLong(appsNumStr);
        request.setLimit(appsNum);
    }
    String appStartedTimeBegainStr = $(APP_START_TIME_BEGIN);
    long appStartedTimeBegain = 0;
    if (appStartedTimeBegainStr != null && !appStartedTimeBegainStr.isEmpty()) {
        appStartedTimeBegain = Long.parseLong(appStartedTimeBegainStr);
        if (appStartedTimeBegain < 0) {
            throw new BadRequestException("app.started-time.begin must be greater than 0");
        }
    }
    String appStartedTimeEndStr = $(APP_START_TIME_END);
    long appStartedTimeEnd = Long.MAX_VALUE;
    if (appStartedTimeEndStr != null && !appStartedTimeEndStr.isEmpty()) {
        appStartedTimeEnd = Long.parseLong(appStartedTimeEndStr);
        if (appStartedTimeEnd < 0) {
            throw new BadRequestException("app.started-time.end must be greater than 0");
        }
    }
    if (appStartedTimeBegain > appStartedTimeEnd) {
        throw new BadRequestException("app.started-time.end must be greater than app.started-time.begin");
    }
    request.setStartRange(new LongRange(appStartedTimeBegain, appStartedTimeEnd));
    if (callerUGI == null) {
        appReports = appBaseProt.getApplications(request).getApplicationList();
    } else {
        appReports = callerUGI.doAs(new PrivilegedExceptionAction<Collection<ApplicationReport>>() {

            @Override
            public Collection<ApplicationReport> run() throws Exception {
                return appBaseProt.getApplications(request).getApplicationList();
            }
        });
    }
}
Also used : ApplicationReport(org.apache.hadoop.yarn.api.records.ApplicationReport) LongRange(org.apache.commons.lang.math.LongRange) YarnApplicationState(org.apache.hadoop.yarn.api.records.YarnApplicationState) BadRequestException(org.apache.hadoop.yarn.webapp.BadRequestException) PrivilegedExceptionAction(java.security.PrivilegedExceptionAction) GetApplicationsRequest(org.apache.hadoop.yarn.api.protocolrecords.GetApplicationsRequest)

Example 5 with LongRange

use of org.apache.commons.lang.math.LongRange in project openhab1-addons by openhab.

the class TimeRangeCalendarTest method testAddRemoveExcludedDate.

@Test
public void testAddRemoveExcludedDate() throws ParseException {
    Date startTime = DATE_FORMATTER.parse("04.04.2012 16:00:00:000");
    Date endTime = DATE_FORMATTER.parse("04.04.2012 19:15:00:000");
    LongRange timeRange_1 = new LongRange(startTime.getTime(), endTime.getTime());
    LongRange timeRange_2 = new LongRange(startTime.getTime(), endTime.getTime());
    calendar.addTimeRange(timeRange_2);
    calendar.addTimeRange(timeRange_1);
    Assert.assertEquals(2, calendar.getExcludedRanges().size());
    Assert.assertEquals(timeRange_1, calendar.getExcludedRanges().get(1));
    Assert.assertEquals(timeRange_2, calendar.getExcludedRanges().get(0));
    calendar.removeExcludedDate(timeRange_1);
    Assert.assertEquals(1, calendar.getExcludedRanges().size());
    Assert.assertEquals(timeRange_2, calendar.getExcludedRanges().get(0));
}
Also used : LongRange(org.apache.commons.lang.math.LongRange) Date(java.util.Date) Test(org.junit.Test)

Aggregations

LongRange (org.apache.commons.lang.math.LongRange)18 Test (org.junit.Test)6 Date (java.util.Date)3 GetApplicationsRequest (org.apache.hadoop.yarn.api.protocolrecords.GetApplicationsRequest)3 ApplicationReport (org.apache.hadoop.yarn.api.records.ApplicationReport)3 YarnApplicationState (org.apache.hadoop.yarn.api.records.YarnApplicationState)3 IOException (java.io.IOException)2 PrivilegedExceptionAction (java.security.PrivilegedExceptionAction)2 UserGroupInformation (org.apache.hadoop.security.UserGroupInformation)2 ApplicationsRequestScope (org.apache.hadoop.yarn.api.protocolrecords.ApplicationsRequestScope)2 GetApplicationsRequestProtoOrBuilder (org.apache.hadoop.yarn.proto.YarnServiceProtos.GetApplicationsRequestProtoOrBuilder)2 BadRequestException (org.apache.hadoop.yarn.webapp.BadRequestException)2 Event (com.google.api.services.calendar.model.Event)1 UndeclaredThrowableException (java.lang.reflect.UndeclaredThrowableException)1 ArrayList (java.util.ArrayList)1 HashMap (java.util.HashMap)1 HashSet (java.util.HashSet)1 List (java.util.List)1 WebApplicationException (javax.ws.rs.WebApplicationException)1 Private (org.apache.hadoop.classification.InterfaceAudience.Private)1