/** * Read a chunk of repository connections. * * @param rval is the place to put the read policies. * @param returnIndex is a map from the object id (resource id) and the rval index. * @param params is the set of parameters. */ protected void getRepositoryConnectionsChunk( RepositoryConnection[] rval, Map returnIndex, ArrayList params) throws ManifoldCFException { ArrayList list = new ArrayList(); String query = buildConjunctionClause(list, new ClauseDescription[] {new MultiClause(nameField, params)}); IResultSet set = performQuery("SELECT * FROM " + getTableName() + " WHERE " + query, list, null, null); int i = 0; while (i < set.getRowCount()) { IResultRow row = set.getRow(i++); String name = row.getValue(nameField).toString(); int index = ((Integer) returnIndex.get(name)).intValue(); RepositoryConnection rc = new RepositoryConnection(); rc.setIsNew(false); rc.setName(name); rc.setDescription((String) row.getValue(descriptionField)); rc.setClassName((String) row.getValue(classNameField)); rc.setACLAuthority((String) row.getValue(groupNameField)); rc.setMaxConnections((int) ((Long) row.getValue(maxCountField)).longValue()); String xml = (String) row.getValue(configField); if (xml != null && xml.length() > 0) rc.getConfigParams().fromXML(xml); rval[index] = rc; } // Do throttle part throttleSpecManager.getRows(rval, returnIndex, params); }
/** Install the manager. */ public void install() throws ManifoldCFException { // First, get the authority manager table name and name column IAuthorityGroupManager authMgr = AuthorityGroupManagerFactory.make(threadContext); // Always use a loop, and no transaction, as we may need to retry due to upgrade while (true) { Map existing = getTableSchema(null, null); if (existing == null) { // Install the "objects" table. HashMap map = new HashMap(); map.put(nameField, new ColumnDescription("VARCHAR(32)", true, false, null, null, false)); map.put( descriptionField, new ColumnDescription("VARCHAR(255)", false, true, null, null, false)); map.put( classNameField, new ColumnDescription("VARCHAR(255)", false, false, null, null, false)); map.put( groupNameField, new ColumnDescription( "VARCHAR(32)", false, true, authMgr.getTableName(), authMgr.getGroupNameColumn(), false)); map.put(maxCountField, new ColumnDescription("BIGINT", false, false, null, null, false)); map.put(configField, new ColumnDescription("LONGTEXT", false, true, null, null, false)); performCreate(map, null); } else { // Upgrade code ColumnDescription cd = (ColumnDescription) existing.get(groupNameField); if (cd == null) { Map addMap = new HashMap(); addMap.put( groupNameField, new ColumnDescription( "VARCHAR(32)", false, true, authMgr.getTableName(), authMgr.getGroupNameColumn(), false)); performAlter(addMap, null, null, null); } // Get rid of the authorityName field. When we do this we need to copy into the group name // field, adding groups if they don't yet exist first cd = (ColumnDescription) existing.get(authorityNameField); if (cd != null) { ArrayList params = new ArrayList(); IResultSet set = performQuery( "SELECT " + nameField + "," + authorityNameField + " FROM " + getTableName(), null, null, null); for (int i = 0; i < set.getRowCount(); i++) { IResultRow row = set.getRow(i); String repoName = (String) row.getValue(nameField); String authName = (String) row.getValue(authorityNameField); if (authName != null && authName.length() > 0) { // Attempt to create a matching auth group. This will fail if the group // already exists IAuthorityGroup grp = authMgr.create(); grp.setName(authName); try { authMgr.save(grp); } catch (ManifoldCFException e) { if (e.getErrorCode() == ManifoldCFException.INTERRUPTED) throw e; // Fall through; the row exists already } Map<String, String> map = new HashMap<String, String>(); map.put(groupNameField, authName); params.clear(); String query = buildConjunctionClause( params, new ClauseDescription[] {new UnitaryClause(nameField, repoName)}); performUpdate(map, " WHERE " + query, params, null); } } List<String> deleteList = new ArrayList<String>(); deleteList.add(authorityNameField); performAlter(null, null, deleteList, null); } } // Install dependent tables. historyManager.install(getTableName(), nameField); throttleSpecManager.install(getTableName(), nameField); // Index management IndexDescription authorityIndex = new IndexDescription(false, new String[] {groupNameField}); IndexDescription classIndex = new IndexDescription(false, new String[] {classNameField}); // Get rid of indexes that shouldn't be there Map indexes = getTableIndexes(null, null); Iterator iter = indexes.keySet().iterator(); while (iter.hasNext()) { String indexName = (String) iter.next(); IndexDescription id = (IndexDescription) indexes.get(indexName); if (authorityIndex != null && id.equals(authorityIndex)) authorityIndex = null; else if (classIndex != null && id.equals(classIndex)) classIndex = null; else if (indexName.indexOf("_pkey") == -1) // This index shouldn't be here; drop it performRemoveIndex(indexName); } // Add the ones we didn't find if (authorityIndex != null) performAddIndex(null, authorityIndex); if (classIndex != null) performAddIndex(null, classIndex); break; } }