• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**
2  * Copyright (c) 2021-2024 Huawei Device Co., Ltd.
3  * Copyright (c) 2021-2024 Huawei Device Co., Ltd.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef ETS_REGEXP_REGEXP_EXECUTOR_H
18 #define ETS_REGEXP_REGEXP_EXECUTOR_H
19 
20 #include "runtime/regexp/ecmascript/regexp_executor.h"
21 #include "plugins/ets/runtime/types/ets_string.h"
22 #include "utils/logger.h"
23 
24 namespace ark::ets {
25 
26 class RegExpExecutor : public ark::RegExpExecutor {
27 public:
28     RegExpMatchResult<PandaString> GetResult(bool isSuccess, bool hasIndices) const;
29 
30 private:
31     std::pair<uint32_t, uint32_t> GetIndices(CaptureState *captureState) const;
32     void HandleCaptures(PandaVector<std::pair<bool, PandaString>> &captures,
33                         PandaVector<std::pair<uint32_t, uint32_t>> &indices, CaptureState *captureState) const;
34 };
35 }  // namespace ark::ets
36 
37 #endif  // ets_REGEXP_REGEXP_EXECUTOR_H
38