📄 sc_string.h
字号:
/***************************************************************************** The following code is derived, directly or indirectly, from the SystemC source code Copyright (c) 1996-2006 by all Contributors. All Rights reserved. The contents of this file are subject to the restrictions and limitations set forth in the SystemC Open Source License Version 2.4 (the "License"); You may not use this file except in compliance with such restrictions and limitations. You may obtain instructions on how to receive a copy of the License at http://www.systemc.org/. Software distributed by Contributors under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. *****************************************************************************//***************************************************************************** sc_string.h -- Implementation of a simple string class. Original Author: Stan Y. Liao, Synopsys, Inc. *****************************************************************************//***************************************************************************** MODIFICATION LOG - modifiers, enter your name, affiliation, date and changes you are making here. Name, Affiliation, Date: Description of Modification: *****************************************************************************/// $Log: sc_string.h,v $// Revision 1.1.1.1 2006/12/15 20:31:39 acg// SystemC 2.2//// Revision 1.3 2006/01/13 18:53:11 acg// Andy Goodrich: Added $Log command so that CVS comments are reproduced in// the source.//#ifndef SC_STRING_H#define SC_STRING_H#include "sysc/utils/sc_iostream.h"#include "sysc/utils/sc_report.h"namespace sc_dt { class sc_string_old;}#ifdef SC_USE_SC_STRING_OLD typedef sc_dt::sc_string_old sc_string;#endif#ifdef SC_USE_STD_STRING typedef ::std::string sc_string;#endifnamespace sc_dt {// forward class declarationsclass sc_string_rep;// friend operator declarations sc_string_old operator + ( const char* s, const sc_string_old& t );// ----------------------------------------------------------------------------// ENUM : sc_numrep//// Enumeration of number representations for character string conversion.// ----------------------------------------------------------------------------enum sc_numrep{ SC_NOBASE = 0, SC_BIN = 2, SC_OCT = 8, SC_DEC = 10, SC_HEX = 16, SC_BIN_US, SC_BIN_SM, SC_OCT_US, SC_OCT_SM, SC_HEX_US, SC_HEX_SM, SC_CSD};// We use typedefs for istream and ostream here to get around some finickiness// from aCC:typedef ::std::istream systemc_istream;typedef ::std::ostream systemc_ostream;const std::string to_string( sc_numrep );//------------------------------------------------------------------------------//"sc_io_base"//// This inline function returns the type of an i/o stream's base as a SystemC// base designator.// stream_object = reference to the i/o stream whose base is to be returned.////"sc_io_show_base"//// This inline function returns true if the base should be shown when a SystemC// value is displayed via the supplied stream operator.// stream_object = reference to the i/o stream to return showbase value for.//------------------------------------------------------------------------------#if defined(__GNUC__) || defined(_MSC_VER) inline sc_numrep sc_io_base( systemc_ostream& stream_object, sc_numrep def_base ) { ::std::ios::fmtflags flags = stream_object.flags() & ::std::ios::basefield; if ( flags & ::std::ios::dec ) return SC_DEC; if ( flags & ::std::ios::hex ) return SC_HEX; if ( flags & ::std::ios::oct ) return SC_OCT; return def_base; } inline bool sc_io_show_base( systemc_ostream& stream_object ) { return (stream_object.flags() & ::std::ios::showbase) != 0 ; }#else // Other inline sc_numrep sc_io_base( systemc_ostream& stream_object, sc_numrep def_base ) { return SC_DEC; } inline bool sc_io_show_base( systemc_ostream& stream_object ) { return false; }#endif// ----------------------------------------------------------------------------// CLASS : sc_string//// String class (yet another).// ----------------------------------------------------------------------------class sc_string_old{ friend systemc_ostream& operator << (systemc_ostream& os, const sc_string_old& a); friend systemc_istream& operator >> ( systemc_istream& is, sc_string_old& a );public: // constructors explicit sc_string_old( int size = 16 ); sc_string_old( const char* s ); sc_string_old( const char* s, int n ); // get first n chars from the string sc_string_old( const sc_string_old& s ); // destructor ~sc_string_old(); // concatenation and assignment sc_string_old& operator = ( const char* s ); sc_string_old& operator = ( const sc_string_old& s ); sc_string_old& operator += ( const char* s ); sc_string_old& operator += ( char c ); sc_string_old& operator += ( const sc_string_old& s ); sc_string_old operator + ( const char* s ) const; sc_string_old operator + ( char c ) const; sc_string_old operator + ( const sc_string_old& s ) const; friend sc_string_old operator + ( const char* s, const sc_string_old& t ); // returns substring [first,last] sc_string_old substr( int first, int last ) const; // string comparison operators bool operator == ( const char* s ) const; bool operator != ( const char* s ) const; bool operator < ( const char* s ) const; bool operator <= ( const char* s ) const; bool operator > ( const char* s ) const; bool operator >= ( const char* s ) const; bool operator == ( const sc_string_old& s ) const; bool operator != ( const sc_string_old& s ) const; bool operator < ( const sc_string_old& s ) const; bool operator <= ( const sc_string_old& s ) const; bool operator > ( const sc_string_old& s ) const; bool operator >= ( const sc_string_old& s ) const; // // returns length of the string (excluding trailing \0) // int length() const; // // returns c-style string // const char* c_str() const; // // returns c-style string // operator const char*() const; // // returns character at "index" position // char operator[](int index) const; // // l-value subscript // char& operator[](int index); // formatted string (see printf description) static sc_string_old to_string(const char* format, ...); // // conveniece formatting functions for common types // e.g. sc_string_old("a=%d, s is %s").fmt(1).fmt("string") // should produce: a=1, s is string // it should be safe: if less arguments specified // it should print %specifier; extra arguments should be ignored // TODO: if the type of the argument is incompatible with format // specifier it should be ignored // // must have it inlined because of some compilers template<class T> sc_string_old& fmt(const T& t) { // search % int index; int last_char = length()-1; sc_string_old temp(*this); do { index = temp.pos("%"); if(index == last_char) return *this; temp = substr(index,last_char); } while(temp[0] != '%'); int f_len = (int)temp.fmt_length(); // length of format field temp = to_string(substr(0,index+f_len-1).c_str(),t); return (*this) = temp + substr(index+f_len,last_char); } sc_string_old& fmt(const sc_string_old& s); // // find position of substring in this string // returns -1 if not found // int pos(const sc_string_old& sub_string)const; // // remove "count" characters from "index" // sc_string_old& remove(unsigned index, unsigned length); // // insert "substring" before "index" // sc_string_old& insert(const sc_string_old& sub_string, unsigned index); // // returns true if the character at byte index in this string matches // any character in the delimiters string // bool is_delimiter(const sc_string_old& str, unsigned index)const; // // returns true if string contains the character // bool contains(char c)const; // // produce upper case string from this one // sc_string_old uppercase()const; // // produce lower case string from this one // sc_string_old lowercase()const; // // legacy methods // static sc_string_old make_str(long n); void set( int index, char c ); int cmp( const char* s ) const; int cmp( const sc_string_old& s ) const; void print( systemc_ostream& os = ::std::cout ) const;private: sc_string_old( sc_string_rep* r ); sc_string_rep* rep; void test(int position)const; unsigned fmt_length()const;};// IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIinlinesystemc_ostream&operator << ( systemc_ostream& os, sc_numrep numrep ){ os << to_string( numrep ); return os;}inlinesystemc_ostream&operator << ( systemc_ostream& os, const sc_string_old& a ){ a.print( os ); return os;}} // namespace sc_dt#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -