int noit_conf_check_set_attr(noit_console_closure_t ncct, int argc, char **argv, noit_console_state_t *state, void *closure) { struct _valid_attr_t *attrinfo = closure; noit_conf_t_userdata_t *info; info = noit_console_userdata_get(ncct, NOIT_CONF_T_USERDATA); if(!info || validate_attr_set_scope(info, attrinfo)) { nc_printf(ncct, "'%s' attribute only valid in %s scope\n", attrinfo->name, attrinfo->scope); return -1; } if(argc != 1) { nc_printf(ncct, "set requires exactly one value\n"); return -1; } /* Okay, we have an attribute and it should be set/replaced on the * current path. */ if(replace_attr(ncct, info, attrinfo, argv[0])) { return -1; } /* So, we updated an attribute, so we need to reload all checks * that are descendent-or-self of this node. */ if(!strncmp(info->path, "/checks", strlen("/checks"))) refresh_subchecks(ncct, info); if(!strncmp(info->path, "/filtersets", strlen("/filtersets"))) noit_refresh_filtersets(ncct, info); return 0; }
XMLNode &XMLNode::operator =(const XMLNodePtr n) { contextptr = n->contextptr; name(n->name()); type(n->type()); replace_attr(n->get_attrmap()); nodelist=n->nodelist; data(n->data()); return *this; };
static const char * replace_attr_refresh_hack (const char *p, int size, FILE *fp, const char *new_text, int timeout) { /* "0; URL=..." */ char *new_with_timeout = (char *)alloca (numdigit (timeout) + 6 /* "; URL=" */ + strlen (new_text) + 1); sprintf (new_with_timeout, "%d; URL=%s", timeout, new_text); return replace_attr (p, size, fp, new_with_timeout); }
/* Change the links in one file. LINKS is a list of links in the document, along with their positions and the desired direction of the conversion. */ static void convert_links (const char *file, struct urlpos *links) { struct file_memory *fm; FILE *fp; const char *p; downloaded_file_t downloaded_file_return; struct urlpos *link; int to_url_count = 0, to_file_count = 0; logprintf (LOG_VERBOSE, _("Converting %s... "), file); { /* First we do a "dry run": go through the list L and see whether any URL needs to be converted in the first place. If not, just leave the file alone. */ int dry_count = 0; struct urlpos *dry; for (dry = links; dry; dry = dry->next) if (dry->convert != CO_NOCONVERT) ++dry_count; if (!dry_count) { logputs (LOG_VERBOSE, _("nothing to do.\n")); return; } } fm = wget_read_file (file); if (!fm) { logprintf (LOG_NOTQUIET, _("Cannot convert links in %s: %s\n"), file, strerror (errno)); return; } downloaded_file_return = downloaded_file (CHECK_FOR_FILE, file); if (opt.backup_converted && downloaded_file_return) write_backup_file (file, downloaded_file_return); /* Before opening the file for writing, unlink the file. This is important if the data in FM is mmaped. In such case, nulling the file, which is what fopen() below does, would make us read all zeroes from the mmaped region. */ if (unlink (file) < 0 && errno != ENOENT) { logprintf (LOG_NOTQUIET, _("Unable to delete %s: %s\n"), quote (file), strerror (errno)); wget_read_file_free (fm); return; } /* Now open the file for writing. */ fp = fopen (file, "wb"); if (!fp) { logprintf (LOG_NOTQUIET, _("Cannot convert links in %s: %s\n"), file, strerror (errno)); wget_read_file_free (fm); return; } /* Here we loop through all the URLs in file, replacing those of them that are downloaded with relative references. */ p = fm->content; for (link = links; link; link = link->next) { char *url_start = fm->content + link->pos; if (link->pos >= fm->length) { DEBUGP (("Something strange is going on. Please investigate.")); break; } /* If the URL is not to be converted, skip it. */ if (link->convert == CO_NOCONVERT) { DEBUGP (("Skipping %s at position %d.\n", link->url->url, link->pos)); continue; } /* Echo the file contents, up to the offending URL's opening quote, to the outfile. */ fwrite (p, 1, url_start - p, fp); p = url_start; switch (link->convert) { case CO_CONVERT_TO_RELATIVE: /* Convert absolute URL to relative. */ { char *newname = construct_relative (file, link->local_name); char *quoted_newname = local_quote_string (newname, link->link_css_p); if (link->link_css_p) p = replace_plain (p, link->size, fp, quoted_newname); else if (!link->link_refresh_p) p = replace_attr (p, link->size, fp, quoted_newname); else p = replace_attr_refresh_hack (p, link->size, fp, quoted_newname, link->refresh_timeout); DEBUGP (("TO_RELATIVE: %s to %s at position %d in %s.\n", link->url->url, newname, link->pos, file)); xfree (newname); xfree (quoted_newname); ++to_file_count; break; } case CO_CONVERT_TO_COMPLETE: /* Convert the link to absolute URL. */ { char *newlink = link->url->url; char *quoted_newlink = html_quote_string (newlink); if (link->link_css_p) p = replace_plain (p, link->size, fp, newlink); else if (!link->link_refresh_p) p = replace_attr (p, link->size, fp, quoted_newlink); else p = replace_attr_refresh_hack (p, link->size, fp, quoted_newlink, link->refresh_timeout); DEBUGP (("TO_COMPLETE: <something> to %s at position %d in %s.\n", newlink, link->pos, file)); xfree (quoted_newlink); ++to_url_count; break; } case CO_NULLIFY_BASE: /* Change the base href to "". */ p = replace_attr (p, link->size, fp, ""); break; case CO_NOCONVERT: abort (); break; } } /* Output the rest of the file. */ if (p - fm->content < fm->length) fwrite (p, 1, fm->length - (p - fm->content), fp); fclose (fp); wget_read_file_free (fm); logprintf (LOG_VERBOSE, "%d-%d\n", to_file_count, to_url_count); }