source: dev/trunk/ab5.0/abdev/ab_common/src/Lexical/Namespace.cpp@ 829

Last change on this file since 829 was 829, checked in by イグトランス (egtra), 12 years ago

svn:eol-styleとsvn:mime-type(文字コード指定含む)の設定

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/plain; charset=Shift_JIS
File size: 1.5 KB
RevLine 
[829]1#include "stdafx.h"
2#include <jenga/include/jenga.h>
3#include <abdev/ab_common/include/ab_common.h>
4#include <algorithm>
5
6using namespace ActiveBasic::Common::Lexical;
7
8
9NamespaceScopes::NamespaceScopes( const std::string &namespaceStr ){
10 if( namespaceStr.size() == 0 ){
11 return;
12 }
13
14 std::string::size_type i = 0;
15 while( true ){
16 std::string::size_type i2 = namespaceStr.find( '.', i );
17
18 std::string tempName = namespaceStr.substr( i, i2-i );
19
20 push_back(std::move(tempName));
21
22 if( i2 == std::string::npos ){
23 break;
24 }
25
26 i = i2 + 1;
27 }
28}
29
30NamespaceScopes ActiveBasic::Common::Lexical::operator +(const NamespaceScopes &lhs, const NamespaceScopes &rhs)
31{
32 return NamespaceScopes(lhs) += rhs;
33}
34
35bool NamespaceScopes::IsEqual( const NamespaceScopes &namespaceScopes ) const
36{
37 if( this->size() != namespaceScopes.size() )
38 {
39 return false;
40 }
41 return std::equal(begin(), end(), namespaceScopes.begin() );
42}
43
44void NamespaceScopesCollection::SplitNamespace( const char *fullName, char *namespaceStr, char *simpleName ) const
45{
46 NamespaceScopes namespaceScopes( fullName );
47 bool hasSimpleName = false;
48 while( namespaceScopes.size() > 0 ){
49 if( IsExist( namespaceScopes ) ){
50 break;
51 }
52 namespaceScopes.pop_back();
53
54 hasSimpleName = true;
55 }
56
57 strcpy( namespaceStr, namespaceScopes.ToString().c_str() );
58
59 bool hasNamespace = false;
60 if( namespaceStr[0] ){
61 hasNamespace = true;
62 }
63
64 int dotLength = 0;
65 if( hasSimpleName && hasNamespace ){
66 dotLength = 1;
67 }
68
69 strcpy( simpleName, fullName + strlen( namespaceStr ) + dotLength );
70}
71
Note: See TracBrowser for help on using the repository browser.