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 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "LlamaRunner.h"
#include "mozilla/dom/LlamaRunnerBinding.h"
#include "mozilla/dom/quota/QuotaCommon.h"
#include "nsCOMPtr.h"
#include "nsDebug.h"
#include "nsIEventTarget.h"
#include "nsIFileStreams.h"
#include "nsINode.h"
#include "nsISupports.h"
#include "nsWrapperCache.h"
#include "nsXPCOM.h"
#include "prsystem.h"
#include "mozilla/Casting.h"
#include <cstddef>
#include "mozilla/dom/Promise.h"
#include "mozilla/dom/ReadableStream.h"
#include "mozilla/dom/ReadableStreamDefaultController.h"
#include "mozilla/dom/UnderlyingSourceCallbackHelpers.h"
#include "nsIFileStreams.h"
#include "nsThreadUtils.h"
#include "mozilla/RefPtr.h"
#include "nsIThread.h"
#include "nsError.h"
#include "mozilla/dom/ContentChild.h"
#include "mozilla/llama/LlamaBackend.h"
#include "mozilla/Logging.h"
#include "nsThread.h"
#include "nsThreadManager.h"
#include "mozilla/ThreadEventQueue.h"
#include "mozilla/dom/Promise-inl.h"
#include "nsQueryObject.h"
#include "private/pprio.h"
#ifdef XP_WIN
# include <fcntl.h>
#endif
mozilla::LazyLogModule gLlamaRunnerLog("GeckoMLLlamaRunnerNative");
#define LOGV_RUNNER(fmt, ...) \
MOZ_LOG_FMT(gLlamaRunnerLog, LogLevel::Verbose, fmt, ##__VA_ARGS__)
#define LOGD_RUNNER(fmt, ...) \
MOZ_LOG_FMT(gLlamaRunnerLog, LogLevel::Debug, fmt, ##__VA_ARGS__)
#define LOGE_RUNNER(fmt, ...) \
MOZ_LOG_FMT(gLlamaRunnerLog, LogLevel::Error, fmt, ##__VA_ARGS__)
namespace mozilla::dom {
NS_IMPL_CYCLE_COLLECTION_INHERITED(LlamaStreamSource,
UnderlyingSourceAlgorithmsWrapper, mTask,
mOriginalEventTarget, mControllerStream,
mGenerateThread)
NS_IMPL_ADDREF_INHERITED(LlamaStreamSource, UnderlyingSourceAlgorithmsWrapper)
NS_IMPL_RELEASE_INHERITED(LlamaStreamSource, UnderlyingSourceAlgorithmsWrapper)
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(LlamaStreamSource)
NS_INTERFACE_MAP_END_INHERITING(UnderlyingSourceAlgorithmsWrapper)
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(LlamaRunner, mStreamSource, mGlobal)
NS_IMPL_CYCLE_COLLECTING_ADDREF(LlamaRunner)
NS_IMPL_CYCLE_COLLECTING_RELEASE(LlamaRunner)
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(LlamaRunner)
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
NS_INTERFACE_MAP_ENTRY(nsISupports)
NS_INTERFACE_MAP_END
} // namespace mozilla::dom
namespace mozilla::llama {
// Constructed with strong ownership of the backend (RefPtr),
// and a weak reference to the stream to avoid keeping it alive.
LlamaGenerateTask::LlamaGenerateTask(RefPtr<LlamaBackend> aBackend,
const LlamaChatOptions& aOptions)
: CancelableRunnable("LlamaGenerateTask"),
mBackend(std::move(aBackend)),
mChatOptions(aOptions),
mMessagesQueue(5) {}
LlamaGenerateTask::~LlamaGenerateTask() {
LOGD_RUNNER("Entered {}", __PRETTY_FUNCTION__);
}
nsresult LlamaGenerateTask::Run() {
LOGD_RUNNER("Entered {}", __PRETTY_FUNCTION__);
mState = TaskState::Running;
mozilla::dom::LlamaChatResponse response;
// Used by the backend to check cancellation status during generation.
auto cancelCallback = [&state = mState]() -> bool {
return state == TaskState::Cancelled;
};
// Called by the backend each time new tokens are generated.
auto tokenCallback =
[&response, bufSize = mChatOptions.mMinOutputBufferSize, self = this](
const mozilla::dom::LlamaChatResponse& chunk) -> ResultStatus {
LOGV_RUNNER("Entered {}", __PRETTY_FUNCTION__);
// Flush if phase has changed
if ((response.mPhase != chunk.mPhase) && !response.mTokens.IsEmpty()) {
LOGV_RUNNER("{}: Pushing completed chunk", __PRETTY_FUNCTION__);
// Push the completed chunk
if (MOZ_LIKELY(self->PushMessage(mozilla::Some(response)))) {
// Reset for next chunk
response = mozilla::dom::LlamaChatResponse();
} else {
auto msg = nsFmtCString(
FMT_STRING("{}: fatal error: the message queue is full"),
__PRETTY_FUNCTION__);
LOGE_RUNNER("{}", msg);
// graceful termination
return mozilla::Err(Error{msg});
}
}
response.mPiece.Append(chunk.mPiece);
auto out =
response.mTokens.AppendElements(chunk.mTokens, mozilla::fallible);
if (!out) {
auto msg = nsFmtCString(
FMT_STRING("{}: Unable to append message to the response"),
__PRETTY_FUNCTION__);
LOGE_RUNNER("{}", msg);
return mozilla::Err(Error{msg});
}
response.mPhase = chunk.mPhase;
response.mIsPhaseCompleted = chunk.mIsPhaseCompleted;
// Flush if buffer is full or phase is complete
if ((response.mTokens.Length() >= mozilla::AssertedCast<size_t>(bufSize)) ||
response.mIsPhaseCompleted) {
LOGV_RUNNER("{}: Pushing completed chunk", __PRETTY_FUNCTION__);
if (self->MaybePushMessage(mozilla::Some(response))) {
// Push the completed chunk to the stream source
// Reset for next chunk
response = mozilla::dom::LlamaChatResponse();
}
}
LOGV_RUNNER("Exiting {}", __PRETTY_FUNCTION__);
return mozilla::Ok();
};
// Start generation using provided callbacks
auto result = mBackend->Generate(mChatOptions, tokenCallback, cancelCallback);
// Generation done, clearing backend
mBackend = nullptr;
// Notify stream source of failure
if (result.isErr()) {
LOGE_RUNNER("{} Error during generation {}", __PRETTY_FUNCTION__,
result.inspectErr().mMessage);
mErrorMessage = result.inspectErr().mMessage;
mState = TaskState::CompletedFailure;
return NS_ERROR_FAILURE;
}
// Notify completion (nullopt signals end of stream)
LOGV_RUNNER("{}: Indicating completed status", __PRETTY_FUNCTION__);
if (MOZ_UNLIKELY(!PushMessage(mozilla::Nothing()))) {
auto msg =
nsFmtCString(FMT_STRING("{}: Fatal error: Unable to indicate "
"completion status as the queue is full"),
__PRETTY_FUNCTION__);
LOGE_RUNNER("{}", msg);
mErrorMessage = msg;
mState = TaskState::CompletedFailure;
}
LOGV_RUNNER("{} LlamaGenerateTask Completed.", __PRETTY_FUNCTION__);
mState = TaskState::CompletedSuccess;
return NS_OK;
}
nsresult LlamaGenerateTask::Cancel() {
LOGD_RUNNER("Entered {}", __PRETTY_FUNCTION__);
if (mState == TaskState::Idle || mState == TaskState::Running) {
// Cancel signal for backend to stop generation
mState = TaskState::Cancelled;
LOGD_RUNNER("{}: Cancellation signal set", __PRETTY_FUNCTION__);
} else {
LOGD_RUNNER("{}: Task is already completed or cancelled. Not re-cancelling",
__PRETTY_FUNCTION__);
}
return NS_OK;
}
bool LlamaGenerateTask::PushMessage(
mozilla::Maybe<LlamaChatResponse> aMessage) {
LOGV_RUNNER("Entered {}", __PRETTY_FUNCTION__);
if (MaybePushMessage(aMessage)) {
return true;
}
auto numEnqueued = mMessagesQueue.Enqueue(aMessage);
LOGV_RUNNER("Exited {}", __PRETTY_FUNCTION__);
return numEnqueued > 0;
}
bool LlamaGenerateTask::MaybePushMessage(
mozilla::Maybe<LlamaChatResponse> aMessage) {
LOGV_RUNNER("Entered {}", __PRETTY_FUNCTION__);
// One producer (thread this function is running from), one consumer thread.
// If No one is waiting, then do nothing
if (mHasPendingConsumer) {
// A consumer is waiting. Resolve its pending promise using a message:
// - Prefer an already queued message if available
// - Otherwise, use the incoming one
// To eliminate a rare race condition (where the consumer may request
// a new promise before we finish resolving the current one), we *first*
// switch to the next promise holder index, then resolve the current one.
// This guarantees the consumer will always use a fresh, unfulfilled
// promise.
// First resolve with any existing message in the queue
mozilla::Maybe<LlamaChatResponse> existingMessage;
mozilla::Maybe<LlamaChatResponse> messageToResolve;
// Indicate the thread we are now reading from
mMessagesQueue.ResetConsumerThreadId();
if (mMessagesQueue.Dequeue(&existingMessage, 1)) {
messageToResolve = std::move(existingMessage);
// We've consumed one from the queue, so there should be space to enqueue
// the new one
auto numEnqueued = mMessagesQueue.Enqueue(aMessage);
if (MOZ_UNLIKELY(!numEnqueued)) {
auto msg = nsFmtCString(
FMT_STRING(
"{}: LlamaGenerateTask::PushMessage failed: queue is full when "
"it shoudn't"),
__PRETTY_FUNCTION__);
LOGE_RUNNER("{}", msg);
MOZ_ASSERT(false,
"LlamaGenerateTask::PushMessage failed: queue is full when "
"it shoudn't");
}
} else {
messageToResolve = aMessage;
}
auto promiseHolderToResolveIdx = mCurrentPromiseHolderIdx;
mCurrentPromiseHolderIdx ^= 1; // toggles between 0 and 1
mHasPendingConsumer = false;
mPromiseHolders[promiseHolderToResolveIdx].Resolve(messageToResolve,
__func__);
LOGV_RUNNER("Exited {} with message pushed", __PRETTY_FUNCTION__);
return true;
}
LOGV_RUNNER("Exited {} with message not pushed", __PRETTY_FUNCTION__);
return false;
}
RefPtr<LlamaGenerateTaskPromise> LlamaGenerateTask::GetMessage() {
LOGV_RUNNER("Entered {}", __PRETTY_FUNCTION__);
if (mState == TaskState::CompletedFailure) {
// If the task has already failed, reject immediately with the stored error.
LOGE_RUNNER("{}: {}", __PRETTY_FUNCTION__, mErrorMessage);
return LlamaGenerateTaskPromise::CreateAndReject(mErrorMessage, __func__);
}
mozilla::Maybe<LlamaChatResponse> message;
// Indicate the thread we are now reading from.
mMessagesQueue.ResetConsumerThreadId();
if (mMessagesQueue.Dequeue(&message, 1)) {
LOGV_RUNNER(
"{}: A message is available immediately — resolve synchronously.",
__PRETTY_FUNCTION__);
return LlamaGenerateTaskPromise::CreateAndResolve(message, __func__);
}
LOGV_RUNNER("{}: Wait for message to be ready.", __PRETTY_FUNCTION__);
// No message is ready. Create a pending promise holder and mark that
// a consumer is now waiting. The producer will resolve this later.
RefPtr<LlamaGenerateTaskPromise> promise =
mPromiseHolders[mCurrentPromiseHolderIdx].Ensure(__func__);
mHasPendingConsumer = true;
return promise.forget();
}
} // namespace mozilla::llama
namespace mozilla::dom {
LlamaStreamSource::LlamaStreamSource(RefPtr<LlamaBackend> aBackend,
const LlamaChatOptions& aOptions)
: mBackend(std::move(aBackend)), mChatOptions(aOptions) {}
already_AddRefed<Promise> LlamaStreamSource::CancelCallbackImpl(
JSContext* aCx, const Optional<JS::Handle<JS::Value>>& aReason,
ErrorResult& aRv) {
LOGD_RUNNER("Entered {}", __PRETTY_FUNCTION__);
// Gracefully stop the background generation thread and task
if (mTask) {
LOGD_RUNNER("{}: Cancelling the generation task ", __PRETTY_FUNCTION__);
mTask->Cancel();
mTask = nullptr;
}
if (mGenerateThread) {
LOGD_RUNNER("{}: Shuting down the generation thread ", __PRETTY_FUNCTION__);
mGenerateThread->Shutdown();
mGenerateThread = nullptr;
}
LOGD_RUNNER("Exited {}", __PRETTY_FUNCTION__);
return nullptr;
}
already_AddRefed<Promise> LlamaStreamSource::PullCallbackImpl(
JSContext* aCx, ReadableStreamControllerBase& aController,
ErrorResult& aRv) {
LOGV_RUNNER("Entered {}", __PRETTY_FUNCTION__);
RefPtr<ReadableStream> controller = aController.Stream();
// Create JS promise to signal when data becomes available
RefPtr<Promise> promise = Promise::Create(controller->GetParentObject(), aRv);
if (!promise) {
auto msg = nsFmtCString(
FMT_STRING("{} Unable to create promise for llama source stream"),
__PRETTY_FUNCTION__);
LOGE_RUNNER("{}", msg);
// Cannot continue if promise creation failed
aRv.ThrowTypeError(msg);
return nullptr;
}
// First pull: capture the event target used by the stream
if (!mOriginalEventTarget) {
LOGD_RUNNER("Retrieving the event target of the readable stream thread");
mOriginalEventTarget = GetCurrentSerialEventTarget();
}
// First pull: Start the generation in a dedicated thread.
if (!mTask) {
LOGD_RUNNER("{}: Launching background task for generation",
__PRETTY_FUNCTION__);
LOGD_RUNNER("{}: Creating a new thread for generation",
__PRETTY_FUNCTION__);
nsresult rv2 = nsThreadManager::get().nsThreadManager::NewNamedThread(
"LlamaWorker"_ns, nsThreadManager::ThreadCreationOptions{},
getter_AddRefs(mGenerateThread));
if (NS_FAILED(rv2)) {
auto msg = nsFmtCString(FMT_STRING("{} Could not initialize LlamaWorker "
"thread via nsThreadManager."),
__PRETTY_FUNCTION__);
LOGE_RUNNER("{}", msg);
aRv.ThrowTypeError(msg);
return nullptr;
}
LOGD_RUNNER("{}: Creating LlamaGenerateTask", __PRETTY_FUNCTION__);
// Create task with backend and weak stream reference
mTask =
MakeRefPtr<mozilla::llama::LlamaGenerateTask>(mBackend, mChatOptions);
LOGD_RUNNER("{}: Starting LlamaGenerateTask", __PRETTY_FUNCTION__);
// Dispatch task to background thread
auto dispatchedTask = mTask;
nsresult rv =
mGenerateThread->Dispatch(dispatchedTask.forget(), NS_DISPATCH_NORMAL);
if (NS_FAILED(rv)) {
mTask = nullptr;
auto msg = nsFmtCString(
FMT_STRING("{} Unable to start LlamaGenerateTask in the background "),
__PRETTY_FUNCTION__);
LOGE_RUNNER("{}", msg);
aRv.ThrowTypeError(msg);
return nullptr;
}
}
auto task = mTask;
auto messagePromise = task->GetMessage();
// When resolved, flush available results into stream
Result<RefPtr<Promise>, nsresult> pullResult =
promise->ThenWithCycleCollectedArgs(
[](JSContext* aCx, JS::Handle<JS::Value> aValue, ErrorResult& aRv,
RefPtr<Promise> aPromise, RefPtr<ReadableStream> aStream)
MOZ_CAN_RUN_SCRIPT -> already_AddRefed<Promise> {
if (aValue.isUndefined()) {
LOGD_RUNNER(
"{}: LlamaStreamSource completed. Closing the stream",
__PRETTY_FUNCTION__);
aStream->CloseNative(aCx, aRv);
} else {
LOGV_RUNNER("{} Deliver chunk message to stream",
__PRETTY_FUNCTION__);
aStream->EnqueueNative(aCx, aValue, aRv);
}
return nullptr;
},
promise, mControllerStream);
if (pullResult.isErr()) {
LOGE_RUNNER(
"{}: Error when chaining generation dom promise with incoming message "
"one",
__PRETTY_FUNCTION__);
aRv.Throw(pullResult.inspectErr());
return nullptr;
}
// When the generation task has new data, messagePromise is resolved & then we
// resolve the JS promise
messagePromise->Then(
// ← Ensure the chained resolve/reject run in the thread where the JS
// promise is created from
mOriginalEventTarget,
// debugging label
__func__,
[promise](mozilla::Maybe<LlamaChatResponse>&& chunk) {
if (chunk) {
promise->MaybeResolve(chunk.ref());
}
promise->MaybeResolveWithUndefined();
},
[promise](const nsCString& error) {
promise->MaybeRejectWithTypeError(error);
});
return pullResult.unwrap().forget();
}
LlamaStreamSource::~LlamaStreamSource() {
LOGD_RUNNER("Entered {}", __PRETTY_FUNCTION__);
if (mTask) {
LOGD_RUNNER("{}: Cancelling the generation task ", __PRETTY_FUNCTION__);
mTask->Cancel();
mTask = nullptr;
}
if (mGenerateThread) {
LOGD_RUNNER("{}: Shuting down the generation thread ", __PRETTY_FUNCTION__);
mGenerateThread->Shutdown();
mGenerateThread = nullptr;
}
}
void LlamaStreamSource::SetControllerStream(RefPtr<ReadableStream> aStream) {
mControllerStream = aStream;
}
} // namespace mozilla::dom
namespace mozilla::dom {
LlamaRunner::LlamaRunner(const GlobalObject& aGlobal)
: mBackend(MakeRefPtr<LlamaBackend>()),
mGlobal(do_QueryInterface(aGlobal.GetAsSupports())) {}
already_AddRefed<ReadableStream> LlamaRunner::CreateGenerationStream(
const LlamaChatOptions& aOptions, ErrorResult& aRv) {
LOGD_RUNNER("Entered {}", __PRETTY_FUNCTION__);
RefPtr<LlamaStreamSource> source = new LlamaStreamSource(mBackend, aOptions);
AutoJSAPI jsapi;
if (!jsapi.Init(mGlobal)) {
auto msg = nsFmtCString(FMT_STRING("{} Unable to initialize the JSAPI"),
__PRETTY_FUNCTION__);
LOGE_RUNNER("{}", msg);
aRv.ThrowTypeError(msg);
return nullptr;
}
LOGD_RUNNER("{}: Obtaining the JSContext", __PRETTY_FUNCTION__);
JSContext* cx = jsapi.cx();
Maybe<double> highWaterMark;
QueuingStrategySize* sizeAlgorithm = nullptr;
LOGD_RUNNER("{}: Creating the native readable stream from LlamaStreamSource ",
__PRETTY_FUNCTION__);
RefPtr<ReadableStream> stream = ReadableStream::CreateNative(
cx, mGlobal, *source, highWaterMark, sizeAlgorithm, aRv);
source->SetControllerStream(stream);
mStreamSource = source;
return stream.forget();
}
bool LlamaRunner::InInferenceProcess(JSContext*, JSObject*) {
if (!ContentChild::GetSingleton()) {
return false;
}
return ContentChild::GetSingleton()->GetRemoteType().Equals(
INFERENCE_REMOTE_TYPE);
}
class MetadataCallback final : public nsIFileMetadataCallback {
public:
NS_DECL_THREADSAFE_ISUPPORTS
explicit MetadataCallback(LlamaRunner* aRunner) : mRunner(aRunner) {}
NS_IMETHOD OnFileMetadataReady(nsIAsyncFileMetadata* aObject) override {
mRunner->OnMetadataReceived();
return NS_OK;
}
LlamaRunner* mRunner = nullptr;
private:
virtual ~MetadataCallback() = default;
};
NS_IMPL_ISUPPORTS(MetadataCallback, nsIFileMetadataCallback)
void LlamaRunner::OnMetadataReceived() {
mMetadataCallback = nullptr;
const nsCOMPtr<nsIFileMetadata> fileMetadata = do_QueryInterface(mStream);
if (NS_WARN_IF(!fileMetadata)) {
LOGE_RUNNER("QI fileMetadata failed");
return;
}
PRFileDesc* fileDesc;
const nsresult rv = fileMetadata->GetFileDescriptor(&fileDesc);
if (NS_WARN_IF(NS_FAILED(rv))) {
LOGE_RUNNER("GetFileDescriptor failed");
return;
}
MOZ_ASSERT(fileDesc);
#ifdef XP_WIN
// Convert our file descriptor to FILE*
void* handle = mozilla::ipc::FileDescriptor::PlatformHandleType(
PR_FileDesc2NativeHandle(fileDesc));
int fd = _open_osfhandle(reinterpret_cast<intptr_t>(handle), _O_RDONLY);
if (fd == -1) {
LOGE_RUNNER("Convertion to integer fd failed");
return;
}
FILE* fp = fdopen(fd, "rb");
if (!fp) {
LOGE_RUNNER("Conversion to FILE* failed");
return;
}
#else
PROsfd fd = PR_FileDesc2NativeHandle(fileDesc);
FILE* fp = fdopen(fd, "r");
#endif
auto result = mBackend->Reinitialize(LlamaModelOptions(mModelOptions), fp);
LOGD_RUNNER("LLamaRunner: Reinitialize OK");
if (result.isErr()) {
LOGE_RUNNER("{}", result.inspectErr().mMessage);
mInitPromise->MaybeReject(NS_ERROR_FAILURE);
return;
}
mInitPromise->MaybeResolve(NS_OK);
}
already_AddRefed<Promise> LlamaRunner::Initialize(
const LlamaModelOptions& aOptions, Blob& aModelBlob, ErrorResult& aRv) {
LOGD_RUNNER("Entered {}", __PRETTY_FUNCTION__);
RefPtr<Promise> promise = Promise::Create(mGlobal, aRv);
if (aRv.Failed()) {
return nullptr;
}
mModelOptions = aOptions;
RefPtr<Blob> domBlob = do_QueryObject(&aModelBlob);
domBlob->CreateInputStream(getter_AddRefs(mStream), aRv);
const nsCOMPtr<nsIFileMetadata> fileMetadata = do_QueryInterface(mStream);
if (NS_WARN_IF(!fileMetadata)) {
return nullptr;
}
mInitPromise = promise;
nsCOMPtr<nsIEventTarget> eventTarget = mozilla::GetCurrentSerialEventTarget();
nsCOMPtr<nsIAsyncFileMetadata> asyncFileMetadata = do_QueryInterface(mStream);
mMetadataCallback = MakeAndAddRef<MetadataCallback>(this);
nsresult rv = asyncFileMetadata->AsyncFileMetadataWait(
mMetadataCallback.get(), eventTarget);
if (NS_WARN_IF(NS_FAILED(rv))) {
LOGD_RUNNER("{} AsyncFileMetadataWait failed", __PRETTY_FUNCTION__);
return nullptr;
}
LOGD_RUNNER("{} Initialization successfully complete", __PRETTY_FUNCTION__);
return promise.forget();
}
already_AddRefed<LlamaRunner> LlamaRunner::Constructor(
const GlobalObject& aGlobal, ErrorResult& aRv) {
RefPtr<LlamaRunner> runner = new LlamaRunner(aGlobal);
return runner.forget();
}
JSObject* LlamaRunner::WrapObject(JSContext* aCx,
JS::Handle<JSObject*> aGivenProto) {
return LlamaRunner_Binding::Wrap(aCx, this, aGivenProto);
}
already_AddRefed<Promise> LlamaRunner::FormatChat(
const LlamaFormatChatOptions& aOptions, ErrorResult& aRv) {
LOGD_RUNNER("Entered {}", __PRETTY_FUNCTION__);
RefPtr<Promise> promise = Promise::Create(mGlobal, aRv);
if (aRv.Failed()) {
auto msg = "Failed to create promise in LlamaRunner"_ns;
LOGE_RUNNER("{}", msg);
aRv.ThrowTypeError(msg);
return nullptr;
}
auto result = mBackend->FormatChat(aOptions);
if (result.isErr()) {
LOGE_RUNNER("{}", result.inspectErr().mMessage);
aRv.ThrowTypeError(result.inspectErr().mMessage);
return nullptr;
}
promise->MaybeResolve(result.unwrap());
LOGD_RUNNER("Successfully completed {}", __PRETTY_FUNCTION__);
return promise.forget();
}
} // namespace mozilla::dom
|