• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2021 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #include "scanner.h"
16 #include "pkg_manager.h"
17 
18 using namespace hpackage;
19 
20 namespace uscript {
LexerInput(char * buf,int maxSize)21 int Scanner::LexerInput(char *buf, int maxSize)
22 {
23     size_t readLen = 0;
24     PkgBuffer data = {reinterpret_cast<uint8_t*>(buf), static_cast<size_t>(maxSize)};
25     (void)pkgStream_->Read(data, currPos, maxSize, readLen);
26     currPos += readLen;
27     return readLen;
28 }
29 } // namespace uscript
30