Removed old code for AAIP 1.0 production.

Obsoleted macro Libisofs_aaip_2_0.
This commit is contained in:
Thomas Schmitt 2009-05-26 18:41:51 +02:00
parent ef96f3588c
commit f370829717
4 changed files with 3 additions and 59 deletions

View File

@ -128,13 +128,7 @@ size_t aaip_encode(size_t num_attrs, char **names,
/* write the field headers */ /* write the field headers */
for(i= 0; i < number_of_fields; i++) { for(i= 0; i < number_of_fields; i++) {
(*result)[i * 255 + 0]= 'A'; (*result)[i * 255 + 0]= 'A';
#ifdef Libisofs_aaip_2_0
(*result)[i * 255 + 1]= 'L'; (*result)[i * 255 + 1]= 'L';
#else /* Libisofs_aaip_2_0 */
(*result)[i * 255 + 1]= 'A';
#endif /* ! Libisofs_aaip_2_0 */
if(i < number_of_fields - 1 || (mem_size % 255) == 0) if(i < number_of_fields - 1 || (mem_size % 255) == 0)
(*result)[i * 255 + 2]= 255; (*result)[i * 255 + 2]= 255;
else else
@ -1186,16 +1180,9 @@ static int aaip_consume_aa_head(struct aaip_state *aaip,
aaip->aa_head_missing-= todo; aaip->aa_head_missing-= todo;
if(aaip->aa_head_missing == 0) { if(aaip->aa_head_missing == 0) {
aaip_read_from_recs(aaip, aaip->recs_fill - 5, aa_head, 5, 0); aaip_read_from_recs(aaip, aaip->recs_fill - 5, aa_head, 5, 0);
#ifdef Libisofs_aaip_2_0
if(aa_head[0] != 'A' || (aa_head[1] != 'L' && aa_head[1] != 'A') || if(aa_head[0] != 'A' || (aa_head[1] != 'L' && aa_head[1] != 'A') ||
aa_head[3] != 1) aa_head[3] != 1)
return(-1); return(-1);
#else /* Libisofs_aaip_2_0 */
if(aa_head[0] != 'A' || aa_head[1] != 'A' || aa_head[3] != 1)
return(-1);
#endif /* ! Libisofs_aaip_2_0 */
aaip->aa_missing= aa_head[2]; aaip->aa_missing= aa_head[2];
aaip->aa_ends= !(aa_head[4] & 1); aaip->aa_ends= !(aa_head[4] & 1);
aaip->recs_fill-= 5; /* AAIP field heads do not get delivered */ aaip->recs_fill-= 5; /* AAIP field heads do not get delivered */

View File

@ -5419,11 +5419,7 @@ struct burn_source {
/* ---------------------------- Improvements --------------------------- */ /* ---------------------------- Improvements --------------------------- */
/* currently none being tested */
/* Protocol Upgrade : change to AAIP-2.0 with field signature "AL"
*/
#define Libisofs_aaip_2_0 yes
/* ---------------------------- Experiments ---------------------------- */ /* ---------------------------- Experiments ---------------------------- */

View File

@ -662,9 +662,6 @@ int aaip_add_ER(Ecma119Image *t, struct susp_info *susp, int flag)
ER[5] = 81; ER[5] = 81;
ER[6] = 62; ER[6] = 62;
ER[7] = 1; ER[7] = 1;
#ifdef Libisofs_aaip_2_0
memcpy(ER + 8, "AAIP_0200", 9); memcpy(ER + 8, "AAIP_0200", 9);
memcpy(ER + 17, memcpy(ER + 17,
"AL PROVIDES VIA AAIP 2.0 SUPPORT FOR ARBITRARY FILE ATTRIBUTES" "AL PROVIDES VIA AAIP 2.0 SUPPORT FOR ARBITRARY FILE ATTRIBUTES"
@ -673,18 +670,6 @@ int aaip_add_ER(Ecma119Image *t, struct susp_info *susp, int flag)
"PLEASE CONTACT THE LIBBURNIA PROJECT VIA LIBBURNIA-PROJECT.ORG", "PLEASE CONTACT THE LIBBURNIA PROJECT VIA LIBBURNIA-PROJECT.ORG",
62); 62);
#else /* Libisofs_aaip_2_0 */
memcpy(ER + 8, "AAIP_0100", 9);
memcpy(ER + 17,
"AA PROVIDES VIA AAIP 1.0 SUPPORT FOR ARBITRARY FILE ATTRIBUTES"
" IN ISO 9660 IMAGES", 81);
memcpy(ER + 98,
"PLEASE CONTACT THE LIBBURNIA PROJECT VIA LIBBURNIA-PROJECT.ORG",
62);
#endif /* ! Libisofs_aaip_2_0 */
/** This always goes to continuation area */ /** This always goes to continuation area */
return susp_append_ce(t, susp, ER); return susp_append_ce(t, susp, ER);
} }

View File

@ -496,26 +496,14 @@ int read_aaip_AA(struct susp_sys_user_entry *sue,
aapt = *aa_string + *aa_len; aapt = *aa_string + *aa_len;
aapt[0] = 'A'; aapt[0] = 'A';
#ifdef Libisofs_aaip_2_0
aapt[1] = 'L'; aapt[1] = 'L';
#else /* Libisofs_aaip_2_0 */
aapt[1] = 'A';
#endif /* ! Libisofs_aaip_2_0 */
aapt[2] = sue->len_sue[0]; aapt[2] = sue->len_sue[0];
aapt[3] = 1; aapt[3] = 1;
aapt[4] = 0; aapt[4] = 0;
/* Append sue payload */
#ifdef Libisofs_aaip_2_0 /* Append sue payload */
memcpy(aapt + 5, sue->data.AL.comps, sue->len_sue[0] - 5); memcpy(aapt + 5, sue->data.AL.comps, sue->len_sue[0] - 5);
*is_done = !(sue->data.AL.flags[0] & 1); *is_done = !(sue->data.AL.flags[0] & 1);
#else /* Libisofs_aaip_2_0 */
memcpy(aapt + 5, sue->data.AA.comps, sue->len_sue[0] - 5);
*is_done = !(sue->data.AA.flags[0] & 1);
#endif /* ! Libisofs_aaip_2_0 */
*aa_len += sue->len_sue[0]; *aa_len += sue->len_sue[0];
return ISO_SUCCESS; return ISO_SUCCESS;
@ -558,26 +546,14 @@ int read_aaip_AL(struct susp_sys_user_entry *sue,
aapt = *aa_string + *aa_len; aapt = *aa_string + *aa_len;
aapt[0] = 'A'; aapt[0] = 'A';
#ifdef Libisofs_aaip_2_0
aapt[1] = 'L'; aapt[1] = 'L';
#else /* Libisofs_aaip_2_0 */
aapt[1] = 'A';
#endif /* ! Libisofs_aaip_2_0 */
aapt[2] = sue->len_sue[0]; aapt[2] = sue->len_sue[0];
aapt[3] = 1; aapt[3] = 1;
aapt[4] = 0; aapt[4] = 0;
/* Append sue payload */
#ifdef Libisofs_aaip_2_0 /* Append sue payload */
memcpy(aapt + 5, sue->data.AL.comps, sue->len_sue[0] - 5); memcpy(aapt + 5, sue->data.AL.comps, sue->len_sue[0] - 5);
*is_done = !(sue->data.AL.flags[0] & 1); *is_done = !(sue->data.AL.flags[0] & 1);
#else /* Libisofs_aaip_2_0 */
memcpy(aapt + 5, sue->data.AA.comps, sue->len_sue[0] - 5);
*is_done = !(sue->data.AA.flags[0] & 1);
#endif /* ! Libisofs_aaip_2_0 */
*aa_len += sue->len_sue[0]; *aa_len += sue->len_sue[0];
return ISO_SUCCESS; return ISO_SUCCESS;