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
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* 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/.
*
* This file incorporates work covered by the following license notice:
*
* 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 .
*/
#include "parser.hxx"
#include "iosys.hxx"
#include <memory>
// test if there's an I/O channel
bool SbiParser::Channel( bool bAlways )
{
bool bRes = false;
Peek();
if( IsHash() )
{
SbiExpression aExpr( this );
while( Peek() == COMMA || Peek() == SEMICOLON )
Next();
aExpr.Gen();
aGen.Gen( SbiOpcode::CHANNEL_ );
bRes = true;
}
else if( bAlways )
Error( ERRCODE_BASIC_EXPECTED, "#" );
return bRes;
}
// it's tried that at object variables the Default-
// Property is addressed for PRINT and WRITE
void SbiParser::Print()
{
bool bChan = Channel();
while( !bAbort )
{
if( !IsEoln( Peek() ) )
{
std::unique_ptr<SbiExpression> pExpr(new SbiExpression( this ));
pExpr->Gen();
pExpr.reset();
Peek();
aGen.Gen( eCurTok == COMMA ? SbiOpcode::PRINTF_ : SbiOpcode::BPRINT_ );
}
if( eCurTok == COMMA || eCurTok == SEMICOLON )
{
Next();
if( IsEoln( Peek() ) ) break;
}
else
{
aGen.Gen( SbiOpcode::PRCHAR_, '\n' );
break;
}
}
if( bChan )
aGen.Gen( SbiOpcode::CHAN0_ );
}
// WRITE #chan, expr, ...
void SbiParser::Write()
{
bool bChan = Channel();
while( !bAbort )
{
std::unique_ptr<SbiExpression> pExpr(new SbiExpression( this ));
pExpr->Gen();
pExpr.reset();
aGen.Gen( SbiOpcode::BWRITE_ );
if( Peek() == COMMA )
{
aGen.Gen( SbiOpcode::PRCHAR_, ',' );
Next();
if( IsEoln( Peek() ) ) break;
}
else
{
aGen.Gen( SbiOpcode::PRCHAR_, '\n' );
break;
}
}
if( bChan )
aGen.Gen( SbiOpcode::CHAN0_ );
}
// #i92642 Handle LINE keyword outside ::Next()
void SbiParser::Line()
{
// #i92642: Special handling to allow name as symbol
if( Peek() == INPUT )
{
Next();
LineInput();
}
else
{
aGen.Statement();
KeywordSymbolInfo aInfo;
aInfo.m_aKeywordSymbol = "line";
aInfo.m_eSbxDataType = GetType();
aInfo.m_eTok = SYMBOL;
Symbol( &aInfo );
}
}
// LINE INPUT [prompt], var$
void SbiParser::LineInput()
{
Channel( true );
std::unique_ptr<SbiExpression> pExpr(new SbiExpression( this, SbOPERAND ));
if( !pExpr->IsVariable() )
Error( ERRCODE_BASIC_VAR_EXPECTED );
if( pExpr->GetType() != SbxVARIANT && pExpr->GetType() != SbxSTRING )
Error( ERRCODE_BASIC_CONVERSION );
pExpr->Gen();
aGen.Gen( SbiOpcode::LINPUT_ );
pExpr.reset();
aGen.Gen( SbiOpcode::CHAN0_ ); // ResetChannel() not in StepLINPUT() anymore
}
// INPUT
void SbiParser::Input()
{
aGen.Gen( SbiOpcode::RESTART_ );
Channel( true );
std::unique_ptr<SbiExpression> pExpr(new SbiExpression( this, SbOPERAND ));
while( !bAbort )
{
if( !pExpr->IsVariable() )
Error( ERRCODE_BASIC_VAR_EXPECTED );
pExpr->Gen();
aGen.Gen( SbiOpcode::INPUT_ );
if( Peek() == COMMA )
{
Next();
pExpr.reset(new SbiExpression( this, SbOPERAND ));
}
else break;
}
pExpr.reset();
aGen.Gen( SbiOpcode::CHAN0_ );
}
// OPEN stringexpr FOR mode ACCESS access mode AS Channel [Len=n]
void SbiParser::Open()
{
bInStatement = true;
SbiExpression aFileName( this );
SbiToken eTok;
TestToken( FOR );
StreamMode nMode = StreamMode::NONE;
SbiStreamFlags nFlags = SbiStreamFlags::NONE;
switch( Next() )
{
case INPUT:
nMode = StreamMode::READ; nFlags |= SbiStreamFlags::Input; break;
case OUTPUT:
nMode = StreamMode::WRITE | StreamMode::TRUNC; nFlags |= SbiStreamFlags::Output; break;
case APPEND:
nMode = StreamMode::WRITE; nFlags |= SbiStreamFlags::Append; break;
case RANDOM:
nMode = StreamMode::READ | StreamMode::WRITE; nFlags |= SbiStreamFlags::Random; break;
case BINARY:
nMode = StreamMode::READ | StreamMode::WRITE; nFlags |= SbiStreamFlags::Binary; break;
default:
Error( ERRCODE_BASIC_SYNTAX );
}
if( Peek() == ACCESS )
{
Next();
eTok = Next();
// influence only READ,WRITE-Flags in nMode
nMode &= ~StreamMode(StreamMode::READ | StreamMode::WRITE); // delete
if( eTok == READ )
{
if( Peek() == WRITE )
{
Next();
nMode |= (StreamMode::READ | StreamMode::WRITE);
}
else
nMode |= StreamMode::READ;
}
else if( eTok == WRITE )
nMode |= StreamMode::WRITE;
else
Error( ERRCODE_BASIC_SYNTAX );
}
switch( Peek() )
{
#ifdef SHARED
#undef SHARED
#define tmpSHARED
#endif
case SHARED:
Next(); nMode |= StreamMode::SHARE_DENYNONE; break;
#ifdef tmpSHARED
#define SHARED
#undef tmpSHARED
#endif
case LOCK:
Next();
eTok = Next();
if( eTok == READ )
{
if( Peek() == WRITE )
{
Next();
nMode |= StreamMode::SHARE_DENYALL;
}
else nMode |= StreamMode::SHARE_DENYREAD;
}
else if( eTok == WRITE )
nMode |= StreamMode::SHARE_DENYWRITE;
else
Error( ERRCODE_BASIC_SYNTAX );
break;
default: break;
}
TestToken( AS );
// channel number
std::unique_ptr<SbiExpression> pChan(new SbiExpression( this ));
if( !pChan )
Error( ERRCODE_BASIC_SYNTAX );
std::unique_ptr<SbiExpression> pLen;
if( Peek() == SYMBOL )
{
Next();
if( aSym.equalsIgnoreAsciiCase("LEN") )
{
TestToken( EQ );
pLen.reset(new SbiExpression( this ));
}
}
if( !pLen ) pLen.reset(new SbiExpression( this, 128, SbxINTEGER ));
// the stack for the OPEN command looks as follows:
// block length
// channel number
// file name
pLen->Gen();
if( pChan )
pChan->Gen();
aFileName.Gen();
aGen.Gen( SbiOpcode::OPEN_, static_cast<sal_uInt32>(nMode), static_cast<sal_uInt32>(nFlags) );
bInStatement = false;
}
// NAME file AS file
void SbiParser::Name()
{
// #i92642: Special handling to allow name as symbol
if( Peek() == EQ )
{
aGen.Statement();
KeywordSymbolInfo aInfo;
aInfo.m_aKeywordSymbol = "name";
aInfo.m_eSbxDataType = GetType();
aInfo.m_eTok = SYMBOL;
Symbol( &aInfo );
return;
}
SbiExpression aExpr1( this );
TestToken( AS );
SbiExpression aExpr2( this );
aExpr1.Gen();
aExpr2.Gen();
aGen.Gen( SbiOpcode::RENAME_ );
}
// CLOSE [n,...]
void SbiParser::Close()
{
Peek();
if( IsEoln( eCurTok ) )
aGen.Gen( SbiOpcode::CLOSE_, 0 );
else
for( ;; )
{
SbiExpression aExpr( this );
while( Peek() == COMMA || Peek() == SEMICOLON )
Next();
aExpr.Gen();
aGen.Gen( SbiOpcode::CHANNEL_ );
aGen.Gen( SbiOpcode::CLOSE_, 1 );
if( IsEoln( Peek() ) )
break;
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|