blob: 05b6af259d39ba2d91078a2aed4fdd31a1b46e1e [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
#include "Clr2JavaImpl.h"
namespace Org {
namespace Apache {
namespace REEF {
namespace Driver {
namespace Bridge {
namespace Clr2java {
ref class ManagedLog {
internal:
static BridgeLogger^ LOGGER = BridgeLogger::GetLogger("<C++>");
};
DriverRestartedClr2Java::DriverRestartedClr2Java(JNIEnv *env, jobject jdriverRestarted) {
ManagedLog::LOGGER->LogStart("DriverRestartedClr2Java::DriverRestartedClr2Java");
pin_ptr<JavaVM*> pJavaVm = &_jvm;
if (env->GetJavaVM(pJavaVm) != 0) {
ManagedLog::LOGGER->LogError("Failed to get JavaVM", nullptr);
}
_jobjectDriverRestarted = reinterpret_cast<jobject>(env->NewGlobalRef(jdriverRestarted));
jclass jclassDriverRestarted = env->GetObjectClass(_jobjectDriverRestarted);
jfieldID jidExpectedEvaluatorIds = env->GetFieldID(jclassDriverRestarted, "expectedEvaluatorIds", "[Ljava/lang/String;");
jfieldID jidResubmissionAttempts = env->GetFieldID(jclassDriverRestarted, "resubmissionAttempts", "I");
_resubmissionAttempts = env->GetIntField(_jobjectDriverRestarted, jidResubmissionAttempts);
jobjectArray jevaluatorIds = reinterpret_cast<jobjectArray>(env->NewGlobalRef(env->GetObjectField(_jobjectDriverRestarted, jidExpectedEvaluatorIds)));
_startTime = System::DateTime::Now;
int count = env->GetArrayLength(jevaluatorIds);
_expectedEvaluatorIds = gcnew array<String^>(count);
for (int i = 0; i < count; i++) {
jstring string = (jstring)(*env).GetObjectArrayElement(jevaluatorIds, i);
_expectedEvaluatorIds[i] = ManagedStringFromJavaString(env, string);
}
ManagedLog::LOGGER->LogStop("DriverRestartedClr2Java::DriverRestartedClr2Java");
}
array<String^>^ DriverRestartedClr2Java::GetExpectedEvaluatorIds() {
return _expectedEvaluatorIds;
}
DateTime DriverRestartedClr2Java::GetStartTime() {
return _startTime;
}
int DriverRestartedClr2Java::GetResubmissionAttempts() {
return _resubmissionAttempts;
}
void DriverRestartedClr2Java::OnError(String^ message) {
ManagedLog::LOGGER->Log("DriverRestartedClr2Java::OnError");
JNIEnv *env = RetrieveEnv(_jvm);
HandleClr2JavaError(env, message, _jobjectDriverRestarted);
}
}
}
}
}
}
}