def generate_samples(grammar_dir, outfiles): """Generates a set of samples and writes them to the output files. Args: grammar_dir: directory to load grammar files from. outfiles: A list of output filenames. """ f = open(os.path.join(grammar_dir, 'template.html')) template = f.read() f.close() htmlgrammar = Grammar() err = htmlgrammar.parse_from_file(os.path.join(grammar_dir, 'html.txt')) # CheckGrammar(htmlgrammar) if err > 0: print('There were errors parsing grammar') return cssgrammar = Grammar() err = cssgrammar.parse_from_file(os.path.join(grammar_dir, 'css.txt')) # CheckGrammar(cssgrammar) if err > 0: print('There were errors parsing grammar') return jsgrammar = Grammar() err = jsgrammar.parse_from_file(os.path.join(grammar_dir, 'js.txt')) # CheckGrammar(jsgrammar) if err > 0: print('There were errors parsing grammar') return # JS and HTML grammar need access to CSS grammar. # Add it as import htmlgrammar.add_import('cssgrammar', cssgrammar) jsgrammar.add_import('cssgrammar', cssgrammar) ttt = 0 for outfile in outfiles: ttt += 1 result = generate_new_sample(template, htmlgrammar, cssgrammar, jsgrammar, g=ttt, fi=outfile) #F:/domato/curpus/ if result is not None: print('Writing a sample to ' + outfile) try: f = open(outfile, 'w') f.write(result) f.close() except IOError: print('Error writing to output')
def generate_samples(grammar_dir, outfiles): """Generates a set of samples and writes them to the output files. Args: grammar_dir: directory to load grammar files from. outfiles: A list of output filenames. """ f = open(os.path.join(grammar_dir, 'template.html')) template = f.read() f.close() htmlgrammar = Grammar() err = htmlgrammar.parse_from_file(os.path.join(grammar_dir, 'html.txt')) # CheckGrammar(htmlgrammar) if err > 0: print('There were errors parsing grammar') return cssgrammar = Grammar() err = cssgrammar.parse_from_file(os.path.join(grammar_dir, 'css.txt')) # CheckGrammar(cssgrammar) if err > 0: print('There were errors parsing grammar') return jsgrammar = Grammar() err = jsgrammar.parse_from_file(os.path.join(grammar_dir, 'js.txt')) # CheckGrammar(jsgrammar) if err > 0: print('There were errors parsing grammar') return # JS and HTML grammar need access to CSS grammar. # Add it as import htmlgrammar.add_import('cssgrammar', cssgrammar) jsgrammar.add_import('cssgrammar', cssgrammar) for outfile in outfiles: result = generate_new_sample(template, htmlgrammar, cssgrammar, jsgrammar) if result is not None: print('Writing a sample to ' + outfile) try: f = open(outfile, 'w') f.write(result) f.close() except IOError: print('Error writing to output')
def generate_samples(template, outfiles): """Generates a set of samples and writes them to the output files. Args: grammar_dir: directory to load grammar files from. outfiles: A list of output filenames. """ grammar_dir = os.path.join(os.path.dirname(__file__), 'rules') htmlgrammar = Grammar() err = htmlgrammar.parse_from_file(os.path.join(grammar_dir, 'html.txt')) # CheckGrammar(htmlgrammar) if err > 0: print('There were errors parsing html grammar') return cssgrammar = Grammar() err = cssgrammar.parse_from_file(os.path.join(grammar_dir, 'css.txt')) # CheckGrammar(cssgrammar) if err > 0: print('There were errors parsing css grammar') return jsgrammar = Grammar() err = jsgrammar.parse_from_file(os.path.join(grammar_dir, 'js.txt')) # CheckGrammar(jsgrammar) if err > 0: print('There were errors parsing js grammar') return # JS and HTML grammar need access to CSS grammar. # Add it as import htmlgrammar.add_import('cssgrammar', cssgrammar) jsgrammar.add_import('cssgrammar', cssgrammar) for outfile in outfiles: result = generate_new_sample(template, htmlgrammar, cssgrammar, jsgrammar) if result is not None: print('Writing a sample to ' + outfile) try: with open(outfile, 'w') as f: f.write(result) except IOError: print('Error writing to output')
# CheckGrammar(htmlgrammar) if err > 0: print('There were errors parsing grammar') sys.exit() cssgrammar = Grammar() err = cssgrammar.parse_from_file(os.path.join(grammar_dir, 'css.txt')) # CheckGrammar(cssgrammar) if err > 0: print('There were errors parsing grammar') sys.exit() jsgrammar = Grammar() err = jsgrammar.parse_from_file(os.path.join(grammar_dir, 'js.txt')) # CheckGrammar(jsgrammar) if err > 0: print('There were errors parsing grammar') sys.exit() # JS and HTML grammar need access to CSS grammar. # Add it as import htmlgrammar.add_import('cssgrammar', cssgrammar) jsgrammar.add_import('cssgrammar', cssgrammar) port = int(os.environ.get("PORT", 5000)) print('Server listening on port ' + str(port) + '...') httpd = socketserver.TCPServer(('', port), Handler) httpd.serve_forever()