Example #1
0
        /// <summary>
        /// 结束任务流程
        /// </summary>
        /// <param name="taskName"></param>
        public void FinishTask(string taskName)
        {
            IFeatureWorkspace   ws = Util.ServerWorkspace as IFeatureWorkspace;
            IVersionedWorkspace vw = ws as IVersionedWorkspace;

            if (taskName.ToLower() == vw.DefaultVersion.VersionName.ToLower())
            {
                return;
            }
            IVersion       ver = vw.FindVersion(taskName);
            IVersionEdit4  ve  = ver as IVersionEdit4;
            IWorkspaceEdit wse = ver as IWorkspaceEdit;

            wse.StartEditing(true);
            ve.Reconcile4(vw.DefaultVersion.VersionName, true, true, true, true);
            if (ve.CanPost())
            {
                ve.Post(vw.DefaultVersion.VersionName);
            }
            ITable       task_tbl = ws.OpenTable("TaskLog");
            IQueryFilter filter   = new QueryFilterClass();

            filter.WhereClause = "TaskName = '" + taskName + "'";
            ICursor cur = task_tbl.Search(filter, false);
            IRow    rw  = cur.NextRow();

            if (rw != null)
            {
                rw.set_Value(task_tbl.FindField("Status"), TaskManager.FINISH_STATUS);
                rw.set_Value(task_tbl.FindField("FinishDate"), DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss"));
                rw.Store();
            }
            wse.StopEditing(true);
            ver.Delete();
        }
Example #2
0
        /// <summary>
        ///     Reconciles the current version with a target version.
        /// </summary>
        /// <param name="source">The current version.</param>
        /// <param name="targetVersionName">
        ///     The target version name passed in is case-sensitive and should take the form
        ///     {owner}.{version_name} for example, SDE.DEFAULT.
        /// </param>
        /// <param name="acquireLock">Indicates if locks should be obtained or not.</param>
        /// <param name="abortIfConflicts">
        ///     Indicates if the reconcile process shuld abort the reconcile if conflicts are detected
        ///     for any class.
        /// </param>
        /// <param name="childWins">Indicates if all conflicts detected would be resolved in favor of the source version.</param>
        /// <param name="columnLevel">
        ///     Indicates if conflicts are detected only when the same attribute is updated in the source and
        ///     target versions.
        /// </param>
        /// <param name="autoUpdaterMode">The ArcFM Auto Updater mode that is used during the reconcile.</param>
        /// <returns>
        ///     Returns a <see cref="bool" /> representing <c>true</c> when conflicts were detected; otherwise <c>false</c>.
        /// </returns>
        /// <exception cref="ArgumentNullException">targetVersionName</exception>
        /// <remarks>
        ///     The Reconcile4 function reconciles the current source version with the specified target version.
        ///     The target version must be an ancestor of the current version or an error will be returned.
        /// </remarks>
        public static bool Reconcile(this IVersion source, string targetVersionName, bool acquireLock, bool abortIfConflicts, bool childWins, bool columnLevel, mmAutoUpdaterMode autoUpdaterMode)
        {
            if (source == null) return false;
            if (targetVersionName == null) throw new ArgumentNullException("targetVersionName");

            using (new AutoUpdaterModeReverter(autoUpdaterMode))
            {
                IVersionEdit4 versionEdit = (IVersionEdit4) source;
                bool hasConflicts = versionEdit.Reconcile4(targetVersionName, acquireLock, abortIfConflicts, childWins, columnLevel);
                return hasConflicts;
            }
        }
Example #3
0
        public void StopEditing(bool saveChanges)
        {
            var workspaceEdit = CurrentWorkspace as IWorkspaceEdit2;

            if (CurrentWorkspace.Type == esriWorkspaceType.esriRemoteDatabaseWorkspace)
            {
                IVersionedWorkspace versionWorkspace = (IVersionedWorkspace)CurrentWorkspace;
                IVersion2           version2         = (IVersion2)versionWorkspace;

                if (version2 != null && version2.IsRedefined)
                {
                    IVersionEdit4 version4 = (IVersionEdit4)CurrentWorkspace;
                    version4.Reconcile4("SDE.DEFAULT",
                                        false,
                                        false,
                                        true,
                                        true);
                }
            }

            workspaceEdit.StopEditing(saveChanges);
        }
Example #4
0
        public void UpdateAssetsTest()
        {
            RuntimeManager.Bind(ProductCode.Desktop);
            (new AoInitializeClass()).Initialize(esriLicenseProductCode.esriLicenseProductCodeStandard);
            IPropertySet propertySet = new PropertySetClass();

            propertySet.SetProperty("Server", "RJMSDDBT02");
            propertySet.SetProperty("Instance", "sde:oracle11g:gisdevl");
            propertySet.SetProperty("Database", "GISDEVL");
            propertySet.SetProperty("user", "MSD");
            propertySet.SetProperty("password", "jc_tc1954");
            propertySet.SetProperty("version", "MSD.QC");
            int flag = 0;

            try
            {
                IWorkspace          workspaceName      = (new SdeWorkspaceFactoryClass()).Open(propertySet, 0);
                IVersionedWorkspace versionedWorkspace = (IVersionedWorkspace)workspaceName;
                IEnumVersionInfo    enumVersionInfo    = versionedWorkspace.Versions;
                enumVersionInfo.Reset();
                IVersionInfo existversionInfo = enumVersionInfo.Next();
                while (existversionInfo != null)
                {
                    if (!existversionInfo.VersionName.Trim().Equals("MSD.DTS_EDIT"))
                    {
                        existversionInfo = enumVersionInfo.Next();
                    }
                    else
                    {
                        versionedWorkspace.FindVersion("MSD.DTS_EDIT").Delete();
                        flag = 1;
                        break;
                    }
                }
                enumVersionInfo.Reset();
                IVersion version    = (IVersion)((IFeatureWorkspace)workspaceName);
                string   name       = version.VersionInfo.VersionName;
                IVersion dtsVersion = version.CreateVersion("DTS_EDIT");
                dtsVersion.Access      = esriVersionAccess.esriVersionAccessPublic;
                dtsVersion.Description = "Update DTS to MSD Ownership via DTS app";
                if (dtsVersion.VersionName.Contains("DTS_EDIT"))
                {
                    IMultiuserWorkspaceEdit multiuserWorkspaceEdit = (IMultiuserWorkspaceEdit)dtsVersion;
                    IWorkspaceEdit          workspaceEdit          = (IWorkspaceEdit)dtsVersion;
                    IVersionEdit4           versionEdit            = (IVersionEdit4)workspaceEdit;
                    if (multiuserWorkspaceEdit.SupportsMultiuserEditSessionMode(esriMultiuserEditSessionMode.esriMESMVersioned))
                    {
                        multiuserWorkspaceEdit.StartMultiuserEditing(esriMultiuserEditSessionMode.esriMESMVersioned);
                        versionEdit.Reconcile4("MSD.QC", true, false, false, false);
                        workspaceEdit.StartEditOperation();
                        IFeature featureEdit = ((IFeatureWorkspace)workspaceEdit).OpenFeatureClass("SWRAINGAUGE").GetFeature(330);
                        // Convert.ToString(featureEdit[6]);
                        Convert.ToString(featureEdit.Value[6]);
                        int      Totalfield          = featureEdit.Fields.FieldCount;
                        int      ownershipindex      = featureEdit.Fields.FindField("OWNERSHIP");
                        int      lastmodifieddtindex = featureEdit.Fields.FindField("LAST_MODIFIED_DATE");
                        DateTime lastmodifieddt      = DateTime.Now.Date;
                        //featureEdit[ownershipindex] = "1";
                        //featureEdit[lastmodifieddtindex] = lastmodifieddt.Date;
                        featureEdit.Value[ownershipindex]      = "1";
                        featureEdit.Value[lastmodifieddtindex] = lastmodifieddt.Date;
                        featureEdit.Store();
                        if (versionEdit.CanPost())
                        {
                            versionEdit.Post("MSD.QC");
                        }
                        workspaceEdit.StopEditOperation();
                        workspaceEdit.StopEditing(true);
                    }
                }
            }
            catch (COMException cOMException)
            {
                if (cOMException.ErrorCode == -2147217147)
                {
                }
            }
            catch (Exception exception)
            {
            }
        }
Example #5
0
        public int UpdateAssets(List <AssetModified> assetModifieds)
        {
            int num;

            this.dtStartTime = DateTime.Now;
            Assets.logger.Debug(string.Concat("UpdateAssets start at ", this.dtStartTime.ToString()));
            IPropertySet propertySet = Assets.GetPropertySet();
            int          counter     = 0;

            try
            {
                IWorkspace          workspaceName      = (new SdeWorkspaceFactoryClass()).Open(propertySet, 0);
                IVersionedWorkspace versionedWorkspace = (IVersionedWorkspace)workspaceName;
                IEnumVersionInfo    enumVersionInfo    = versionedWorkspace.Versions;
                enumVersionInfo.Reset();
                IVersionInfo existversionInfo = enumVersionInfo.Next();
                while (existversionInfo != null)
                {
                    if (!existversionInfo.VersionName.Trim().Equals("MSD.DTS_EDIT"))
                    {
                        existversionInfo = enumVersionInfo.Next();
                    }
                    else
                    {
                        versionedWorkspace.FindVersion("MSD.DTS_EDIT").Delete();
                        break;
                    }
                }
                enumVersionInfo.Reset();
                IVersion version    = (IVersion)((IFeatureWorkspace)workspaceName);
                string   name       = version.VersionInfo.VersionName;
                IVersion dtsVersion = version.CreateVersion("DTS_EDIT");
                dtsVersion.Access      = esriVersionAccess.esriVersionAccessPublic;
                dtsVersion.Description = "Update DTS to MSD Ownership via DTS app";
                if (dtsVersion.VersionName.Contains("DTS_EDIT"))
                {
                    IMultiuserWorkspaceEdit multiuserWorkspaceEdit = (IMultiuserWorkspaceEdit)dtsVersion;
                    IWorkspaceEdit          workspaceEdit          = (IWorkspaceEdit)dtsVersion;
                    IVersionEdit4           versionEdit            = (IVersionEdit4)workspaceEdit;
                    if (multiuserWorkspaceEdit.SupportsMultiuserEditSessionMode(esriMultiuserEditSessionMode.esriMESMVersioned))
                    {
                        multiuserWorkspaceEdit.StartMultiuserEditing(esriMultiuserEditSessionMode.esriMESMVersioned);
                        versionEdit.Reconcile4("MSD.QC", true, false, false, false);
                        workspaceEdit.StartEditOperation();
                        ILog     log = Assets.logger;
                        DateTime now = DateTime.Now;
                        log.Debug(string.Concat("GetUpdateAssets start at ", now.ToString()));
                        counter = Assets.GetUpdateAssets(assetModifieds, counter, workspaceEdit);
                        ILog log1 = Assets.logger;
                        now = DateTime.Now;
                        log1.Debug(string.Concat("GetUpdateAssets end at ", now.ToString()));
                        if (versionEdit.CanPost())
                        {
                            versionEdit.Post("MSD.QC");
                        }
                        workspaceEdit.StopEditOperation();
                        workspaceEdit.StopEditing(true);
                    }
                }
                this.dtEndTime  = DateTime.Now;
                this.tsDiff     = this.dtEndTime.Subtract(this.dtStartTime);
                this.dlTimeDiff = this.tsDiff.TotalMilliseconds;
                Assets.logger.Debug(string.Concat("UpdateAssets end at ", this.dtStartTime.ToString(), " Total diff : ", this.dlTimeDiff.ToString()));
                num = counter;
            }
            catch (COMException cOMException)
            {
                COMException ex = cOMException;
                Assets.logger.Debug(string.Concat("Error from UpdateAssets : ", ex.Message, " ", ex.StackTrace));
                throw ex;
            }
            catch (Exception exception)
            {
                Exception ex = exception;
                Assets.logger.Debug(string.Concat("Error from UpdateAssets : ", ex.Message, " ", ex.StackTrace));
                throw ex;
            }
            return(num);
        }
Example #6
0
        /// <summary>
        ///     Reconciles the current source version with the specified target version. The target version must be
        ///     an ancestor of the current version or an error will be returned.
        /// </summary>
        /// <param name="source">The source version that will be reconciled.</param>
        /// <param name="target">The target version must be an ancestor of the current version or an error will be returned.</param>
        /// <param name="acquireLock">
        ///     The default behavior of reconcile is to obtain a shared version lock on the target version. The lock ensures the
        ///     target version cannot be reconciled while the source version can be reconciled. The purpose of the version lock on
        ///     the target version is to ensure the version is available when the intention is to post. If the intention is not to
        ///     post to the target version following a reconcile, the acquireLock method can be set to false.
        /// </param>
        /// <param name="abortIfConflicts">
        ///     It is also possible to abort the reconcile when a conflict is detected. Setting the abortIfConflicts to true will
        ///     abort the reconcile process when conflicts are detected; for example, you could choose to abort when performing the
        ///     reconcile in a batch process when there is no human interaction to resolve the conflicts.
        /// </param>
        /// <param name="childWins">
        ///     If conflicts occur, the conflicts are initially resolved in favor of the target version. Setting this argument to
        ///     true replaces all conflicting features with the source version's representation of the object.
        /// </param>
        /// <param name="columnLevel">
        ///     The reconcile method also provides the ability to define what constitutes a conflict during the reconcile. The
        ///     columnLevel argument is a Boolean argument that, if set to true, will only promote the same modified object in both
        ///     versions as a conflict if the same attribute for the object has changed in both versions. For example, if a feature
        ///     was moved in the target version, the same feature's attribute was updated in the edit version, and column level
        ///     conflict filtering was set to true, the reconcile would not detect this feature as a conflict.
        /// </param>
        /// <returns>Returns a <see cref="bool"/> representing <c>true</c> when conflicts have been detected.</returns>
        public static bool Reconcile(this IVersion source, IVersion target, bool acquireLock, bool abortIfConflicts, bool childWins, bool columnLevel)
        {
            IVersionEdit4 versionEdit = (IVersionEdit4)source;

            return(source.PerformOperation(true, esriMultiuserEditSessionMode.esriMESMVersioned, () => versionEdit.Reconcile4(target.VersionName, acquireLock, abortIfConflicts, childWins, columnLevel)));
        }
Example #7
0
        //*******************************************************************************************************************************************
        //若使用数据库版本,并且没有选中融合,说明冲突要素没有发生变化,则需要将冲突要素保存起来,在写入更新日志时,要排除这些记录
        //同理,若使用数据库版本,选中融合,但是融合不成功,说明要素还是没有发生变化,也需要将这一类要素存储起来,在写入更新日志时,排除这些记录

        //若使用当前版本覆盖数据库版本,不用清除更新日志记录表里面冲突要素对应的更新日志信息,但是要修改历史库相应的要素,将以前的更改数据置为无效
        //*******************************************************************************************************************************************
        /// <summary>
        /// 保存需要排除的冲突要素记录
        /// </summary>
        /// <param name="defVerName">默认版本名称</param>
        /// <param name="bChildWin">true表示用当前版本替换前一版本,false表示使用数据库版本</param>
        /// <param name="beMerge">true表示融合冲突要素几何形状,false表示不融合</param>
        /// <param name="eError"></param>
        /// <returns></returns>
        public Dictionary <string, Dictionary <int, List <int> > > ReconcileVersion(string defVerName, bool bChildWin, bool beMerge, out Exception eError)
        {
            Dictionary <string, Dictionary <int, List <int> > > conflictFeaClsDic = null; //产生冲突的要素类信息

            bool bLock            = true;                                                 //true获得锁
            bool bebortIfConflict = false;                                                //检测到冲突时,版本协调是否停止,true停止,false不停止
            //bool bChildWin = false;                 //true替换上一个版本(冲突版本),false用上一个版本(冲突版本)
            bool battributeCheck = false;                                                 //false若为true则只有修改同一个属性时才检测出冲突

            //bool beMerge = true;                   //对于产生冲突的要素是否融合
            eError = null;

            IVersionEdit4 pVersionEdit4 = v_WSEdit as IVersionEdit4; //版本编辑

            if (pVersionEdit4 == null)
            {
                eError = new Exception("获取当前版本编辑出错!");
                return(null);
            }
            try
            {
                //协调版本
                if (pVersionEdit4.Reconcile4(defVerName, bLock, bebortIfConflict, bChildWin, battributeCheck))
                {
                    //存在冲突,冲突处理方式分为3种: 使用当前版本、使用数据库版本、使用自定义处理方式(未实现)
                    IFeatureWorkspace pOrgFWS     = null;       //原始数据工作空间
                    IFeatureWorkspace pReconWS    = null;       //第一个编辑冲突版本工作空间
                    IFeatureWorkspace pPreReconWS = null;       //第二个编辑冲突版本工作空间(正在编辑的)

                    pOrgFWS = pVersionEdit4.CommonAncestorVersion as IFeatureWorkspace;
                    if (pOrgFWS == null)
                    {
                        eError = new Exception("原始数据库工作空间为空!");
                        return(null);
                    }
                    pReconWS = pVersionEdit4.ReconcileVersion as IFeatureWorkspace;
                    if (pReconWS == null)
                    {
                        eError = new Exception("第一个编辑冲突版本工作空间为空!");
                        return(null);
                    }
                    pPreReconWS = pVersionEdit4.PreReconcileVersion as IFeatureWorkspace;
                    if (pPreReconWS == null)
                    {
                        eError = new Exception("第二个编辑冲突版本工作空间为空!");
                        return(null);
                    }

                    conflictFeaClsDic = new Dictionary <string, Dictionary <int, List <int> > >();
                    #region 对冲突要素类进行处理
                    //获取产生冲突的要素
                    IEnumConflictClass pEnumConflictCls = pVersionEdit4.ConflictClasses;
                    if (pEnumConflictCls == null)
                    {
                        return(null);
                    }
                    pEnumConflictCls.Reset();
                    IConflictClass pConflictCls = pEnumConflictCls.Next();
                    //遍历冲突要素类,对冲突要素进行处理
                    while (pConflictCls != null)
                    {
                        if (pConflictCls.HasConflicts)
                        {
                            //若该要素类存在冲突要素
                            IDataset pdt        = pConflictCls as IDataset;
                            string   feaClsName = ""; //冲突要素类名称
                            feaClsName = pdt.Name;
                            if (feaClsName.Contains("."))
                            {
                                feaClsName = feaClsName.Substring(feaClsName.IndexOf('.') + 1);
                            }

                            IFeatureClass pFeaCls         = null;                                          //需要编辑的featureclass
                            IFeatureClass pOrgFeaCls      = null;                                          //冲突原始要素类
                            IFeatureClass pReconFeaCls    = null;                                          //第一个编辑冲突版本要素类
                            IFeatureClass pPreReconFeaCls = null;                                          //第二个编辑版本冲突要素类
                            IFeature      pOrgFea         = null;                                          //原始要素类中产生冲突对应的要素
                            IFeature      pReconFea       = null;                                          //第一个编辑版本中产生冲突的要素
                            IFeature      pPreReconFea    = null;                                          //第二个编辑版本中产生冲突的要素

                            Dictionary <int, List <int> > feaOIDDic = new Dictionary <int, List <int> >(); //用来保存产生冲突的要素类信息
                            List <int> OidLst = null;                                                      //用来保存产生冲突的要素oid集合

                            try
                            {
                                pFeaCls = (v_WSEdit as IFeatureWorkspace).OpenFeatureClass(feaClsName);
                                //获取不同版本对应的冲突要素类
                                pOrgFeaCls      = pOrgFWS.OpenFeatureClass(feaClsName);
                                pReconFeaCls    = pReconWS.OpenFeatureClass(feaClsName);
                                pPreReconFeaCls = pPreReconWS.OpenFeatureClass(feaClsName);
                            }
                            catch (Exception ex)
                            {
                                //******************************************
                                //guozheng added System Exception log
                                if (SysCommon.Log.Module.SysLog == null)
                                {
                                    SysCommon.Log.Module.SysLog = new SysCommon.Log.clsWriteSystemFunctionLog();
                                }
                                SysCommon.Log.Module.SysLog.Write(ex);
                                //******************************************
                                eError = new Exception("获取冲突要素类出错!");
                                //******************************************
                                //guozheng added System Exception log
                                if (SysCommon.Log.Module.SysLog == null)
                                {
                                    SysCommon.Log.Module.SysLog = new SysCommon.Log.clsWriteSystemFunctionLog();
                                }
                                SysCommon.Log.Module.SysLog.Write(eError);
                                //******************************************
                                //if (!bChildWin &&beMerge)
                                //{
                                //    //使用数据库版本,未进行融合,保要素信息存冲突
                                //    return;
                                //}
                                pConflictCls = pEnumConflictCls.Next();
                                continue;
                            }

                            #region 处理冲突(进行融合),并保存冲突要素信息
                            //在上一个版本(目标冲突版本)被修改,修改用2表示,但是在当前版本被删除的选择集
                            ISelectionSet deUpSelSet = pConflictCls.DeleteUpdates;
                            if (deUpSelSet != null)
                            {
                                #region 进行冲突处理,并保存产生冲突的要素信息,这种情况不能融合
                                IEnumIDs enumIDs = deUpSelSet.IDs;
                                int      ppoid   = -1;
                                ppoid = enumIDs.Next();

                                OidLst = new List <int>();
                                //遍历冲突要素类中存在的修改删除冲突要素
                                while (ppoid != -1)
                                {
                                    if (beMerge)
                                    {
                                        // 融合
                                        //eError = new Exception("编辑区域重叠,不能融合\n要素OID为:" + ppoid + ",要素类名称为:" + feaClsName + "。\n处理为用当前编辑覆盖原有编辑!");
                                    }
                                    if (bChildWin == false)
                                    {
                                        //使用数据库版本,保存产生冲突的要素信息
                                        if (!OidLst.Contains(ppoid))
                                        {
                                            OidLst.Add(ppoid);
                                        }
                                        if (!feaOIDDic.ContainsKey(2))
                                        {
                                            feaOIDDic.Add(2, OidLst);
                                        }
                                        else
                                        {
                                            if (!feaOIDDic[2].Contains(ppoid))
                                            {
                                                feaOIDDic[2].Add(ppoid);
                                            }
                                        }
                                    }
                                    ppoid = enumIDs.Next();
                                }
                                #endregion
                            }

                            //在上一个版本(目标冲突版本)被删除,删除用3表示,但是在当前版本被修改的选择集
                            ISelectionSet upDeSelSet = pConflictCls.UpdateDeletes;
                            if (upDeSelSet != null)
                            {
                                #region 进行冲突处理,并保存产生冲突的要素信息
                                IEnumIDs enumIDs = upDeSelSet.IDs;
                                int      ppoid   = -1;
                                ppoid  = enumIDs.Next();
                                OidLst = new List <int>();
                                //遍历要素类中存在的删除修改冲突
                                while (ppoid != -1)
                                {
                                    if (beMerge)
                                    {
                                        // 融合
                                        //SysCommon.Error.ErrorHandle.ShowFrmErrorHandle("提示", "编辑区域重叠,不能融合\n要素OID为:" + ppoid + ",要素类名称为:" + feaClsName + "。");
                                    }
                                    if (bChildWin == false)
                                    {
                                        //使用数据库版本,保存产生冲突的融合不了的要素信息
                                        if (!OidLst.Contains(ppoid))
                                        {
                                            OidLst.Add(ppoid);
                                        }
                                        if (!feaOIDDic.ContainsKey(3))
                                        {
                                            feaOIDDic.Add(3, OidLst);
                                        }
                                        else
                                        {
                                            if (!feaOIDDic[3].Contains(ppoid))
                                            {
                                                feaOIDDic[3].Add(ppoid);
                                            }
                                        }
                                    }
                                    ppoid = enumIDs.Next();
                                }
                                #endregion
                            }

                            //在上一个版本(目标冲突版本)被修改,修改用2表示,但是在当前版本被修改的选择集
                            ISelectionSet upUpSelSet = pConflictCls.UpdateUpdates;
                            if (upUpSelSet != null)
                            {
                                #region 进行冲突处理,并保存产生冲突的要素信息
                                IEnumIDs enumIDs = upUpSelSet.IDs;
                                int      ppoid   = -1;
                                ppoid  = enumIDs.Next();
                                OidLst = new List <int>();
                                //遍历要素类中存在的修改修改冲突要素
                                while (ppoid != -1)
                                {
                                    if (pPreReconFeaCls == null || pReconFeaCls == null || pOrgFeaCls == null)
                                    {
                                        break;
                                    }
                                    pPreReconFea = pPreReconFeaCls.GetFeature(ppoid);
                                    pReconFea    = pReconFeaCls.GetFeature(ppoid);
                                    pOrgFea      = pOrgFeaCls.GetFeature(ppoid);
                                    if (pPreReconFea == null || pReconFea == null || pOrgFea == null)
                                    {
                                        break;
                                    }
                                    IConstructMerge constructMerge = new GeometryEnvironmentClass();  //融合变量
                                    IGeometry       newGeometry    = null;                            //融合后的几何形状
                                    if (beMerge)
                                    {
                                        #region 融合
                                        try
                                        {
                                            newGeometry = constructMerge.MergeGeometries(pOrgFea.ShapeCopy, pReconFea.ShapeCopy, pPreReconFea.ShapeCopy);
                                        }
                                        catch (Exception ex)
                                        {
                                            //SysCommon.Error.ErrorHandle.ShowFrmErrorHandle("提示", "编辑区域重叠,不能融合");
                                            //******************************************
                                            //guozheng added System Exception log
                                            if (SysCommon.Log.Module.SysLog == null)
                                            {
                                                SysCommon.Log.Module.SysLog = new SysCommon.Log.clsWriteSystemFunctionLog();
                                            }
                                            SysCommon.Log.Module.SysLog.Write(ex);
                                            //******************************************
                                            if (bChildWin == false)
                                            {
                                                //若用原来的版本替换现在的版本并且不能融合,说明该要素没有发生变化,应该在日志记录表里面排除掉
                                                //保存产生冲突的要素信息
                                                if (!OidLst.Contains(ppoid))
                                                {
                                                    OidLst.Add(ppoid);
                                                }
                                                if (!feaOIDDic.ContainsKey(2))
                                                {
                                                    feaOIDDic.Add(2, OidLst);
                                                }
                                                else
                                                {
                                                    if (!feaOIDDic[2].Contains(ppoid))
                                                    {
                                                        feaOIDDic[2].Add(ppoid);
                                                    }
                                                }
                                            }

                                            ppoid = enumIDs.Next();
                                            continue;
                                        }
                                        IFeature ppfea = pFeaCls.GetFeature(ppoid);
                                        ppfea.Shape = newGeometry;
                                        ppfea.Store();
                                        #endregion
                                    }
                                    else
                                    {
                                        #region  融合
                                        if (bChildWin == false)
                                        {
                                            //若用原来的版本替换现在的版本并且不能融合,说明该要素没有发生变化,应该在日志记录表里面排除掉
                                            //保存产生冲突的要素信息
                                            if (!OidLst.Contains(ppoid))
                                            {
                                                OidLst.Add(ppoid);
                                            }
                                            if (!feaOIDDic.ContainsKey(2))
                                            {
                                                feaOIDDic.Add(2, OidLst);
                                            }
                                            else
                                            {
                                                if (!feaOIDDic[2].Contains(ppoid))
                                                {
                                                    feaOIDDic[2].Add(ppoid);
                                                }
                                            }
                                        }
                                        #endregion
                                    }
                                    ppoid = enumIDs.Next();
                                }
                                #endregion
                            }

                            if (!conflictFeaClsDic.ContainsKey(feaClsName))
                            {
                                if (feaOIDDic != null)
                                {
                                    if (feaOIDDic.Count > 0)
                                    {
                                        conflictFeaClsDic.Add(feaClsName, feaOIDDic);
                                    }
                                }
                            }
                            #endregion
                        }
                        pConflictCls = pEnumConflictCls.Next();
                    }
                    #endregion
                }
                return(conflictFeaClsDic);
            }
            catch (Exception ex)
            {
                //******************************************
                //guozheng added System Exception log
                if (SysCommon.Log.Module.SysLog == null)
                {
                    SysCommon.Log.Module.SysLog = new SysCommon.Log.clsWriteSystemFunctionLog();
                }
                SysCommon.Log.Module.SysLog.Write(ex);
                //******************************************
                eError = new Exception("版本协调出错!");
                return(null);
            }
        }
Example #8
0
 /// <summary>
 /// Pseudocode:
 /// - Loop through all conflicts classes after the reconcile.
 /// - Loop through every UpdateUpdate conflict on the class.
 /// - Determine if geometry is in conflict on the feature.
 /// - If so, merge geometries together (handling errors) and store the feature.
 /// </summary>
 public void OnConflictsDetected(ref bool conflictsRemoved, ref bool errorOccurred, ref string errorString)
 {
     try
     {
         IVersionEdit4 versionEdit4 = (IVersionEdit4)featureWorkspace;
         // Get the various versions on which to output information.
         IFeatureWorkspace commonAncestorFWorkspace = (IFeatureWorkspace)
                                                      versionEdit4.CommonAncestorVersion;
         IFeatureWorkspace preReconcileFWorkspace = (IFeatureWorkspace)
                                                    versionEdit4.PreReconcileVersion;
         IFeatureWorkspace reconcileFWorkspace = (IFeatureWorkspace)
                                                 versionEdit4.ReconcileVersion;
         IEnumConflictClass enumConflictClass = versionEdit4.ConflictClasses;
         IConflictClass     conflictClass     = null;
         while ((conflictClass = enumConflictClass.Next()) != null)
         {
             IDataset dataset = (IDataset)conflictClass;
             // Make sure class is a feature class.
             if (dataset.Type == esriDatasetType.esriDTFeatureClass)
             {
                 String        datasetName  = dataset.Name;
                 IFeatureClass featureClass = featureWorkspace.OpenFeatureClass
                                                  (datasetName);
                 Console.WriteLine("Conflicts on feature class {0}", datasetName);
                 // Get all UpdateUpdate conflicts.
                 ISelectionSet updateUpdates = conflictClass.UpdateUpdates;
                 if (updateUpdates.Count > 0)
                 {
                     // Get conflict feature classes on the three reconcile versions.
                     IFeatureClass featureClassPreReconcile =
                         preReconcileFWorkspace.OpenFeatureClass(datasetName);
                     IFeatureClass featureClassReconcile =
                         reconcileFWorkspace.OpenFeatureClass(datasetName);
                     IFeatureClass featureClassCommonAncestor =
                         commonAncestorFWorkspace.OpenFeatureClass(datasetName);
                     // Iterate through each OID, outputting information.
                     IEnumIDs enumIDs = updateUpdates.IDs;
                     int      oid     = -1;
                     while ((oid = enumIDs.Next()) != -1)
                     //loop through all conflicting features
                     {
                         Console.WriteLine("UpdateUpdate conflicts on feature {0}", oid);
                         // Get conflict feature on the three reconcile versions.
                         IFeature featurePreReconcile =
                             featureClassPreReconcile.GetFeature(oid);
                         IFeature featureReconcile      = featureClassReconcile.GetFeature(oid);
                         IFeature featureCommonAncestor =
                             featureClassCommonAncestor.GetFeature(oid);
                         // Check to make sure each shape is different than the common ancestor (conflict is on shape field).
                         if (IsShapeInConflict(featureCommonAncestor, featurePreReconcile,
                                               featureReconcile))
                         {
                             Console.WriteLine(
                                 " Shape attribute has changed on both versions...");
                             // Geometries are in conflict ... merge geometries.
                             try
                             {
                                 IConstructMerge constructMerge = new GeometryEnvironmentClass
                                                                      ();
                                 IGeometry newGeometry = constructMerge.MergeGeometries
                                                             (featureCommonAncestor.ShapeCopy,
                                                             featureReconcile.ShapeCopy, featurePreReconcile.ShapeCopy);
                                 // Setting new geometry as a merge between the two versions.
                                 IFeature feature = featureClass.GetFeature(oid);
                                 feature.Shape = newGeometry;
                                 feature.Store();
                                 updateUpdates.RemoveList(1, ref oid);
                                 conflictsRemoved = true;
                             }
                             catch (Exception eError) //COMException comExc
                             {
                                 //******************************************
                                 //guozheng added System Exception log
                                 if (SysCommon.Log.Module.SysLog == null)
                                 {
                                     SysCommon.Log.Module.SysLog = new SysCommon.Log.clsWriteSystemFunctionLog();
                                 }
                                 SysCommon.Log.Module.SysLog.Write(eError);
                                 //******************************************
                                 //// Check if the error is from overlapping edits.
                                 //if (comExc.ErrorCode == (int)
                                 //  fdoError.FDO_E_WORKSPACE_EXTENSION_DATASET_CREATE_FAILED ||
                                 //  comExc.ErrorCode == (int)
                                 //  fdoError.FDO_E_WORKSPACE_EXTENSION_DATASET_DELETE_FAILED)
                                 //{
                                 //    // Edited areas overlap.
                                 //    Console.WriteLine(
                                 //      "Error from overlapping edits on feature {0}", oid);
                                 //    Console.WriteLine(" Error Message: {0}", comExc.Message);
                                 //    Console.WriteLine(
                                 //      " Can't merge overlapping edits to same feature.");
                                 //}
                                 //else
                                 //{
                                 //    // Unexpected COM exception throw this to exception handler.
                                 //    throw comExc;
                                 //}
                             }
                         }
                         else
                         {
                             Console.WriteLine(
                                 " Shape field not in conflict: merge not necessary ... ");
                         }
                     }
                 }
             }
         }
     }
     catch (Exception eError)
     {
         //******************************************
         //guozheng added System Exception log
         if (SysCommon.Log.Module.SysLog == null)
         {
             SysCommon.Log.Module.SysLog = new SysCommon.Log.clsWriteSystemFunctionLog();
         }
         SysCommon.Log.Module.SysLog.Write(eError);
         //******************************************
         //Console.WriteLine("Error Message: {0}, Error Code: {1}", comExc.Message,
         //  comExc.ErrorCode);
     }
     //catch (Exception exc)
     //{
     //    Console.WriteLine("Unhandled Exception: {0}", exc.Message);
     //}
 }