(file) Return to parser.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Compiler

File: [Pegasus] / pegasus / src / Pegasus / Compiler / parser.h (download)
Revision: 1.23, Tue Dec 2 09:01:21 2008 UTC (15 years, 7 months ago) by martin
Branch: MAIN
CVS Tags: TASK_PEP317_1JUNE_2013, TASK-TASK_PEP362_RestfulService_branch-root, TASK-TASK_PEP362_RestfulService_branch-merged_out_from_trunk, TASK-TASK_PEP362_RestfulService_branch-merged_in_to_trunk, TASK-TASK_PEP362_RestfulService_branch-merged_in_from_branch, TASK-TASK_PEP362_RestfulService_branch-branch, TASK-PEP362_RestfulService-root, TASK-PEP362_RestfulService-merged_in_to_trunk, TASK-PEP362_RestfulService-merged_in_from_branch, TASK-PEP348_SCMO-root, TASK-PEP348_SCMO-merged_out_to_branch, TASK-PEP348_SCMO-merged_out_from_trunk, TASK-PEP348_SCMO-merged_in_to_trunk, TASK-PEP348_SCMO-merged_in_from_branch, TASK-PEP348_SCMO-branch, TASK-PEP317_pullop-root, RELEASE_2_9_2-RC2, RELEASE_2_9_2-RC1, RELEASE_2_9_2, RELEASE_2_9_1-RC1, RELEASE_2_9_1, RELEASE_2_9_0-RC1, RELEASE_2_9_0-FC, RELEASE_2_9_0, RELEASE_2_9-root, RELEASE_2_9-branch, RELEASE_2_13_0-RC2, RELEASE_2_13_0-RC1, RELEASE_2_13_0-FC, RELEASE_2_13_0, RELEASE_2_13-root, RELEASE_2_13-branch, RELEASE_2_12_1-RC1, RELEASE_2_12_1, RELEASE_2_12_0-RC1, RELEASE_2_12_0-FC, RELEASE_2_12_0, RELEASE_2_12-root, RELEASE_2_12-branch, RELEASE_2_11_2-RC1, RELEASE_2_11_2, RELEASE_2_11_1-RC1, RELEASE_2_11_1, RELEASE_2_11_0-RC1, RELEASE_2_11_0-FC, RELEASE_2_11_0, RELEASE_2_11-root, RELEASE_2_11-branch, RELEASE_2_10_1-RC1, RELEASE_2_10_1, RELEASE_2_10_0-RC2, RELEASE_2_10_0-RC1, RELEASE_2_10_0, RELEASE_2_10-root, RELEASE_2_10-branch, PREAUG25UPDATE, POSTAUG25UPDATE, HPUX_TEST, CIMRS_WORK_20130824, BeforeUpdateToHeadOct82011
Branch point for: TASK-PEP362_RestfulService-branch, TASK-PEP317_pullop-branch
Changes since 1.22: +6 -6 lines
BUG#: 8123
TITLE: Update copyright/license text

DESCRIPTION:

Fixing trailing spaces in copyright/license text

//%LICENSE////////////////////////////////////////////////////////////////
//
// Licensed to The Open Group (TOG) under one or more contributor license
// agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
// this work for additional information regarding copyright ownership.
// Each contributor licenses this file to you under the OpenPegasus Open
// Source License; you may not use this file except in compliance with the
// License.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
//////////////////////////////////////////////////////////////////////////
//
//%/////////////////////////////////////////////////////////////////////////////


//
// Header for a class to generate CIMValue objects from String values
//
//
//
// This is a generic parser class from which controllers for particular
// yacc parsers can be derived.  It keeps enough state information that
// you should be able to get by without a reentrant parser.  You should
// compile both parser and lexer with a C++ compiler, although there
// is no need to generate a C++ lexer.
//
// The include file and compile-from-String techniques used here are
// supported only by bison and flex.
//

#ifndef _PARSER_H_
#define _PARSER_H_

