void QPlane::printInfo(){ cout<<"\tType: Plane"<<endl; cout<<"\tData:"<<endl; cout<<"\t\tPoint:"<<point.toString()<<endl; cout<<"\t\tNormal Vector:"<<normal.toString()<<endl; cout<<"\t\t[reflection, refraction, eta] = "<<getObjectInfo()<<endl; }
MtpObjectHandle MtpDevice::getStorageID(MtpObjectHandle handle) { MtpObjectInfo* info = getObjectInfo(handle); if (info) { MtpObjectHandle storageId = info->mStorageID; delete info; return storageId; } else { return -1; } }
BuilderPtr ConfigObjectLoader::getBuilder( expr_cref value ) const { std::string name; if( value.type() == EVariable ) { name = value.value(); } return getObjectInfo( value, name )->getBuilder(); }
MtpObjectHandle MtpDevice::getParent(MtpObjectHandle handle) { MtpObjectInfo* info = getObjectInfo(handle); if (info) { MtpObjectHandle parent = info->mParent; delete info; return parent; } else { return -1; } }
ObjectInfoPtr ConfigObjectLoader::getObjectInfo( expr_cref expr, str_cref name ) const { if( !name.empty() ) { ObjectInfoPtr obj; // already found. if( Utility::mapLookup( m_objects, name, obj ) ) { return obj; } } if( expr.type() == EObject ) // it's an object expression { std::string className = expr.value(); ClassInfoPtr classInfo = getClassInfo( className ); BuilderPtr builder = classInfo->createBuilder( name, expr ); ObjectInfoPtr obj( new ObjectInfo( name, expr, *classInfo, builder ) ); // It needs to be in the map before we bind its parameters so a circular reference can be detected m_objects[name] = obj; builder->bindParams( *this ); return obj; } else if( expr.type() == EVariable ) { // this could recurse indefinitely with circular reference.. // NOTE: if anything throws here, let ParamBinderBase manage the context of the error. std::string objName; expr_cref expr2 = underlying( expr, &objName ); return getObjectInfo( expr2, objName ); } else // this isn't a class. It might be a map or list or whatever but isn't an object { std::ostringstream oss; oss << expr.value() << " is not an object"; // Do not throw TypeError here. If it isn't an object it can't be a proxy either throw std::invalid_argument( oss.str() ); } }
int queryAsn1Object( INOUT void *streamPtr, OUT QUERY_INFO *queryInfo ) { QUERY_INFO basicQueryInfo; STREAM *stream = streamPtr; const long startPos = stell( stream ); int status; assert( isWritePtr( stream, sizeof( STREAM ) ) ); assert( isWritePtr( queryInfo, sizeof( QUERY_INFO ) ) ); /* Clear return value */ memset( queryInfo, 0, sizeof( QUERY_INFO ) ); /* Determine basic object information. This also verifies that all of the object data is present in the stream */ status = getObjectInfo( stream, &basicQueryInfo ); if( cryptStatusError( status ) ) return( status ); /* Call the appropriate routine to find out more about the object */ switch( basicQueryInfo.type ) { case CRYPT_OBJECT_ENCRYPTED_KEY: { const READKEK_FUNCTION readKekFunction = \ getReadKekFunction( KEYEX_CMS ); if( readKekFunction == NULL ) return( CRYPT_ERROR_NOTAVAIL ); status = readKekFunction( stream, queryInfo ); break; } case CRYPT_OBJECT_PKCENCRYPTED_KEY: { const READKEYTRANS_FUNCTION readKeytransFunction = \ getReadKeytransFunction( ( basicQueryInfo.formatType == CRYPT_FORMAT_CMS ) ? \ KEYEX_CMS : KEYEX_CRYPTLIB ); if( readKeytransFunction == NULL ) return( CRYPT_ERROR_NOTAVAIL ); status = readKeytransFunction( stream, queryInfo ); break; } case CRYPT_OBJECT_SIGNATURE: { const READSIG_FUNCTION readSigFunction = \ getReadSigFunction( ( basicQueryInfo.formatType == CRYPT_FORMAT_CMS ) ? \ SIGNATURE_CMS : SIGNATURE_CRYPTLIB ); if( readSigFunction == NULL ) return( CRYPT_ERROR_NOTAVAIL ); status = readSigFunction( stream, queryInfo ); break; } case CRYPT_OBJECT_NONE: /* New, unrecognised RecipientInfo type */ status = readUniversal( stream ); break; default: retIntError(); } sseek( stream, startPos ); if( cryptStatusError( status ) ) { zeroise( queryInfo, sizeof( QUERY_INFO ) ); return( status ); } /* Augment the per-object query information with the basic query information that we got earlier */ queryInfo->formatType = basicQueryInfo.formatType; queryInfo->type = basicQueryInfo.type; queryInfo->size = basicQueryInfo.size; queryInfo->version = basicQueryInfo.version; return( CRYPT_OK ); }
void CmpSeabaseDDL::dropSeabaseLibrary(StmtDDLDropLibrary * dropLibraryNode, NAString &currCatName, NAString &currSchName) { Lng32 cliRC = 0; Lng32 retcode = 0; const NAString &objName = dropLibraryNode->getLibraryName(); ComObjectName libraryName(objName); ComAnsiNamePart currCatAnsiName(currCatName); ComAnsiNamePart currSchAnsiName(currSchName); libraryName.applyDefaults(currCatAnsiName, currSchAnsiName); const NAString catalogNamePart = libraryName. getCatalogNamePartAsAnsiString(); const NAString schemaNamePart = libraryName. getSchemaNamePartAsAnsiString(TRUE); const NAString objectNamePart = libraryName. getObjectNamePartAsAnsiString(TRUE); const NAString extLibraryName = libraryName.getExternalName(TRUE); ExeCliInterface cliInterface(STMTHEAP, NULL, NULL, CmpCommon::context()->sqlSession()->getParentQid()); ExpHbaseInterface * ehi = allocEHI(); if (ehi == NULL) return; retcode = existsInSeabaseMDTable(&cliInterface, catalogNamePart, schemaNamePart, objectNamePart, COM_LIBRARY_OBJECT, TRUE, FALSE); if (retcode < 0) { deallocEHI(ehi); processReturn(); return; } if (retcode == 0) // does not exist { *CmpCommon::diags() << DgSqlCode(-1389) << DgString0(extLibraryName); deallocEHI(ehi); processReturn(); return; } Int32 objectOwnerID = 0; Int32 schemaOwnerID = 0; Int64 objectFlags = 0; Int64 objUID = getObjectInfo(&cliInterface, catalogNamePart.data(), schemaNamePart.data(), objectNamePart.data(), COM_LIBRARY_OBJECT, objectOwnerID,schemaOwnerID,objectFlags); if (objUID < 0 || objectOwnerID == 0 || schemaOwnerID == 0) { deallocEHI(ehi); processReturn(); return; } if (!isDDLOperationAuthorized(SQLOperation::DROP_LIBRARY, objectOwnerID, schemaOwnerID)) { *CmpCommon::diags() << DgSqlCode(-CAT_NOT_AUTHORIZED); processReturn (); return; } Queue * usingRoutinesQueue = NULL; cliRC = getUsingRoutines(&cliInterface, objUID, usingRoutinesQueue); if (cliRC < 0) { deallocEHI(ehi); processReturn(); return; } // If RESTRICT and the library is being used, return an error if (cliRC != 100 && dropLibraryNode->getDropBehavior() == COM_RESTRICT_DROP_BEHAVIOR) { *CmpCommon::diags() << DgSqlCode(-CAT_DEPENDENT_ROUTINES_EXIST); deallocEHI(ehi); processReturn(); return; } for (size_t i = 0; i < usingRoutinesQueue->numEntries(); i++) { usingRoutinesQueue->position(); OutputInfo * rou = (OutputInfo*)usingRoutinesQueue->getNext(); char * routineName = rou->get(0); ComObjectType objectType = PrivMgr::ObjectLitToEnum(rou->get(1)); if (dropSeabaseObject(ehi, routineName, currCatName, currSchName, objectType, TRUE, FALSE)) { deallocEHI(ehi); processReturn(); return; } } // can get a slight perf. gain if we pass in objUID if (dropSeabaseObject(ehi, objName, currCatName, currSchName, COM_LIBRARY_OBJECT, TRUE, FALSE)) { deallocEHI(ehi); processReturn(); return; } deallocEHI(ehi); processReturn(); return; }
void CmpSeabaseDDL::dropSeabaseRoutine(StmtDDLDropRoutine * dropRoutineNode, NAString &currCatName, NAString &currSchName) { Lng32 retcode = 0; ComObjectName routineName(dropRoutineNode->getRoutineName()); ComAnsiNamePart currCatAnsiName(currCatName); ComAnsiNamePart currSchAnsiName(currSchName); routineName.applyDefaults(currCatAnsiName, currSchAnsiName); const NAString catalogNamePart = routineName.getCatalogNamePartAsAnsiString(); const NAString schemaNamePart = routineName.getSchemaNamePartAsAnsiString(TRUE); const NAString objectNamePart = routineName.getObjectNamePartAsAnsiString(TRUE); const NAString extRoutineName = routineName.getExternalName(TRUE); ExpHbaseInterface * ehi = NULL; ExeCliInterface cliInterface(STMTHEAP, NULL, NULL, CmpCommon::context()->sqlSession()->getParentQid()); ehi = allocEHI(); if (ehi == NULL) { processReturn(); return; } retcode = existsInSeabaseMDTable(&cliInterface, catalogNamePart, schemaNamePart, objectNamePart, COM_USER_DEFINED_ROUTINE_OBJECT, TRUE, FALSE); if (retcode < 0) { deallocEHI(ehi); processReturn(); return; } if (retcode == 0) // does not exist { *CmpCommon::diags() << DgSqlCode(-1389) << DgString0(extRoutineName); deallocEHI(ehi); processReturn(); return; } // get objectOwner Int64 objUID = 0; Int32 objectOwnerID = 0; Int32 schemaOwnerID = 0; Int64 objectFlags = 0; // see if routine is cached BindWA bindWA(ActiveSchemaDB(), CmpCommon::context(), FALSE/*inDDL*/); NARoutineDB *pRoutineDBCache = ActiveSchemaDB()->getNARoutineDB(); QualifiedName qualRoutineName(routineName, STMTHEAP); NARoutineDBKey key(qualRoutineName, STMTHEAP); NARoutine *cachedNARoutine = pRoutineDBCache->get(&bindWA, &key); if (cachedNARoutine) { objUID = cachedNARoutine->getRoutineID(); objectOwnerID = cachedNARoutine->getObjectOwner(); schemaOwnerID = cachedNARoutine->getSchemaOwner(); } else { objUID = getObjectInfo(&cliInterface, catalogNamePart.data(), schemaNamePart.data(), objectNamePart.data(), COM_USER_DEFINED_ROUTINE_OBJECT, objectOwnerID,schemaOwnerID,objectFlags); if (objUID < 0 || objectOwnerID == 0 || schemaOwnerID == 0) { deallocEHI(ehi); processReturn(); return; } } // Verify user has privilege to drop routine if (!isDDLOperationAuthorized(SQLOperation::DROP_ROUTINE,objectOwnerID,schemaOwnerID)) { *CmpCommon::diags() << DgSqlCode(-CAT_NOT_AUTHORIZED); deallocEHI(ehi); processReturn (); return; } // Determine if this function is referenced by any other objects. Lng32 cliRC = 0; Queue * usingViewsQueue = NULL; if (dropRoutineNode->getDropBehavior() == COM_RESTRICT_DROP_BEHAVIOR) { NAString usingObjName; cliRC = getUsingObject(&cliInterface, objUID, usingObjName); if (cliRC < 0) { deallocEHI(ehi); processReturn(); return; } if (cliRC != 100) // found an object { *CmpCommon::diags() << DgSqlCode(-CAT_DEPENDENT_VIEW_EXISTS) << DgTableName(usingObjName); deallocEHI(ehi); processReturn(); return; } } else if (dropRoutineNode->getDropBehavior() == COM_CASCADE_DROP_BEHAVIOR) { cliRC = getUsingViews(&cliInterface, objUID, usingViewsQueue); if (cliRC < 0) { deallocEHI(ehi); processReturn(); return; } } if (usingViewsQueue) { usingViewsQueue->position(); for (int idx = 0; idx < usingViewsQueue->numEntries(); idx++) { OutputInfo * vi = (OutputInfo*)usingViewsQueue->getNext(); char * viewName = vi->get(0); if (dropOneTableorView(cliInterface,viewName,COM_VIEW_OBJECT,false)) { deallocEHI(ehi); processReturn(); return; } } } // Removed routine from metadata if (dropSeabaseObject(ehi, dropRoutineNode->getRoutineName(), currCatName, currSchName, COM_USER_DEFINED_ROUTINE_OBJECT, TRUE, FALSE)) { deallocEHI(ehi); processReturn(); return; } // Remove cached entries in other processes pRoutineDBCache->removeNARoutine(qualRoutineName, NARoutineDB::REMOVE_FROM_ALL_USERS, objUID); deallocEHI(ehi); processReturn(); return; }