summaryrefslogtreecommitdiff
path: root/fxjs/cfxjse_arguments.h
blob: d523d6f9064421a377f69aef55c790553b6897a0 (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
// Copyright 2016 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com

#ifndef FXJS_CFXJSE_ARGUMENTS_H_
#define FXJS_CFXJSE_ARGUMENTS_H_

#include <memory>

#include "core/fxcrt/unowned_ptr.h"
#include "fxjs/cfxjse_class.h"
#include "fxjs/fxjse.h"

class CFXJSE_Arguments {
 public:
  CFXJSE_Arguments(const v8::FunctionCallbackInfo<v8::Value>* pInfo,
                   CFXJSE_Value* pRetValue);
  ~CFXJSE_Arguments();

  int32_t GetLength() const;
  std::unique_ptr<CFXJSE_Value> GetValue(int32_t index) const;
  bool GetBoolean(int32_t index) const;
  int32_t GetInt32(int32_t index) const;
  float GetFloat(int32_t index) const;
  ByteString GetUTF8String(int32_t index) const;
  CFXJSE_Value* GetReturnValue() const;

 private:
  UnownedPtr<const v8::FunctionCallbackInfo<v8::Value>> const m_pInfo;
  UnownedPtr<CFXJSE_Value> const m_pRetValue;
};

#endif  // FXJS_CFXJSE_ARGUMENTS_H_