16 |
|
PrimaryDataset = ProcessedDataset |
17 |
|
if PrimaryDataset != '': |
18 |
|
if ( PrimaryDataset[0] == '/' ): PrimaryDataset=PrimaryDataset[1:] |
19 |
< |
lfnbase = os.path.join(forced_path, getUserName(), PrimaryDataset, ProcessedDataset) |
20 |
< |
|
19 |
> |
if forced_path.find('store/group')>0: |
20 |
> |
lfnbase = os.path.join(forced_path, PrimaryDataset, ProcessedDataset) |
21 |
> |
else: |
22 |
> |
lfnbase = os.path.join(forced_path, getUserName(), PrimaryDataset, ProcessedDataset) |
23 |
> |
if (publish == True): |
24 |
> |
checkLength(lfnbase, forced_path, PrimaryDataset, ProcessedDataset) |
25 |
|
return lfnbase |
26 |
|
|
27 |
+ |
def checkLength(lfnbase, forced_path, PrimaryDataset, ProcessedDataset): |
28 |
+ |
""" |
29 |
+ |
""" |
30 |
+ |
|
31 |
+ |
len_primary = len(PrimaryDataset) |
32 |
+ |
|
33 |
+ |
common.logger.debug("CheckLength of LFN and User DatasetName") |
34 |
+ |
common.logger.debug("max length for complete LFN is 500 characters, max length for primary dataset is 100 characters") |
35 |
+ |
common.logger.debug("PrimaryDataset = " + PrimaryDataset) |
36 |
+ |
common.logger.debug("len_primary = " + str(len_primary)) |
37 |
+ |
|
38 |
+ |
if (len_primary > 100): |
39 |
+ |
raise CrabException("Warning: you required user_data_publication. The PrimaryDatasetName has to be < 100 characters") |
40 |
+ |
|
41 |
+ |
if (PrimaryDataset != ProcessedDataset): |
42 |
+ |
common.logger.debug("ProcessedDataset = " + ProcessedDataset) |
43 |
+ |
common.logger.debug("len(ProcessedDataset) = " + str(len(ProcessedDataset))) |
44 |
+ |
|
45 |
+ |
common.logger.debug("forced_path = " + forced_path) |
46 |
+ |
common.logger.debug("len(forced_path) = " + str(len(forced_path))) |
47 |
+ |
|
48 |
+ |
user = getUserName() |
49 |
+ |
len_user_name = len(user) |
50 |
+ |
common.logger.debug("user = " + user) |
51 |
+ |
common.logger.debug("len_user_name = " + str(len_user_name)) |
52 |
+ |
|
53 |
+ |
common.logger.debug("lfnbase = " + lfnbase) |
54 |
+ |
common.logger.debug("len(lfnbase) = " + str(len(lfnbase))) |
55 |
+ |
|
56 |
+ |
### we suppose a output_file_name of 50 characters ### |
57 |
+ |
if len(lfnbase)>450: |
58 |
+ |
if (PrimaryDataset != ProcessedDataset): |
59 |
+ |
#500 - len_user_name - len_primary - len(forced) - len(PSETHASH = 32) - 4(/) - output(50) |
60 |
+ |
#~400 - len_user_name - len_primary - len(forced) |
61 |
+ |
if (len(ProcessedDataset) > (400 - len_user_name - len_primary - len(forced_path))): |
62 |
+ |
raise CrabException("Warning: publication name too long. USER.publish_data_name has to be < " + str(400 - len_user_name - len_primary - len(forced_path)) + " characters") |
63 |
+ |
else: |
64 |
+ |
raise CrabException("Warning: LFN > 500 characters") |
65 |
+ |
else: |
66 |
+ |
if (len(ProcessedDataset) > (400 - len_user_name - len(forced_path)) / 2): |
67 |
+ |
raise CrabException("Warning: publication name too long. USER.publish_data_name has to be < " + str((400 - len_user_name - len(forced_path)) / 2) + " characters") |
68 |
+ |
else: |
69 |
+ |
raise CrabException("Warning: LFN > 500 characters") |
70 |
+ |
|
71 |
|
|
72 |
|
if __name__ == '__main__' : |
73 |
|
""" |