|
|
请使用QQ关联注册PLM之家,学习更多关于内容,更多精彩原创视频供你学习!
您需要 登录 才可以下载或查看,没有账号?注册
x
$ Y8 x' l& E Y3 M3 FTeamcenter 二次开发源码分享:替换数据集dataset的引用集9 J$ r9 Z0 f4 r. h
; w: [: X6 n4 d% h, J( |
' G8 T8 t, Y( X. C#include <ae/dataset.h>
" w/ r9 T" ?; s9 w/ E# }8 j#include <sa/TCfile.h>8 f. V+ }# d5 J7 |! B! e1 q
#include <tccore/aom.h>
- i+ b3 K2 T7 E#include <sa/tcfile_cache.h>
1 ]0 t: N: N9 T: B" y
{( {7 D5 f5 D, x5 w& C- Jstatic void replace_dataset_named_reference(tag_t dataset_tag, tag_t old_file,1 A. _# h# U3 [4 ~0 j7 w& x
char *new_file_path, char *ref_name)
( S, o9 | Z& a: E' d$ N5 u{
4 p5 X, e* k+ W IMF_file_data_p_t file_data;
5 [; I& h' D1 S! F% q6 i( ^ IFERR_REPORT(IMF_get_file_access(old_file, 0, &file_data));0 K( ]% G& s: P4 g- r
% L* N! L% W/ r- u: ~0 y tag_t new_file_tag = NULLTAG;
5 s2 v& }: q8 i+ |8 n IFERR_REPORT(AOM_lock(old_file));1 | D6 f/ ^" `, V2 s
IFERR_REPORT(IMF_replace_file_and_get_new_tag(old_file, new_file_path,6 u l/ t0 C% c0 m" n+ e
FALSE, &new_file_tag));
" M* W" W2 x9 V6 }2 K$ @) q, o# Q2 D5 ]
IFERR_REPORT(AOM_lock(dataset_tag));# v# K: R$ n8 v* p V) l
IFERR_REPORT(AE_replace_dataset_named_ref(dataset_tag, old_file, ref_name,
# O0 g- b, V! o% U AE_PART_OF, new_file_tag));7 _' h# w% C) ^
' q. D, M' d8 e J- C7 u6 s% e8 j IFERR_REPORT(AE_save_myself(dataset_tag));
) ^# ^( u8 |1 v& X* V IFERR_REPORT(AOM_unlock(dataset_tag));& V& L. M3 t! q _
IFERR_REPORT(IMF_release_file_access (&file_data));0 H5 I3 Q1 ]: e6 `1 K% u" L+ r
. [2 l4 N5 u( e: X8 s7 Z# E /* assuming the old file should be deleted */
! ?# R4 v( {. m/ h3 k IFERR_REPORT(AOM_lock_for_delete(old_file));
- E9 Y- R/ ^8 j IFERR_REPORT(AOM_delete(old_file));
1 I0 m' S# F [3 C}
9 e7 ?' S. B6 D& x9 r+ J A% T4 y- f/ l/ u- P& R$ ~
|
|