#include <Pegasus/Common/Config.h>
#include <cstdio>
#include <Pegasus/Common/String.h>
#include <Pegasus/Common/Stack.h>
#include <Pegasus/Compiler/Linkage.h>
#include <Pegasus/Common/FileSystem.h>


PEGASUS_USING_STD;
PEGASUS_USING_PEGASUS;

#define CIMMOF_CONSTANT_VALUE  1
#define CIMMOF_ARRAY_VALUE     2
#define CIMMOF_REFERENCE_VALUE 3
#define CIMMOF_NULL_VALUE      4

// #define  DEBUG_INCLUDE // enables include file processing debug printout

typedef struct typedInitializerValue
{
    Uint16 type;
    const String *value;
} TYPED_INITIALIZER_VALUE;

struct bufstate
{
    void *buffer_state; // the YY_BUFFER_STATE of the stacked context
    String filename;    // the name of the file open in the stacked context
    int    lineno;      // the line number of the file
    String filenamePath; //the path of the file open in the stacked context
};

class PEGASUS_COMPILER_LINKAGE  parser
{
    private:
        unsigned int _buffer_size;   // the value of the YY_BUFFER_SIZE macro
        Stack<bufstate*> _include_stack;  // a stack of YY_BUFFER_STATEs
        String _current_filename; // name of the file being parsed
        unsigned int _lineno;     // current line number in the file
        String _current_filenamePath; // path of the file being parsed
    protected:
        void push_statebuff(bufstate *statebuff)
        {
            _include_stack.push(statebuff);
        }
        bufstate *pop_statebuff();
    public:

        // Constructor, destructor
        parser() : _buffer_size(16384), _lineno(0) {;}
        virtual ~parser() {;}

        virtual int parse() = 0;    // call the parser main yy_parse()
        virtual int wrap();         // handle the end of the current stream

        // start parsing this file
        int setInputBufferFromName(const String &filename);
        virtual int setInputBuffer(const FILE *f,
                Boolean closeCurrent) = 0;  // start parsing this handle
        //  int setInputBuffer(const char *buf);   // start parsing this String
        virtual int setInputBuffer(void *buffstate,
                Boolean closeCurrent) = 0; // start parsing this buffer

        // given a file stream, treat it as an include file
        virtual int enterInlineInclude(const FILE *f) = 0;
        virtual int wrapCurrentBuffer() = 0;

        unsigned int get_buffer_size() { return _buffer_size; }
        void set_buffer_size(unsigned int siz) { _buffer_size = siz; }

        // We keep track of the filename associated with the current input
        // buffer so we can report on it.
        void set_current_filename(const String &filename)
        {
            _current_filename = filename;

#ifdef DEBUG_INCLUDE
            cout << "cimmof parser - setting path = "
                << get_current_filenamePath() << endl; // DEBUG
#endif // DEBUG_INCLUDE

            String includePathTemp = FileSystem::extractFilePath(filename);

            // ************************************************************
            // if the filename path consisted of just the file name
            // becasue it is in the current directory then extractFilePath
            // returns just the filename rather than "dot". The following
            // test is to prevent adding file names to the include path.
            // ****************************************************************
            if (includePathTemp == filename)
            {
                includePathTemp = ".";
            }

            set_current_filenamePath(includePathTemp);

#ifdef DEBUG_INCLUDE
            cout << "cimmof parser set filename = " << filename
                << " include path = " << get_current_filenamePath()
                << endl; // DEBUG
#endif //  DEBUG_INCLUDE
        }

        const String &get_current_filename() const { return _current_filename; }

        // We keep track of the filename path associated with the current input
        // buffer so we can use it to search for include files in that
        // same directory
        void set_current_filenamePath(const String &filenamePath)
        { _current_filenamePath = filenamePath; }

        const String &get_current_filenamePath() const
        {
            return _current_filenamePath;
        }

        // Ditto the line number
        void set_lineno(int n) { _lineno = n; }
        void increment_lineno() { ++_lineno; }
        unsigned int get_lineno() const { return _lineno; }

        // This is the main entry point for parser error logging
        virtual void log_parse_error(char *token, const char *errmsg) const;
};
#endif

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2