repo
stringlengths
7
55
path
stringlengths
4
127
func_name
stringlengths
1
88
original_string
stringlengths
75
19.8k
language
stringclasses
1 value
code
stringlengths
75
19.8k
code_tokens
listlengths
20
707
docstring
stringlengths
3
17.3k
docstring_tokens
listlengths
3
222
sha
stringlengths
40
40
url
stringlengths
87
242
partition
stringclasses
1 value
idx
int64
0
252k
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
SubstitutionEnvironment.RemoveMethod
def RemoveMethod(self, function): """ Removes the specified function's MethodWrapper from the added_methods list, so we don't re-bind it when making a clone. """ self.added_methods = [dm for dm in self.added_methods if not dm.method is function]
python
def RemoveMethod(self, function): """ Removes the specified function's MethodWrapper from the added_methods list, so we don't re-bind it when making a clone. """ self.added_methods = [dm for dm in self.added_methods if not dm.method is function]
[ "def", "RemoveMethod", "(", "self", ",", "function", ")", ":", "self", ".", "added_methods", "=", "[", "dm", "for", "dm", "in", "self", ".", "added_methods", "if", "not", "dm", ".", "method", "is", "function", "]" ]
Removes the specified function's MethodWrapper from the added_methods list, so we don't re-bind it when making a clone.
[ "Removes", "the", "specified", "function", "s", "MethodWrapper", "from", "the", "added_methods", "list", "so", "we", "don", "t", "re", "-", "bind", "it", "when", "making", "a", "clone", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L606-L611
train
21,700
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
SubstitutionEnvironment.Override
def Override(self, overrides): """ Produce a modified environment whose variables are overridden by the overrides dictionaries. "overrides" is a dictionary that will override the variables of this environment. This function is much more efficient than Clone() or creating a new Environment because it doesn't copy the construction environment dictionary, it just wraps the underlying construction environment, and doesn't even create a wrapper object if there are no overrides. """ if not overrides: return self o = copy_non_reserved_keywords(overrides) if not o: return self overrides = {} merges = None for key, value in o.items(): if key == 'parse_flags': merges = value else: overrides[key] = SCons.Subst.scons_subst_once(value, self, key) env = OverrideEnvironment(self, overrides) if merges: env.MergeFlags(merges) return env
python
def Override(self, overrides): """ Produce a modified environment whose variables are overridden by the overrides dictionaries. "overrides" is a dictionary that will override the variables of this environment. This function is much more efficient than Clone() or creating a new Environment because it doesn't copy the construction environment dictionary, it just wraps the underlying construction environment, and doesn't even create a wrapper object if there are no overrides. """ if not overrides: return self o = copy_non_reserved_keywords(overrides) if not o: return self overrides = {} merges = None for key, value in o.items(): if key == 'parse_flags': merges = value else: overrides[key] = SCons.Subst.scons_subst_once(value, self, key) env = OverrideEnvironment(self, overrides) if merges: env.MergeFlags(merges) return env
[ "def", "Override", "(", "self", ",", "overrides", ")", ":", "if", "not", "overrides", ":", "return", "self", "o", "=", "copy_non_reserved_keywords", "(", "overrides", ")", "if", "not", "o", ":", "return", "self", "overrides", "=", "{", "}", "merges", "="...
Produce a modified environment whose variables are overridden by the overrides dictionaries. "overrides" is a dictionary that will override the variables of this environment. This function is much more efficient than Clone() or creating a new Environment because it doesn't copy the construction environment dictionary, it just wraps the underlying construction environment, and doesn't even create a wrapper object if there are no overrides.
[ "Produce", "a", "modified", "environment", "whose", "variables", "are", "overridden", "by", "the", "overrides", "dictionaries", ".", "overrides", "is", "a", "dictionary", "that", "will", "override", "the", "variables", "of", "this", "environment", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L613-L637
train
21,701
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
SubstitutionEnvironment.MergeFlags
def MergeFlags(self, args, unique=1, dict=None): """ Merge the dict in args into the construction variables of this env, or the passed-in dict. If args is not a dict, it is converted into a dict using ParseFlags. If unique is not set, the flags are appended rather than merged. """ if dict is None: dict = self if not SCons.Util.is_Dict(args): args = self.ParseFlags(args) if not unique: self.Append(**args) return self for key, value in args.items(): if not value: continue try: orig = self[key] except KeyError: orig = value else: if not orig: orig = value elif value: # Add orig and value. The logic here was lifted from # part of env.Append() (see there for a lot of comments # about the order in which things are tried) and is # used mainly to handle coercion of strings to CLVar to # "do the right thing" given (e.g.) an original CCFLAGS # string variable like '-pipe -Wall'. try: orig = orig + value except (KeyError, TypeError): try: add_to_orig = orig.append except AttributeError: value.insert(0, orig) orig = value else: add_to_orig(value) t = [] if key[-4:] == 'PATH': ### keep left-most occurence for v in orig: if v not in t: t.append(v) else: ### keep right-most occurence orig.reverse() for v in orig: if v not in t: t.insert(0, v) self[key] = t return self
python
def MergeFlags(self, args, unique=1, dict=None): """ Merge the dict in args into the construction variables of this env, or the passed-in dict. If args is not a dict, it is converted into a dict using ParseFlags. If unique is not set, the flags are appended rather than merged. """ if dict is None: dict = self if not SCons.Util.is_Dict(args): args = self.ParseFlags(args) if not unique: self.Append(**args) return self for key, value in args.items(): if not value: continue try: orig = self[key] except KeyError: orig = value else: if not orig: orig = value elif value: # Add orig and value. The logic here was lifted from # part of env.Append() (see there for a lot of comments # about the order in which things are tried) and is # used mainly to handle coercion of strings to CLVar to # "do the right thing" given (e.g.) an original CCFLAGS # string variable like '-pipe -Wall'. try: orig = orig + value except (KeyError, TypeError): try: add_to_orig = orig.append except AttributeError: value.insert(0, orig) orig = value else: add_to_orig(value) t = [] if key[-4:] == 'PATH': ### keep left-most occurence for v in orig: if v not in t: t.append(v) else: ### keep right-most occurence orig.reverse() for v in orig: if v not in t: t.insert(0, v) self[key] = t return self
[ "def", "MergeFlags", "(", "self", ",", "args", ",", "unique", "=", "1", ",", "dict", "=", "None", ")", ":", "if", "dict", "is", "None", ":", "dict", "=", "self", "if", "not", "SCons", ".", "Util", ".", "is_Dict", "(", "args", ")", ":", "args", ...
Merge the dict in args into the construction variables of this env, or the passed-in dict. If args is not a dict, it is converted into a dict using ParseFlags. If unique is not set, the flags are appended rather than merged.
[ "Merge", "the", "dict", "in", "args", "into", "the", "construction", "variables", "of", "this", "env", "or", "the", "passed", "-", "in", "dict", ".", "If", "args", "is", "not", "a", "dict", "it", "is", "converted", "into", "a", "dict", "using", "ParseF...
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L803-L858
train
21,702
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
Base.get_factory
def get_factory(self, factory, default='File'): """Return a factory function for creating Nodes for this construction environment. """ name = default try: is_node = issubclass(factory, SCons.Node.FS.Base) except TypeError: # The specified factory isn't a Node itself--it's # most likely None, or possibly a callable. pass else: if is_node: # The specified factory is a Node (sub)class. Try to # return the FS method that corresponds to the Node's # name--that is, we return self.fs.Dir if they want a Dir, # self.fs.File for a File, etc. try: name = factory.__name__ except AttributeError: pass else: factory = None if not factory: # They passed us None, or we picked up a name from a specified # class, so return the FS method. (Note that we *don't* # use our own self.{Dir,File} methods because that would # cause env.subst() to be called twice on the file name, # interfering with files that have $$ in them.) factory = getattr(self.fs, name) return factory
python
def get_factory(self, factory, default='File'): """Return a factory function for creating Nodes for this construction environment. """ name = default try: is_node = issubclass(factory, SCons.Node.FS.Base) except TypeError: # The specified factory isn't a Node itself--it's # most likely None, or possibly a callable. pass else: if is_node: # The specified factory is a Node (sub)class. Try to # return the FS method that corresponds to the Node's # name--that is, we return self.fs.Dir if they want a Dir, # self.fs.File for a File, etc. try: name = factory.__name__ except AttributeError: pass else: factory = None if not factory: # They passed us None, or we picked up a name from a specified # class, so return the FS method. (Note that we *don't* # use our own self.{Dir,File} methods because that would # cause env.subst() to be called twice on the file name, # interfering with files that have $$ in them.) factory = getattr(self.fs, name) return factory
[ "def", "get_factory", "(", "self", ",", "factory", ",", "default", "=", "'File'", ")", ":", "name", "=", "default", "try", ":", "is_node", "=", "issubclass", "(", "factory", ",", "SCons", ".", "Node", ".", "FS", ".", "Base", ")", "except", "TypeError",...
Return a factory function for creating Nodes for this construction environment.
[ "Return", "a", "factory", "function", "for", "creating", "Nodes", "for", "this", "construction", "environment", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L1021-L1048
train
21,703
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
Base.Append
def Append(self, **kw): """Append values to existing construction variables in an Environment. """ kw = copy_non_reserved_keywords(kw) for key, val in kw.items(): # It would be easier on the eyes to write this using # "continue" statements whenever we finish processing an item, # but Python 1.5.2 apparently doesn't let you use "continue" # within try:-except: blocks, so we have to nest our code. try: if key == 'CPPDEFINES' and SCons.Util.is_String(self._dict[key]): self._dict[key] = [self._dict[key]] orig = self._dict[key] except KeyError: # No existing variable in the environment, so just set # it to the new value. if key == 'CPPDEFINES' and SCons.Util.is_String(val): self._dict[key] = [val] else: self._dict[key] = val else: try: # Check if the original looks like a dictionary. # If it is, we can't just try adding the value because # dictionaries don't have __add__() methods, and # things like UserList will incorrectly coerce the # original dict to a list (which we don't want). update_dict = orig.update except AttributeError: try: # Most straightforward: just try to add them # together. This will work in most cases, when the # original and new values are of compatible types. self._dict[key] = orig + val except (KeyError, TypeError): try: # Check if the original is a list. add_to_orig = orig.append except AttributeError: # The original isn't a list, but the new # value is (by process of elimination), # so insert the original in the new value # (if there's one to insert) and replace # the variable with it. if orig: val.insert(0, orig) self._dict[key] = val else: # The original is a list, so append the new # value to it (if there's a value to append). if val: add_to_orig(val) else: # The original looks like a dictionary, so update it # based on what we think the value looks like. if SCons.Util.is_List(val): if key == 'CPPDEFINES': tmp = [] for (k, v) in orig.items(): if v is not None: tmp.append((k, v)) else: tmp.append((k,)) orig = tmp orig += val self._dict[key] = orig else: for v in val: orig[v] = None else: try: update_dict(val) except (AttributeError, TypeError, ValueError): if SCons.Util.is_Dict(val): for k, v in val.items(): orig[k] = v else: orig[val] = None self.scanner_map_delete(kw)
python
def Append(self, **kw): """Append values to existing construction variables in an Environment. """ kw = copy_non_reserved_keywords(kw) for key, val in kw.items(): # It would be easier on the eyes to write this using # "continue" statements whenever we finish processing an item, # but Python 1.5.2 apparently doesn't let you use "continue" # within try:-except: blocks, so we have to nest our code. try: if key == 'CPPDEFINES' and SCons.Util.is_String(self._dict[key]): self._dict[key] = [self._dict[key]] orig = self._dict[key] except KeyError: # No existing variable in the environment, so just set # it to the new value. if key == 'CPPDEFINES' and SCons.Util.is_String(val): self._dict[key] = [val] else: self._dict[key] = val else: try: # Check if the original looks like a dictionary. # If it is, we can't just try adding the value because # dictionaries don't have __add__() methods, and # things like UserList will incorrectly coerce the # original dict to a list (which we don't want). update_dict = orig.update except AttributeError: try: # Most straightforward: just try to add them # together. This will work in most cases, when the # original and new values are of compatible types. self._dict[key] = orig + val except (KeyError, TypeError): try: # Check if the original is a list. add_to_orig = orig.append except AttributeError: # The original isn't a list, but the new # value is (by process of elimination), # so insert the original in the new value # (if there's one to insert) and replace # the variable with it. if orig: val.insert(0, orig) self._dict[key] = val else: # The original is a list, so append the new # value to it (if there's a value to append). if val: add_to_orig(val) else: # The original looks like a dictionary, so update it # based on what we think the value looks like. if SCons.Util.is_List(val): if key == 'CPPDEFINES': tmp = [] for (k, v) in orig.items(): if v is not None: tmp.append((k, v)) else: tmp.append((k,)) orig = tmp orig += val self._dict[key] = orig else: for v in val: orig[v] = None else: try: update_dict(val) except (AttributeError, TypeError, ValueError): if SCons.Util.is_Dict(val): for k, v in val.items(): orig[k] = v else: orig[val] = None self.scanner_map_delete(kw)
[ "def", "Append", "(", "self", ",", "*", "*", "kw", ")", ":", "kw", "=", "copy_non_reserved_keywords", "(", "kw", ")", "for", "key", ",", "val", "in", "kw", ".", "items", "(", ")", ":", "# It would be easier on the eyes to write this using", "# \"continue\" sta...
Append values to existing construction variables in an Environment.
[ "Append", "values", "to", "existing", "construction", "variables", "in", "an", "Environment", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L1129-L1208
train
21,704
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
Base.AppendENVPath
def AppendENVPath(self, name, newpath, envname = 'ENV', sep = os.pathsep, delete_existing=1): """Append path elements to the path 'name' in the 'ENV' dictionary for this environment. Will only add any particular path once, and will normpath and normcase all paths to help assure this. This can also handle the case where the env variable is a list instead of a string. If delete_existing is 0, a newpath which is already in the path will not be moved to the end (it will be left where it is). """ orig = '' if envname in self._dict and name in self._dict[envname]: orig = self._dict[envname][name] nv = SCons.Util.AppendPath(orig, newpath, sep, delete_existing, canonicalize=self._canonicalize) if envname not in self._dict: self._dict[envname] = {} self._dict[envname][name] = nv
python
def AppendENVPath(self, name, newpath, envname = 'ENV', sep = os.pathsep, delete_existing=1): """Append path elements to the path 'name' in the 'ENV' dictionary for this environment. Will only add any particular path once, and will normpath and normcase all paths to help assure this. This can also handle the case where the env variable is a list instead of a string. If delete_existing is 0, a newpath which is already in the path will not be moved to the end (it will be left where it is). """ orig = '' if envname in self._dict and name in self._dict[envname]: orig = self._dict[envname][name] nv = SCons.Util.AppendPath(orig, newpath, sep, delete_existing, canonicalize=self._canonicalize) if envname not in self._dict: self._dict[envname] = {} self._dict[envname][name] = nv
[ "def", "AppendENVPath", "(", "self", ",", "name", ",", "newpath", ",", "envname", "=", "'ENV'", ",", "sep", "=", "os", ".", "pathsep", ",", "delete_existing", "=", "1", ")", ":", "orig", "=", "''", "if", "envname", "in", "self", ".", "_dict", "and", ...
Append path elements to the path 'name' in the 'ENV' dictionary for this environment. Will only add any particular path once, and will normpath and normcase all paths to help assure this. This can also handle the case where the env variable is a list instead of a string. If delete_existing is 0, a newpath which is already in the path will not be moved to the end (it will be left where it is).
[ "Append", "path", "elements", "to", "the", "path", "name", "in", "the", "ENV", "dictionary", "for", "this", "environment", ".", "Will", "only", "add", "any", "particular", "path", "once", "and", "will", "normpath", "and", "normcase", "all", "paths", "to", ...
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L1219-L1241
train
21,705
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
Base.Detect
def Detect(self, progs): """Return the first available program in progs. """ if not SCons.Util.is_List(progs): progs = [ progs ] for prog in progs: path = self.WhereIs(prog) if path: return prog return None
python
def Detect(self, progs): """Return the first available program in progs. """ if not SCons.Util.is_List(progs): progs = [ progs ] for prog in progs: path = self.WhereIs(prog) if path: return prog return None
[ "def", "Detect", "(", "self", ",", "progs", ")", ":", "if", "not", "SCons", ".", "Util", ".", "is_List", "(", "progs", ")", ":", "progs", "=", "[", "progs", "]", "for", "prog", "in", "progs", ":", "path", "=", "self", ".", "WhereIs", "(", "prog",...
Return the first available program in progs.
[ "Return", "the", "first", "available", "program", "in", "progs", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L1486-L1494
train
21,706
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
Base.Dump
def Dump(self, key = None): """ Using the standard Python pretty printer, return the contents of the scons build environment as a string. If the key passed in is anything other than None, then that will be used as an index into the build environment dictionary and whatever is found there will be fed into the pretty printer. Note that this key is case sensitive. """ import pprint pp = pprint.PrettyPrinter(indent=2) if key: dict = self.Dictionary(key) else: dict = self.Dictionary() return pp.pformat(dict)
python
def Dump(self, key = None): """ Using the standard Python pretty printer, return the contents of the scons build environment as a string. If the key passed in is anything other than None, then that will be used as an index into the build environment dictionary and whatever is found there will be fed into the pretty printer. Note that this key is case sensitive. """ import pprint pp = pprint.PrettyPrinter(indent=2) if key: dict = self.Dictionary(key) else: dict = self.Dictionary() return pp.pformat(dict)
[ "def", "Dump", "(", "self", ",", "key", "=", "None", ")", ":", "import", "pprint", "pp", "=", "pprint", ".", "PrettyPrinter", "(", "indent", "=", "2", ")", "if", "key", ":", "dict", "=", "self", ".", "Dictionary", "(", "key", ")", "else", ":", "d...
Using the standard Python pretty printer, return the contents of the scons build environment as a string. If the key passed in is anything other than None, then that will be used as an index into the build environment dictionary and whatever is found there will be fed into the pretty printer. Note that this key is case sensitive.
[ "Using", "the", "standard", "Python", "pretty", "printer", "return", "the", "contents", "of", "the", "scons", "build", "environment", "as", "a", "string", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L1504-L1520
train
21,707
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
Base.FindIxes
def FindIxes(self, paths, prefix, suffix): """ Search a list of paths for something that matches the prefix and suffix. paths - the list of paths or nodes. prefix - construction variable for the prefix. suffix - construction variable for the suffix. """ suffix = self.subst('$'+suffix) prefix = self.subst('$'+prefix) for path in paths: dir,name = os.path.split(str(path)) if name[:len(prefix)] == prefix and name[-len(suffix):] == suffix: return path
python
def FindIxes(self, paths, prefix, suffix): """ Search a list of paths for something that matches the prefix and suffix. paths - the list of paths or nodes. prefix - construction variable for the prefix. suffix - construction variable for the suffix. """ suffix = self.subst('$'+suffix) prefix = self.subst('$'+prefix) for path in paths: dir,name = os.path.split(str(path)) if name[:len(prefix)] == prefix and name[-len(suffix):] == suffix: return path
[ "def", "FindIxes", "(", "self", ",", "paths", ",", "prefix", ",", "suffix", ")", ":", "suffix", "=", "self", ".", "subst", "(", "'$'", "+", "suffix", ")", "prefix", "=", "self", ".", "subst", "(", "'$'", "+", "prefix", ")", "for", "path", "in", "...
Search a list of paths for something that matches the prefix and suffix. paths - the list of paths or nodes. prefix - construction variable for the prefix. suffix - construction variable for the suffix.
[ "Search", "a", "list", "of", "paths", "for", "something", "that", "matches", "the", "prefix", "and", "suffix", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L1522-L1537
train
21,708
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
Base.ParseDepends
def ParseDepends(self, filename, must_exist=None, only_one=0): """ Parse a mkdep-style file for explicit dependencies. This is completely abusable, and should be unnecessary in the "normal" case of proper SCons configuration, but it may help make the transition from a Make hierarchy easier for some people to swallow. It can also be genuinely useful when using a tool that can write a .d file, but for which writing a scanner would be too complicated. """ filename = self.subst(filename) try: fp = open(filename, 'r') except IOError: if must_exist: raise return lines = SCons.Util.LogicalLines(fp).readlines() lines = [l for l in lines if l[0] != '#'] tdlist = [] for line in lines: try: target, depends = line.split(':', 1) except (AttributeError, ValueError): # Throws AttributeError if line isn't a string. Can throw # ValueError if line doesn't split into two or more elements. pass else: tdlist.append((target.split(), depends.split())) if only_one: targets = [] for td in tdlist: targets.extend(td[0]) if len(targets) > 1: raise SCons.Errors.UserError( "More than one dependency target found in `%s': %s" % (filename, targets)) for target, depends in tdlist: self.Depends(target, depends)
python
def ParseDepends(self, filename, must_exist=None, only_one=0): """ Parse a mkdep-style file for explicit dependencies. This is completely abusable, and should be unnecessary in the "normal" case of proper SCons configuration, but it may help make the transition from a Make hierarchy easier for some people to swallow. It can also be genuinely useful when using a tool that can write a .d file, but for which writing a scanner would be too complicated. """ filename = self.subst(filename) try: fp = open(filename, 'r') except IOError: if must_exist: raise return lines = SCons.Util.LogicalLines(fp).readlines() lines = [l for l in lines if l[0] != '#'] tdlist = [] for line in lines: try: target, depends = line.split(':', 1) except (AttributeError, ValueError): # Throws AttributeError if line isn't a string. Can throw # ValueError if line doesn't split into two or more elements. pass else: tdlist.append((target.split(), depends.split())) if only_one: targets = [] for td in tdlist: targets.extend(td[0]) if len(targets) > 1: raise SCons.Errors.UserError( "More than one dependency target found in `%s': %s" % (filename, targets)) for target, depends in tdlist: self.Depends(target, depends)
[ "def", "ParseDepends", "(", "self", ",", "filename", ",", "must_exist", "=", "None", ",", "only_one", "=", "0", ")", ":", "filename", "=", "self", ".", "subst", "(", "filename", ")", "try", ":", "fp", "=", "open", "(", "filename", ",", "'r'", ")", ...
Parse a mkdep-style file for explicit dependencies. This is completely abusable, and should be unnecessary in the "normal" case of proper SCons configuration, but it may help make the transition from a Make hierarchy easier for some people to swallow. It can also be genuinely useful when using a tool that can write a .d file, but for which writing a scanner would be too complicated.
[ "Parse", "a", "mkdep", "-", "style", "file", "for", "explicit", "dependencies", ".", "This", "is", "completely", "abusable", "and", "should", "be", "unnecessary", "in", "the", "normal", "case", "of", "proper", "SCons", "configuration", "but", "it", "may", "h...
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L1559-L1597
train
21,709
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
Base.Prepend
def Prepend(self, **kw): """Prepend values to existing construction variables in an Environment. """ kw = copy_non_reserved_keywords(kw) for key, val in kw.items(): # It would be easier on the eyes to write this using # "continue" statements whenever we finish processing an item, # but Python 1.5.2 apparently doesn't let you use "continue" # within try:-except: blocks, so we have to nest our code. try: orig = self._dict[key] except KeyError: # No existing variable in the environment, so just set # it to the new value. self._dict[key] = val else: try: # Check if the original looks like a dictionary. # If it is, we can't just try adding the value because # dictionaries don't have __add__() methods, and # things like UserList will incorrectly coerce the # original dict to a list (which we don't want). update_dict = orig.update except AttributeError: try: # Most straightforward: just try to add them # together. This will work in most cases, when the # original and new values are of compatible types. self._dict[key] = val + orig except (KeyError, TypeError): try: # Check if the added value is a list. add_to_val = val.append except AttributeError: # The added value isn't a list, but the # original is (by process of elimination), # so insert the the new value in the original # (if there's one to insert). if val: orig.insert(0, val) else: # The added value is a list, so append # the original to it (if there's a value # to append). if orig: add_to_val(orig) self._dict[key] = val else: # The original looks like a dictionary, so update it # based on what we think the value looks like. if SCons.Util.is_List(val): for v in val: orig[v] = None else: try: update_dict(val) except (AttributeError, TypeError, ValueError): if SCons.Util.is_Dict(val): for k, v in val.items(): orig[k] = v else: orig[val] = None self.scanner_map_delete(kw)
python
def Prepend(self, **kw): """Prepend values to existing construction variables in an Environment. """ kw = copy_non_reserved_keywords(kw) for key, val in kw.items(): # It would be easier on the eyes to write this using # "continue" statements whenever we finish processing an item, # but Python 1.5.2 apparently doesn't let you use "continue" # within try:-except: blocks, so we have to nest our code. try: orig = self._dict[key] except KeyError: # No existing variable in the environment, so just set # it to the new value. self._dict[key] = val else: try: # Check if the original looks like a dictionary. # If it is, we can't just try adding the value because # dictionaries don't have __add__() methods, and # things like UserList will incorrectly coerce the # original dict to a list (which we don't want). update_dict = orig.update except AttributeError: try: # Most straightforward: just try to add them # together. This will work in most cases, when the # original and new values are of compatible types. self._dict[key] = val + orig except (KeyError, TypeError): try: # Check if the added value is a list. add_to_val = val.append except AttributeError: # The added value isn't a list, but the # original is (by process of elimination), # so insert the the new value in the original # (if there's one to insert). if val: orig.insert(0, val) else: # The added value is a list, so append # the original to it (if there's a value # to append). if orig: add_to_val(orig) self._dict[key] = val else: # The original looks like a dictionary, so update it # based on what we think the value looks like. if SCons.Util.is_List(val): for v in val: orig[v] = None else: try: update_dict(val) except (AttributeError, TypeError, ValueError): if SCons.Util.is_Dict(val): for k, v in val.items(): orig[k] = v else: orig[val] = None self.scanner_map_delete(kw)
[ "def", "Prepend", "(", "self", ",", "*", "*", "kw", ")", ":", "kw", "=", "copy_non_reserved_keywords", "(", "kw", ")", "for", "key", ",", "val", "in", "kw", ".", "items", "(", ")", ":", "# It would be easier on the eyes to write this using", "# \"continue\" st...
Prepend values to existing construction variables in an Environment.
[ "Prepend", "values", "to", "existing", "construction", "variables", "in", "an", "Environment", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L1603-L1666
train
21,710
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
Base.PrependENVPath
def PrependENVPath(self, name, newpath, envname = 'ENV', sep = os.pathsep, delete_existing=1): """Prepend path elements to the path 'name' in the 'ENV' dictionary for this environment. Will only add any particular path once, and will normpath and normcase all paths to help assure this. This can also handle the case where the env variable is a list instead of a string. If delete_existing is 0, a newpath which is already in the path will not be moved to the front (it will be left where it is). """ orig = '' if envname in self._dict and name in self._dict[envname]: orig = self._dict[envname][name] nv = SCons.Util.PrependPath(orig, newpath, sep, delete_existing, canonicalize=self._canonicalize) if envname not in self._dict: self._dict[envname] = {} self._dict[envname][name] = nv
python
def PrependENVPath(self, name, newpath, envname = 'ENV', sep = os.pathsep, delete_existing=1): """Prepend path elements to the path 'name' in the 'ENV' dictionary for this environment. Will only add any particular path once, and will normpath and normcase all paths to help assure this. This can also handle the case where the env variable is a list instead of a string. If delete_existing is 0, a newpath which is already in the path will not be moved to the front (it will be left where it is). """ orig = '' if envname in self._dict and name in self._dict[envname]: orig = self._dict[envname][name] nv = SCons.Util.PrependPath(orig, newpath, sep, delete_existing, canonicalize=self._canonicalize) if envname not in self._dict: self._dict[envname] = {} self._dict[envname][name] = nv
[ "def", "PrependENVPath", "(", "self", ",", "name", ",", "newpath", ",", "envname", "=", "'ENV'", ",", "sep", "=", "os", ".", "pathsep", ",", "delete_existing", "=", "1", ")", ":", "orig", "=", "''", "if", "envname", "in", "self", ".", "_dict", "and",...
Prepend path elements to the path 'name' in the 'ENV' dictionary for this environment. Will only add any particular path once, and will normpath and normcase all paths to help assure this. This can also handle the case where the env variable is a list instead of a string. If delete_existing is 0, a newpath which is already in the path will not be moved to the front (it will be left where it is).
[ "Prepend", "path", "elements", "to", "the", "path", "name", "in", "the", "ENV", "dictionary", "for", "this", "environment", ".", "Will", "only", "add", "any", "particular", "path", "once", "and", "will", "normpath", "and", "normcase", "all", "paths", "to", ...
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L1668-L1690
train
21,711
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
Base.PrependUnique
def PrependUnique(self, delete_existing=0, **kw): """Prepend values to existing construction variables in an Environment, if they're not already there. If delete_existing is 1, removes existing values first, so values move to front. """ kw = copy_non_reserved_keywords(kw) for key, val in kw.items(): if SCons.Util.is_List(val): val = _delete_duplicates(val, not delete_existing) if key not in self._dict or self._dict[key] in ('', None): self._dict[key] = val elif SCons.Util.is_Dict(self._dict[key]) and \ SCons.Util.is_Dict(val): self._dict[key].update(val) elif SCons.Util.is_List(val): dk = self._dict[key] if not SCons.Util.is_List(dk): dk = [dk] if delete_existing: dk = [x for x in dk if x not in val] else: val = [x for x in val if x not in dk] self._dict[key] = val + dk else: dk = self._dict[key] if SCons.Util.is_List(dk): # By elimination, val is not a list. Since dk is a # list, wrap val in a list first. if delete_existing: dk = [x for x in dk if x not in val] self._dict[key] = [val] + dk else: if not val in dk: self._dict[key] = [val] + dk else: if delete_existing: dk = [x for x in dk if x not in val] self._dict[key] = val + dk self.scanner_map_delete(kw)
python
def PrependUnique(self, delete_existing=0, **kw): """Prepend values to existing construction variables in an Environment, if they're not already there. If delete_existing is 1, removes existing values first, so values move to front. """ kw = copy_non_reserved_keywords(kw) for key, val in kw.items(): if SCons.Util.is_List(val): val = _delete_duplicates(val, not delete_existing) if key not in self._dict or self._dict[key] in ('', None): self._dict[key] = val elif SCons.Util.is_Dict(self._dict[key]) and \ SCons.Util.is_Dict(val): self._dict[key].update(val) elif SCons.Util.is_List(val): dk = self._dict[key] if not SCons.Util.is_List(dk): dk = [dk] if delete_existing: dk = [x for x in dk if x not in val] else: val = [x for x in val if x not in dk] self._dict[key] = val + dk else: dk = self._dict[key] if SCons.Util.is_List(dk): # By elimination, val is not a list. Since dk is a # list, wrap val in a list first. if delete_existing: dk = [x for x in dk if x not in val] self._dict[key] = [val] + dk else: if not val in dk: self._dict[key] = [val] + dk else: if delete_existing: dk = [x for x in dk if x not in val] self._dict[key] = val + dk self.scanner_map_delete(kw)
[ "def", "PrependUnique", "(", "self", ",", "delete_existing", "=", "0", ",", "*", "*", "kw", ")", ":", "kw", "=", "copy_non_reserved_keywords", "(", "kw", ")", "for", "key", ",", "val", "in", "kw", ".", "items", "(", ")", ":", "if", "SCons", ".", "U...
Prepend values to existing construction variables in an Environment, if they're not already there. If delete_existing is 1, removes existing values first, so values move to front.
[ "Prepend", "values", "to", "existing", "construction", "variables", "in", "an", "Environment", "if", "they", "re", "not", "already", "there", ".", "If", "delete_existing", "is", "1", "removes", "existing", "values", "first", "so", "values", "move", "to", "fron...
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L1692-L1731
train
21,712
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
Base.ReplaceIxes
def ReplaceIxes(self, path, old_prefix, old_suffix, new_prefix, new_suffix): """ Replace old_prefix with new_prefix and old_suffix with new_suffix. env - Environment used to interpolate variables. path - the path that will be modified. old_prefix - construction variable for the old prefix. old_suffix - construction variable for the old suffix. new_prefix - construction variable for the new prefix. new_suffix - construction variable for the new suffix. """ old_prefix = self.subst('$'+old_prefix) old_suffix = self.subst('$'+old_suffix) new_prefix = self.subst('$'+new_prefix) new_suffix = self.subst('$'+new_suffix) dir,name = os.path.split(str(path)) if name[:len(old_prefix)] == old_prefix: name = name[len(old_prefix):] if name[-len(old_suffix):] == old_suffix: name = name[:-len(old_suffix)] return os.path.join(dir, new_prefix+name+new_suffix)
python
def ReplaceIxes(self, path, old_prefix, old_suffix, new_prefix, new_suffix): """ Replace old_prefix with new_prefix and old_suffix with new_suffix. env - Environment used to interpolate variables. path - the path that will be modified. old_prefix - construction variable for the old prefix. old_suffix - construction variable for the old suffix. new_prefix - construction variable for the new prefix. new_suffix - construction variable for the new suffix. """ old_prefix = self.subst('$'+old_prefix) old_suffix = self.subst('$'+old_suffix) new_prefix = self.subst('$'+new_prefix) new_suffix = self.subst('$'+new_suffix) dir,name = os.path.split(str(path)) if name[:len(old_prefix)] == old_prefix: name = name[len(old_prefix):] if name[-len(old_suffix):] == old_suffix: name = name[:-len(old_suffix)] return os.path.join(dir, new_prefix+name+new_suffix)
[ "def", "ReplaceIxes", "(", "self", ",", "path", ",", "old_prefix", ",", "old_suffix", ",", "new_prefix", ",", "new_suffix", ")", ":", "old_prefix", "=", "self", ".", "subst", "(", "'$'", "+", "old_prefix", ")", "old_suffix", "=", "self", ".", "subst", "(...
Replace old_prefix with new_prefix and old_suffix with new_suffix. env - Environment used to interpolate variables. path - the path that will be modified. old_prefix - construction variable for the old prefix. old_suffix - construction variable for the old suffix. new_prefix - construction variable for the new prefix. new_suffix - construction variable for the new suffix.
[ "Replace", "old_prefix", "with", "new_prefix", "and", "old_suffix", "with", "new_suffix", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L1749-L1771
train
21,713
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
Base.WhereIs
def WhereIs(self, prog, path=None, pathext=None, reject=[]): """Find prog in the path. """ if path is None: try: path = self['ENV']['PATH'] except KeyError: pass elif SCons.Util.is_String(path): path = self.subst(path) if pathext is None: try: pathext = self['ENV']['PATHEXT'] except KeyError: pass elif SCons.Util.is_String(pathext): pathext = self.subst(pathext) prog = SCons.Util.CLVar(self.subst(prog)) # support "program --with-args" path = SCons.Util.WhereIs(prog[0], path, pathext, reject) if path: return path return None
python
def WhereIs(self, prog, path=None, pathext=None, reject=[]): """Find prog in the path. """ if path is None: try: path = self['ENV']['PATH'] except KeyError: pass elif SCons.Util.is_String(path): path = self.subst(path) if pathext is None: try: pathext = self['ENV']['PATHEXT'] except KeyError: pass elif SCons.Util.is_String(pathext): pathext = self.subst(pathext) prog = SCons.Util.CLVar(self.subst(prog)) # support "program --with-args" path = SCons.Util.WhereIs(prog[0], path, pathext, reject) if path: return path return None
[ "def", "WhereIs", "(", "self", ",", "prog", ",", "path", "=", "None", ",", "pathext", "=", "None", ",", "reject", "=", "[", "]", ")", ":", "if", "path", "is", "None", ":", "try", ":", "path", "=", "self", "[", "'ENV'", "]", "[", "'PATH'", "]", ...
Find prog in the path.
[ "Find", "prog", "in", "the", "path", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L1791-L1811
train
21,714
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
Base.Command
def Command(self, target, source, action, **kw): """Builds the supplied target files from the supplied source files using the supplied action. Action may be any type that the Builder constructor will accept for an action.""" bkw = { 'action' : action, 'target_factory' : self.fs.Entry, 'source_factory' : self.fs.Entry, } try: bkw['source_scanner'] = kw['source_scanner'] except KeyError: pass else: del kw['source_scanner'] bld = SCons.Builder.Builder(**bkw) return bld(self, target, source, **kw)
python
def Command(self, target, source, action, **kw): """Builds the supplied target files from the supplied source files using the supplied action. Action may be any type that the Builder constructor will accept for an action.""" bkw = { 'action' : action, 'target_factory' : self.fs.Entry, 'source_factory' : self.fs.Entry, } try: bkw['source_scanner'] = kw['source_scanner'] except KeyError: pass else: del kw['source_scanner'] bld = SCons.Builder.Builder(**bkw) return bld(self, target, source, **kw)
[ "def", "Command", "(", "self", ",", "target", ",", "source", ",", "action", ",", "*", "*", "kw", ")", ":", "bkw", "=", "{", "'action'", ":", "action", ",", "'target_factory'", ":", "self", ".", "fs", ".", "Entry", ",", "'source_factory'", ":", "self"...
Builds the supplied target files from the supplied source files using the supplied action. Action may be any type that the Builder constructor will accept for an action.
[ "Builds", "the", "supplied", "target", "files", "from", "the", "supplied", "source", "files", "using", "the", "supplied", "action", ".", "Action", "may", "be", "any", "type", "that", "the", "Builder", "constructor", "will", "accept", "for", "an", "action", "...
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L1951-L1965
train
21,715
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
Base.Depends
def Depends(self, target, dependency): """Explicity specify that 'target's depend on 'dependency'.""" tlist = self.arg2nodes(target, self.fs.Entry) dlist = self.arg2nodes(dependency, self.fs.Entry) for t in tlist: t.add_dependency(dlist) return tlist
python
def Depends(self, target, dependency): """Explicity specify that 'target's depend on 'dependency'.""" tlist = self.arg2nodes(target, self.fs.Entry) dlist = self.arg2nodes(dependency, self.fs.Entry) for t in tlist: t.add_dependency(dlist) return tlist
[ "def", "Depends", "(", "self", ",", "target", ",", "dependency", ")", ":", "tlist", "=", "self", ".", "arg2nodes", "(", "target", ",", "self", ".", "fs", ".", "Entry", ")", "dlist", "=", "self", ".", "arg2nodes", "(", "dependency", ",", "self", ".", ...
Explicity specify that 'target's depend on 'dependency'.
[ "Explicity", "specify", "that", "target", "s", "depend", "on", "dependency", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L1967-L1973
train
21,716
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
Base.NoClean
def NoClean(self, *targets): """Tags a target so that it will not be cleaned by -c""" tlist = [] for t in targets: tlist.extend(self.arg2nodes(t, self.fs.Entry)) for t in tlist: t.set_noclean() return tlist
python
def NoClean(self, *targets): """Tags a target so that it will not be cleaned by -c""" tlist = [] for t in targets: tlist.extend(self.arg2nodes(t, self.fs.Entry)) for t in tlist: t.set_noclean() return tlist
[ "def", "NoClean", "(", "self", ",", "*", "targets", ")", ":", "tlist", "=", "[", "]", "for", "t", "in", "targets", ":", "tlist", ".", "extend", "(", "self", ".", "arg2nodes", "(", "t", ",", "self", ".", "fs", ".", "Entry", ")", ")", "for", "t",...
Tags a target so that it will not be cleaned by -c
[ "Tags", "a", "target", "so", "that", "it", "will", "not", "be", "cleaned", "by", "-", "c" ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L1995-L2002
train
21,717
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
Base.NoCache
def NoCache(self, *targets): """Tags a target so that it will not be cached""" tlist = [] for t in targets: tlist.extend(self.arg2nodes(t, self.fs.Entry)) for t in tlist: t.set_nocache() return tlist
python
def NoCache(self, *targets): """Tags a target so that it will not be cached""" tlist = [] for t in targets: tlist.extend(self.arg2nodes(t, self.fs.Entry)) for t in tlist: t.set_nocache() return tlist
[ "def", "NoCache", "(", "self", ",", "*", "targets", ")", ":", "tlist", "=", "[", "]", "for", "t", "in", "targets", ":", "tlist", ".", "extend", "(", "self", ".", "arg2nodes", "(", "t", ",", "self", ".", "fs", ".", "Entry", ")", ")", "for", "t",...
Tags a target so that it will not be cached
[ "Tags", "a", "target", "so", "that", "it", "will", "not", "be", "cached" ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L2004-L2011
train
21,718
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
Base.Execute
def Execute(self, action, *args, **kw): """Directly execute an action through an Environment """ action = self.Action(action, *args, **kw) result = action([], [], self) if isinstance(result, SCons.Errors.BuildError): errstr = result.errstr if result.filename: errstr = result.filename + ': ' + errstr sys.stderr.write("scons: *** %s\n" % errstr) return result.status else: return result
python
def Execute(self, action, *args, **kw): """Directly execute an action through an Environment """ action = self.Action(action, *args, **kw) result = action([], [], self) if isinstance(result, SCons.Errors.BuildError): errstr = result.errstr if result.filename: errstr = result.filename + ': ' + errstr sys.stderr.write("scons: *** %s\n" % errstr) return result.status else: return result
[ "def", "Execute", "(", "self", ",", "action", ",", "*", "args", ",", "*", "*", "kw", ")", ":", "action", "=", "self", ".", "Action", "(", "action", ",", "*", "args", ",", "*", "*", "kw", ")", "result", "=", "action", "(", "[", "]", ",", "[", ...
Directly execute an action through an Environment
[ "Directly", "execute", "an", "action", "through", "an", "Environment" ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L2027-L2039
train
21,719
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
Base.Ignore
def Ignore(self, target, dependency): """Ignore a dependency.""" tlist = self.arg2nodes(target, self.fs.Entry) dlist = self.arg2nodes(dependency, self.fs.Entry) for t in tlist: t.add_ignore(dlist) return tlist
python
def Ignore(self, target, dependency): """Ignore a dependency.""" tlist = self.arg2nodes(target, self.fs.Entry) dlist = self.arg2nodes(dependency, self.fs.Entry) for t in tlist: t.add_ignore(dlist) return tlist
[ "def", "Ignore", "(", "self", ",", "target", ",", "dependency", ")", ":", "tlist", "=", "self", ".", "arg2nodes", "(", "target", ",", "self", ".", "fs", ".", "Entry", ")", "dlist", "=", "self", ".", "arg2nodes", "(", "dependency", ",", "self", ".", ...
Ignore a dependency.
[ "Ignore", "a", "dependency", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L2070-L2076
train
21,720
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
Base.SideEffect
def SideEffect(self, side_effect, target): """Tell scons that side_effects are built as side effects of building targets.""" side_effects = self.arg2nodes(side_effect, self.fs.Entry) targets = self.arg2nodes(target, self.fs.Entry) for side_effect in side_effects: if side_effect.multiple_side_effect_has_builder(): raise SCons.Errors.UserError("Multiple ways to build the same target were specified for: %s" % str(side_effect)) side_effect.add_source(targets) side_effect.side_effect = 1 self.Precious(side_effect) for target in targets: target.side_effects.append(side_effect) return side_effects
python
def SideEffect(self, side_effect, target): """Tell scons that side_effects are built as side effects of building targets.""" side_effects = self.arg2nodes(side_effect, self.fs.Entry) targets = self.arg2nodes(target, self.fs.Entry) for side_effect in side_effects: if side_effect.multiple_side_effect_has_builder(): raise SCons.Errors.UserError("Multiple ways to build the same target were specified for: %s" % str(side_effect)) side_effect.add_source(targets) side_effect.side_effect = 1 self.Precious(side_effect) for target in targets: target.side_effects.append(side_effect) return side_effects
[ "def", "SideEffect", "(", "self", ",", "side_effect", ",", "target", ")", ":", "side_effects", "=", "self", ".", "arg2nodes", "(", "side_effect", ",", "self", ".", "fs", ".", "Entry", ")", "targets", "=", "self", ".", "arg2nodes", "(", "target", ",", "...
Tell scons that side_effects are built as side effects of building targets.
[ "Tell", "scons", "that", "side_effects", "are", "built", "as", "side", "effects", "of", "building", "targets", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L2144-L2158
train
21,721
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
Base.Split
def Split(self, arg): """This function converts a string or list into a list of strings or Nodes. This makes things easier for users by allowing files to be specified as a white-space separated list to be split. The input rules are: - A single string containing names separated by spaces. These will be split apart at the spaces. - A single Node instance - A list containing either strings or Node instances. Any strings in the list are not split at spaces. In all cases, the function returns a list of Nodes and strings.""" if SCons.Util.is_List(arg): return list(map(self.subst, arg)) elif SCons.Util.is_String(arg): return self.subst(arg).split() else: return [self.subst(arg)]
python
def Split(self, arg): """This function converts a string or list into a list of strings or Nodes. This makes things easier for users by allowing files to be specified as a white-space separated list to be split. The input rules are: - A single string containing names separated by spaces. These will be split apart at the spaces. - A single Node instance - A list containing either strings or Node instances. Any strings in the list are not split at spaces. In all cases, the function returns a list of Nodes and strings.""" if SCons.Util.is_List(arg): return list(map(self.subst, arg)) elif SCons.Util.is_String(arg): return self.subst(arg).split() else: return [self.subst(arg)]
[ "def", "Split", "(", "self", ",", "arg", ")", ":", "if", "SCons", ".", "Util", ".", "is_List", "(", "arg", ")", ":", "return", "list", "(", "map", "(", "self", ".", "subst", ",", "arg", ")", ")", "elif", "SCons", ".", "Util", ".", "is_String", ...
This function converts a string or list into a list of strings or Nodes. This makes things easier for users by allowing files to be specified as a white-space separated list to be split. The input rules are: - A single string containing names separated by spaces. These will be split apart at the spaces. - A single Node instance - A list containing either strings or Node instances. Any strings in the list are not split at spaces. In all cases, the function returns a list of Nodes and strings.
[ "This", "function", "converts", "a", "string", "or", "list", "into", "a", "list", "of", "strings", "or", "Nodes", ".", "This", "makes", "things", "easier", "for", "users", "by", "allowing", "files", "to", "be", "specified", "as", "a", "white", "-", "spac...
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L2188-L2207
train
21,722
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
Base.FindSourceFiles
def FindSourceFiles(self, node='.'): """ returns a list of all source files. """ node = self.arg2nodes(node, self.fs.Entry)[0] sources = [] def build_source(ss): for s in ss: if isinstance(s, SCons.Node.FS.Dir): build_source(s.all_children()) elif s.has_builder(): build_source(s.sources) elif isinstance(s.disambiguate(), SCons.Node.FS.File): sources.append(s) build_source(node.all_children()) def final_source(node): while (node != node.srcnode()): node = node.srcnode() return node sources = list(map( final_source, sources )); # remove duplicates return list(set(sources))
python
def FindSourceFiles(self, node='.'): """ returns a list of all source files. """ node = self.arg2nodes(node, self.fs.Entry)[0] sources = [] def build_source(ss): for s in ss: if isinstance(s, SCons.Node.FS.Dir): build_source(s.all_children()) elif s.has_builder(): build_source(s.sources) elif isinstance(s.disambiguate(), SCons.Node.FS.File): sources.append(s) build_source(node.all_children()) def final_source(node): while (node != node.srcnode()): node = node.srcnode() return node sources = list(map( final_source, sources )); # remove duplicates return list(set(sources))
[ "def", "FindSourceFiles", "(", "self", ",", "node", "=", "'.'", ")", ":", "node", "=", "self", ".", "arg2nodes", "(", "node", ",", "self", ".", "fs", ".", "Entry", ")", "[", "0", "]", "sources", "=", "[", "]", "def", "build_source", "(", "ss", ")...
returns a list of all source files.
[ "returns", "a", "list", "of", "all", "source", "files", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L2241-L2263
train
21,723
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py
Base.FindInstalledFiles
def FindInstalledFiles(self): """ returns the list of all targets of the Install and InstallAs Builder. """ from SCons.Tool import install if install._UNIQUE_INSTALLED_FILES is None: install._UNIQUE_INSTALLED_FILES = SCons.Util.uniquer_hashables(install._INSTALLED_FILES) return install._UNIQUE_INSTALLED_FILES
python
def FindInstalledFiles(self): """ returns the list of all targets of the Install and InstallAs Builder. """ from SCons.Tool import install if install._UNIQUE_INSTALLED_FILES is None: install._UNIQUE_INSTALLED_FILES = SCons.Util.uniquer_hashables(install._INSTALLED_FILES) return install._UNIQUE_INSTALLED_FILES
[ "def", "FindInstalledFiles", "(", "self", ")", ":", "from", "SCons", ".", "Tool", "import", "install", "if", "install", ".", "_UNIQUE_INSTALLED_FILES", "is", "None", ":", "install", ".", "_UNIQUE_INSTALLED_FILES", "=", "SCons", ".", "Util", ".", "uniquer_hashabl...
returns the list of all targets of the Install and InstallAs Builder.
[ "returns", "the", "list", "of", "all", "targets", "of", "the", "Install", "and", "InstallAs", "Builder", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Environment.py#L2265-L2271
train
21,724
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/pdflatex.py
generate
def generate(env): """Add Builders and construction variables for pdflatex to an Environment.""" global PDFLaTeXAction if PDFLaTeXAction is None: PDFLaTeXAction = SCons.Action.Action('$PDFLATEXCOM', '$PDFLATEXCOMSTR') global PDFLaTeXAuxAction if PDFLaTeXAuxAction is None: PDFLaTeXAuxAction = SCons.Action.Action(PDFLaTeXAuxFunction, strfunction=SCons.Tool.tex.TeXLaTeXStrFunction) env.AppendUnique(LATEXSUFFIXES=SCons.Tool.LaTeXSuffixes) from . import pdf pdf.generate(env) bld = env['BUILDERS']['PDF'] bld.add_action('.ltx', PDFLaTeXAuxAction) bld.add_action('.latex', PDFLaTeXAuxAction) bld.add_emitter('.ltx', SCons.Tool.tex.tex_pdf_emitter) bld.add_emitter('.latex', SCons.Tool.tex.tex_pdf_emitter) SCons.Tool.tex.generate_common(env)
python
def generate(env): """Add Builders and construction variables for pdflatex to an Environment.""" global PDFLaTeXAction if PDFLaTeXAction is None: PDFLaTeXAction = SCons.Action.Action('$PDFLATEXCOM', '$PDFLATEXCOMSTR') global PDFLaTeXAuxAction if PDFLaTeXAuxAction is None: PDFLaTeXAuxAction = SCons.Action.Action(PDFLaTeXAuxFunction, strfunction=SCons.Tool.tex.TeXLaTeXStrFunction) env.AppendUnique(LATEXSUFFIXES=SCons.Tool.LaTeXSuffixes) from . import pdf pdf.generate(env) bld = env['BUILDERS']['PDF'] bld.add_action('.ltx', PDFLaTeXAuxAction) bld.add_action('.latex', PDFLaTeXAuxAction) bld.add_emitter('.ltx', SCons.Tool.tex.tex_pdf_emitter) bld.add_emitter('.latex', SCons.Tool.tex.tex_pdf_emitter) SCons.Tool.tex.generate_common(env)
[ "def", "generate", "(", "env", ")", ":", "global", "PDFLaTeXAction", "if", "PDFLaTeXAction", "is", "None", ":", "PDFLaTeXAction", "=", "SCons", ".", "Action", ".", "Action", "(", "'$PDFLATEXCOM'", ",", "'$PDFLATEXCOMSTR'", ")", "global", "PDFLaTeXAuxAction", "if...
Add Builders and construction variables for pdflatex to an Environment.
[ "Add", "Builders", "and", "construction", "variables", "for", "pdflatex", "to", "an", "Environment", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/pdflatex.py#L52-L74
train
21,725
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/install.py
installShlibLinks
def installShlibLinks(dest, source, env): """If we are installing a versioned shared library create the required links.""" Verbose = False symlinks = listShlibLinksToInstall(dest, source, env) if Verbose: print('installShlibLinks: symlinks={:r}'.format(SCons.Tool.StringizeLibSymlinks(symlinks))) if symlinks: SCons.Tool.CreateLibSymlinks(env, symlinks) return
python
def installShlibLinks(dest, source, env): """If we are installing a versioned shared library create the required links.""" Verbose = False symlinks = listShlibLinksToInstall(dest, source, env) if Verbose: print('installShlibLinks: symlinks={:r}'.format(SCons.Tool.StringizeLibSymlinks(symlinks))) if symlinks: SCons.Tool.CreateLibSymlinks(env, symlinks) return
[ "def", "installShlibLinks", "(", "dest", ",", "source", ",", "env", ")", ":", "Verbose", "=", "False", "symlinks", "=", "listShlibLinksToInstall", "(", "dest", ",", "source", ",", "env", ")", "if", "Verbose", ":", "print", "(", "'installShlibLinks: symlinks={:...
If we are installing a versioned shared library create the required links.
[ "If", "we", "are", "installing", "a", "versioned", "shared", "library", "create", "the", "required", "links", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/install.py#L165-L173
train
21,726
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/install.py
installFunc
def installFunc(target, source, env): """Install a source file into a target using the function specified as the INSTALL construction variable.""" try: install = env['INSTALL'] except KeyError: raise SCons.Errors.UserError('Missing INSTALL construction variable.') assert len(target)==len(source), \ "Installing source %s into target %s: target and source lists must have same length."%(list(map(str, source)), list(map(str, target))) for t,s in zip(target,source): if install(t.get_path(),s.get_path(),env): return 1 return 0
python
def installFunc(target, source, env): """Install a source file into a target using the function specified as the INSTALL construction variable.""" try: install = env['INSTALL'] except KeyError: raise SCons.Errors.UserError('Missing INSTALL construction variable.') assert len(target)==len(source), \ "Installing source %s into target %s: target and source lists must have same length."%(list(map(str, source)), list(map(str, target))) for t,s in zip(target,source): if install(t.get_path(),s.get_path(),env): return 1 return 0
[ "def", "installFunc", "(", "target", ",", "source", ",", "env", ")", ":", "try", ":", "install", "=", "env", "[", "'INSTALL'", "]", "except", "KeyError", ":", "raise", "SCons", ".", "Errors", ".", "UserError", "(", "'Missing INSTALL construction variable.'", ...
Install a source file into a target using the function specified as the INSTALL construction variable.
[ "Install", "a", "source", "file", "into", "a", "target", "using", "the", "function", "specified", "as", "the", "INSTALL", "construction", "variable", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/install.py#L175-L189
train
21,727
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/install.py
installFuncVersionedLib
def installFuncVersionedLib(target, source, env): """Install a versioned library into a target using the function specified as the INSTALLVERSIONEDLIB construction variable.""" try: install = env['INSTALLVERSIONEDLIB'] except KeyError: raise SCons.Errors.UserError('Missing INSTALLVERSIONEDLIB construction variable.') assert len(target)==len(source), \ "Installing source %s into target %s: target and source lists must have same length."%(list(map(str, source)), list(map(str, target))) for t,s in zip(target,source): if hasattr(t.attributes, 'shlibname'): tpath = os.path.join(t.get_dir(), t.attributes.shlibname) else: tpath = t.get_path() if install(tpath,s.get_path(),env): return 1 return 0
python
def installFuncVersionedLib(target, source, env): """Install a versioned library into a target using the function specified as the INSTALLVERSIONEDLIB construction variable.""" try: install = env['INSTALLVERSIONEDLIB'] except KeyError: raise SCons.Errors.UserError('Missing INSTALLVERSIONEDLIB construction variable.') assert len(target)==len(source), \ "Installing source %s into target %s: target and source lists must have same length."%(list(map(str, source)), list(map(str, target))) for t,s in zip(target,source): if hasattr(t.attributes, 'shlibname'): tpath = os.path.join(t.get_dir(), t.attributes.shlibname) else: tpath = t.get_path() if install(tpath,s.get_path(),env): return 1 return 0
[ "def", "installFuncVersionedLib", "(", "target", ",", "source", ",", "env", ")", ":", "try", ":", "install", "=", "env", "[", "'INSTALLVERSIONEDLIB'", "]", "except", "KeyError", ":", "raise", "SCons", ".", "Errors", ".", "UserError", "(", "'Missing INSTALLVERS...
Install a versioned library into a target using the function specified as the INSTALLVERSIONEDLIB construction variable.
[ "Install", "a", "versioned", "library", "into", "a", "target", "using", "the", "function", "specified", "as", "the", "INSTALLVERSIONEDLIB", "construction", "variable", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/install.py#L191-L209
train
21,728
iotile/coretools
iotilecore/iotile/core/hw/update/records/send_rpc.py
SendErrorCheckingRPCRecord.parse_multiple_rpcs
def parse_multiple_rpcs(cls, record_data): """Parse record_data into multiple error checking rpcs.""" rpcs = [] while len(record_data) > 0: total_length, record_type = struct.unpack_from("<LB3x", record_data) if record_type != SendErrorCheckingRPCRecord.RecordType: raise ArgumentError("Record set contains a record that is not an error checking RPC", record_type=record_type) record_contents = record_data[8: total_length] parsed_rpc = cls._parse_rpc_info(record_contents) rpcs.append(parsed_rpc) record_data = record_data[total_length:] return rpcs
python
def parse_multiple_rpcs(cls, record_data): """Parse record_data into multiple error checking rpcs.""" rpcs = [] while len(record_data) > 0: total_length, record_type = struct.unpack_from("<LB3x", record_data) if record_type != SendErrorCheckingRPCRecord.RecordType: raise ArgumentError("Record set contains a record that is not an error checking RPC", record_type=record_type) record_contents = record_data[8: total_length] parsed_rpc = cls._parse_rpc_info(record_contents) rpcs.append(parsed_rpc) record_data = record_data[total_length:] return rpcs
[ "def", "parse_multiple_rpcs", "(", "cls", ",", "record_data", ")", ":", "rpcs", "=", "[", "]", "while", "len", "(", "record_data", ")", ">", "0", ":", "total_length", ",", "record_type", "=", "struct", ".", "unpack_from", "(", "\"<LB3x\"", ",", "record_dat...
Parse record_data into multiple error checking rpcs.
[ "Parse", "record_data", "into", "multiple", "error", "checking", "rpcs", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilecore/iotile/core/hw/update/records/send_rpc.py#L195-L212
train
21,729
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/clang.py
generate
def generate(env): """Add Builders and construction variables for clang to an Environment.""" SCons.Tool.cc.generate(env) env['CC'] = env.Detect(compilers) or 'clang' if env['PLATFORM'] in ['cygwin', 'win32']: env['SHCCFLAGS'] = SCons.Util.CLVar('$CCFLAGS') else: env['SHCCFLAGS'] = SCons.Util.CLVar('$CCFLAGS -fPIC') # determine compiler version if env['CC']: #pipe = SCons.Action._subproc(env, [env['CC'], '-dumpversion'], pipe = SCons.Action._subproc(env, [env['CC'], '--version'], stdin='devnull', stderr='devnull', stdout=subprocess.PIPE) if pipe.wait() != 0: return # clang -dumpversion is of no use line = pipe.stdout.readline() if sys.version_info[0] > 2: line = line.decode() match = re.search(r'clang +version +([0-9]+(?:\.[0-9]+)+)', line) if match: env['CCVERSION'] = match.group(1)
python
def generate(env): """Add Builders and construction variables for clang to an Environment.""" SCons.Tool.cc.generate(env) env['CC'] = env.Detect(compilers) or 'clang' if env['PLATFORM'] in ['cygwin', 'win32']: env['SHCCFLAGS'] = SCons.Util.CLVar('$CCFLAGS') else: env['SHCCFLAGS'] = SCons.Util.CLVar('$CCFLAGS -fPIC') # determine compiler version if env['CC']: #pipe = SCons.Action._subproc(env, [env['CC'], '-dumpversion'], pipe = SCons.Action._subproc(env, [env['CC'], '--version'], stdin='devnull', stderr='devnull', stdout=subprocess.PIPE) if pipe.wait() != 0: return # clang -dumpversion is of no use line = pipe.stdout.readline() if sys.version_info[0] > 2: line = line.decode() match = re.search(r'clang +version +([0-9]+(?:\.[0-9]+)+)', line) if match: env['CCVERSION'] = match.group(1)
[ "def", "generate", "(", "env", ")", ":", "SCons", ".", "Tool", ".", "cc", ".", "generate", "(", "env", ")", "env", "[", "'CC'", "]", "=", "env", ".", "Detect", "(", "compilers", ")", "or", "'clang'", "if", "env", "[", "'PLATFORM'", "]", "in", "["...
Add Builders and construction variables for clang to an Environment.
[ "Add", "Builders", "and", "construction", "variables", "for", "clang", "to", "an", "Environment", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/clang.py#L51-L74
train
21,730
iotile/coretools
iotilecore/iotile/core/utilities/stoppable_thread.py
StoppableWorkerThread.wait_running
def wait_running(self, timeout=None): """Wait for the thread to pass control to its routine. Args: timeout (float): The maximum amount of time to wait """ flag = self._running.wait(timeout) if flag is False: raise TimeoutExpiredError("Timeout waiting for thread to start running")
python
def wait_running(self, timeout=None): """Wait for the thread to pass control to its routine. Args: timeout (float): The maximum amount of time to wait """ flag = self._running.wait(timeout) if flag is False: raise TimeoutExpiredError("Timeout waiting for thread to start running")
[ "def", "wait_running", "(", "self", ",", "timeout", "=", "None", ")", ":", "flag", "=", "self", ".", "_running", ".", "wait", "(", "timeout", ")", "if", "flag", "is", "False", ":", "raise", "TimeoutExpiredError", "(", "\"Timeout waiting for thread to start run...
Wait for the thread to pass control to its routine. Args: timeout (float): The maximum amount of time to wait
[ "Wait", "for", "the", "thread", "to", "pass", "control", "to", "its", "routine", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilecore/iotile/core/utilities/stoppable_thread.py#L120-L130
train
21,731
iotile/coretools
iotileemulate/iotile/emulate/internal/emulation_loop.py
EmulationLoop.create_event
def create_event(self, register=False): """Create an asyncio.Event inside the emulation loop. This method exists as a convenience to create an Event object that is associated with the correct EventLoop(). If you pass register=True, then the event will be registered as an event that must be set for the EmulationLoop to be considered idle. This means that whenever wait_idle() is called, it will block until this event is set. Examples of when you may want this behavior is when the event is signaling whether a tile has completed restarting itself. The reset() rpc cannot block until the tile has initialized since it may need to send its own rpcs as part of the initialization process. However, we want to retain the behavior that once the reset() rpc returns the tile has been completely reset. The cleanest way of achieving this is to have the tile set its self.initialized Event when it has finished rebooting and register that event so that wait_idle() nicely blocks until the reset process is complete. Args: register (bool): Whether to register the event so that wait_idle blocks until it is set. Returns: asyncio.Event: The Event object. """ event = asyncio.Event(loop=self._loop) if register: self._events.add(event) return event
python
def create_event(self, register=False): """Create an asyncio.Event inside the emulation loop. This method exists as a convenience to create an Event object that is associated with the correct EventLoop(). If you pass register=True, then the event will be registered as an event that must be set for the EmulationLoop to be considered idle. This means that whenever wait_idle() is called, it will block until this event is set. Examples of when you may want this behavior is when the event is signaling whether a tile has completed restarting itself. The reset() rpc cannot block until the tile has initialized since it may need to send its own rpcs as part of the initialization process. However, we want to retain the behavior that once the reset() rpc returns the tile has been completely reset. The cleanest way of achieving this is to have the tile set its self.initialized Event when it has finished rebooting and register that event so that wait_idle() nicely blocks until the reset process is complete. Args: register (bool): Whether to register the event so that wait_idle blocks until it is set. Returns: asyncio.Event: The Event object. """ event = asyncio.Event(loop=self._loop) if register: self._events.add(event) return event
[ "def", "create_event", "(", "self", ",", "register", "=", "False", ")", ":", "event", "=", "asyncio", ".", "Event", "(", "loop", "=", "self", ".", "_loop", ")", "if", "register", ":", "self", ".", "_events", ".", "add", "(", "event", ")", "return", ...
Create an asyncio.Event inside the emulation loop. This method exists as a convenience to create an Event object that is associated with the correct EventLoop(). If you pass register=True, then the event will be registered as an event that must be set for the EmulationLoop to be considered idle. This means that whenever wait_idle() is called, it will block until this event is set. Examples of when you may want this behavior is when the event is signaling whether a tile has completed restarting itself. The reset() rpc cannot block until the tile has initialized since it may need to send its own rpcs as part of the initialization process. However, we want to retain the behavior that once the reset() rpc returns the tile has been completely reset. The cleanest way of achieving this is to have the tile set its self.initialized Event when it has finished rebooting and register that event so that wait_idle() nicely blocks until the reset process is complete. Args: register (bool): Whether to register the event so that wait_idle blocks until it is set. Returns: asyncio.Event: The Event object.
[ "Create", "an", "asyncio", ".", "Event", "inside", "the", "emulation", "loop", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotileemulate/iotile/emulate/internal/emulation_loop.py#L70-L103
train
21,732
iotile/coretools
iotileemulate/iotile/emulate/internal/emulation_loop.py
EmulationLoop.create_queue
def create_queue(self, register=False): """Create a new work queue and optionally register it. This will make sure the queue is attached to the correct event loop. You can optionally choose to automatically register it so that wait_idle() will block until the queue is empty. Args: register (bool): Whether to call register_workqueue() automatically. Returns: asyncio.Queue: The newly created queue. """ queue = asyncio.Queue(loop=self._loop) if register: self._work_queues.add(queue) return queue
python
def create_queue(self, register=False): """Create a new work queue and optionally register it. This will make sure the queue is attached to the correct event loop. You can optionally choose to automatically register it so that wait_idle() will block until the queue is empty. Args: register (bool): Whether to call register_workqueue() automatically. Returns: asyncio.Queue: The newly created queue. """ queue = asyncio.Queue(loop=self._loop) if register: self._work_queues.add(queue) return queue
[ "def", "create_queue", "(", "self", ",", "register", "=", "False", ")", ":", "queue", "=", "asyncio", ".", "Queue", "(", "loop", "=", "self", ".", "_loop", ")", "if", "register", ":", "self", ".", "_work_queues", ".", "add", "(", "queue", ")", "retur...
Create a new work queue and optionally register it. This will make sure the queue is attached to the correct event loop. You can optionally choose to automatically register it so that wait_idle() will block until the queue is empty. Args: register (bool): Whether to call register_workqueue() automatically. Returns: asyncio.Queue: The newly created queue.
[ "Create", "a", "new", "work", "queue", "and", "optionally", "register", "it", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotileemulate/iotile/emulate/internal/emulation_loop.py#L105-L123
train
21,733
iotile/coretools
iotileemulate/iotile/emulate/internal/emulation_loop.py
EmulationLoop.start
def start(self): """Start the background emulation loop.""" if self._started is True: raise ArgumentError("EmulationLoop.start() called multiple times") self._thread = threading.Thread(target=self._loop_thread_main) self._thread.start() self._started = True
python
def start(self): """Start the background emulation loop.""" if self._started is True: raise ArgumentError("EmulationLoop.start() called multiple times") self._thread = threading.Thread(target=self._loop_thread_main) self._thread.start() self._started = True
[ "def", "start", "(", "self", ")", ":", "if", "self", ".", "_started", "is", "True", ":", "raise", "ArgumentError", "(", "\"EmulationLoop.start() called multiple times\"", ")", "self", ".", "_thread", "=", "threading", ".", "Thread", "(", "target", "=", "self",...
Start the background emulation loop.
[ "Start", "the", "background", "emulation", "loop", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotileemulate/iotile/emulate/internal/emulation_loop.py#L189-L197
train
21,734
iotile/coretools
iotileemulate/iotile/emulate/internal/emulation_loop.py
EmulationLoop.stop
def stop(self): """Stop the background emulation loop.""" if self._started is False: raise ArgumentError("EmulationLoop.stop() called without calling start()") self.verify_calling_thread(False, "Cannot call EmulationLoop.stop() from inside the event loop") if self._thread.is_alive(): self._loop.call_soon_threadsafe(self._loop.create_task, self._clean_shutdown()) self._thread.join()
python
def stop(self): """Stop the background emulation loop.""" if self._started is False: raise ArgumentError("EmulationLoop.stop() called without calling start()") self.verify_calling_thread(False, "Cannot call EmulationLoop.stop() from inside the event loop") if self._thread.is_alive(): self._loop.call_soon_threadsafe(self._loop.create_task, self._clean_shutdown()) self._thread.join()
[ "def", "stop", "(", "self", ")", ":", "if", "self", ".", "_started", "is", "False", ":", "raise", "ArgumentError", "(", "\"EmulationLoop.stop() called without calling start()\"", ")", "self", ".", "verify_calling_thread", "(", "False", ",", "\"Cannot call EmulationLoo...
Stop the background emulation loop.
[ "Stop", "the", "background", "emulation", "loop", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotileemulate/iotile/emulate/internal/emulation_loop.py#L199-L209
train
21,735
iotile/coretools
iotileemulate/iotile/emulate/internal/emulation_loop.py
EmulationLoop.wait_idle
def wait_idle(self, timeout=1.0): """Wait until the rpc queue is empty. This method may be called either from within the event loop or from outside of it. If it is called outside of the event loop it will block the calling thread until the rpc queue is temporarily empty. If it is called from within the event loop it will return an awaitable object that can be used to wait for the same condition. The awaitable object will already have a timeout if the timeout parameter is passed. Args: timeout (float): The maximum number of seconds to wait. """ async def _awaiter(): background_work = {x.join() for x in self._work_queues} for event in self._events: if not event.is_set(): background_work.add(event.wait()) _done, pending = await asyncio.wait(background_work, timeout=timeout) if len(pending) > 0: raise TimeoutExpiredError("Timeout waiting for event loop to become idle", pending=pending) if self._on_emulation_thread(): return asyncio.wait_for(_awaiter(), timeout=timeout) self.run_task_external(_awaiter()) return None
python
def wait_idle(self, timeout=1.0): """Wait until the rpc queue is empty. This method may be called either from within the event loop or from outside of it. If it is called outside of the event loop it will block the calling thread until the rpc queue is temporarily empty. If it is called from within the event loop it will return an awaitable object that can be used to wait for the same condition. The awaitable object will already have a timeout if the timeout parameter is passed. Args: timeout (float): The maximum number of seconds to wait. """ async def _awaiter(): background_work = {x.join() for x in self._work_queues} for event in self._events: if not event.is_set(): background_work.add(event.wait()) _done, pending = await asyncio.wait(background_work, timeout=timeout) if len(pending) > 0: raise TimeoutExpiredError("Timeout waiting for event loop to become idle", pending=pending) if self._on_emulation_thread(): return asyncio.wait_for(_awaiter(), timeout=timeout) self.run_task_external(_awaiter()) return None
[ "def", "wait_idle", "(", "self", ",", "timeout", "=", "1.0", ")", ":", "async", "def", "_awaiter", "(", ")", ":", "background_work", "=", "{", "x", ".", "join", "(", ")", "for", "x", "in", "self", ".", "_work_queues", "}", "for", "event", "in", "se...
Wait until the rpc queue is empty. This method may be called either from within the event loop or from outside of it. If it is called outside of the event loop it will block the calling thread until the rpc queue is temporarily empty. If it is called from within the event loop it will return an awaitable object that can be used to wait for the same condition. The awaitable object will already have a timeout if the timeout parameter is passed. Args: timeout (float): The maximum number of seconds to wait.
[ "Wait", "until", "the", "rpc", "queue", "is", "empty", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotileemulate/iotile/emulate/internal/emulation_loop.py#L211-L242
train
21,736
iotile/coretools
iotileemulate/iotile/emulate/internal/emulation_loop.py
EmulationLoop.run_task_external
def run_task_external(self, coroutine): """Inject a task into the emulation loop and wait for it to finish. The coroutine parameter is run as a Task inside the EmulationLoop until it completes and the return value (or any raised Exception) is pased back into the caller's thread. Args: coroutine (coroutine): The task to inject into the event loop. Returns: object: Whatever the coroutine returned. """ self.verify_calling_thread(False, 'run_task_external must not be called from the emulation thread') future = asyncio.run_coroutine_threadsafe(coroutine, self._loop) return future.result()
python
def run_task_external(self, coroutine): """Inject a task into the emulation loop and wait for it to finish. The coroutine parameter is run as a Task inside the EmulationLoop until it completes and the return value (or any raised Exception) is pased back into the caller's thread. Args: coroutine (coroutine): The task to inject into the event loop. Returns: object: Whatever the coroutine returned. """ self.verify_calling_thread(False, 'run_task_external must not be called from the emulation thread') future = asyncio.run_coroutine_threadsafe(coroutine, self._loop) return future.result()
[ "def", "run_task_external", "(", "self", ",", "coroutine", ")", ":", "self", ".", "verify_calling_thread", "(", "False", ",", "'run_task_external must not be called from the emulation thread'", ")", "future", "=", "asyncio", ".", "run_coroutine_threadsafe", "(", "coroutin...
Inject a task into the emulation loop and wait for it to finish. The coroutine parameter is run as a Task inside the EmulationLoop until it completes and the return value (or any raised Exception) is pased back into the caller's thread. Args: coroutine (coroutine): The task to inject into the event loop. Returns: object: Whatever the coroutine returned.
[ "Inject", "a", "task", "into", "the", "emulation", "loop", "and", "wait", "for", "it", "to", "finish", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotileemulate/iotile/emulate/internal/emulation_loop.py#L244-L261
train
21,737
iotile/coretools
iotileemulate/iotile/emulate/internal/emulation_loop.py
EmulationLoop.call_rpc_external
def call_rpc_external(self, address, rpc_id, arg_payload, timeout=10.0): """Call an RPC from outside of the event loop and block until it finishes. This is the main method by which a caller outside of the EmulationLoop can inject an RPC into the EmulationLoop and wait for it to complete. This method is synchronous so it blocks until the RPC completes or the timeout expires. Args: address (int): The address of the mock tile this RPC is for rpc_id (int): The number of the RPC payload (bytes): A byte string of payload parameters up to 20 bytes timeout (float): The maximum time to wait for the RPC to finish. Returns: bytes: The response payload from the RPC """ self.verify_calling_thread(False, "call_rpc_external is for use **outside** of the event loop") response = CrossThreadResponse() self._loop.call_soon_threadsafe(self._rpc_queue.put_rpc, address, rpc_id, arg_payload, response) try: return response.wait(timeout) except RPCRuntimeError as err: return err.binary_error
python
def call_rpc_external(self, address, rpc_id, arg_payload, timeout=10.0): """Call an RPC from outside of the event loop and block until it finishes. This is the main method by which a caller outside of the EmulationLoop can inject an RPC into the EmulationLoop and wait for it to complete. This method is synchronous so it blocks until the RPC completes or the timeout expires. Args: address (int): The address of the mock tile this RPC is for rpc_id (int): The number of the RPC payload (bytes): A byte string of payload parameters up to 20 bytes timeout (float): The maximum time to wait for the RPC to finish. Returns: bytes: The response payload from the RPC """ self.verify_calling_thread(False, "call_rpc_external is for use **outside** of the event loop") response = CrossThreadResponse() self._loop.call_soon_threadsafe(self._rpc_queue.put_rpc, address, rpc_id, arg_payload, response) try: return response.wait(timeout) except RPCRuntimeError as err: return err.binary_error
[ "def", "call_rpc_external", "(", "self", ",", "address", ",", "rpc_id", ",", "arg_payload", ",", "timeout", "=", "10.0", ")", ":", "self", ".", "verify_calling_thread", "(", "False", ",", "\"call_rpc_external is for use **outside** of the event loop\"", ")", "response...
Call an RPC from outside of the event loop and block until it finishes. This is the main method by which a caller outside of the EmulationLoop can inject an RPC into the EmulationLoop and wait for it to complete. This method is synchronous so it blocks until the RPC completes or the timeout expires. Args: address (int): The address of the mock tile this RPC is for rpc_id (int): The number of the RPC payload (bytes): A byte string of payload parameters up to 20 bytes timeout (float): The maximum time to wait for the RPC to finish. Returns: bytes: The response payload from the RPC
[ "Call", "an", "RPC", "from", "outside", "of", "the", "event", "loop", "and", "block", "until", "it", "finishes", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotileemulate/iotile/emulate/internal/emulation_loop.py#L263-L290
train
21,738
iotile/coretools
iotileemulate/iotile/emulate/internal/emulation_loop.py
EmulationLoop.await_rpc
async def await_rpc(self, address, rpc_id, *args, **kwargs): """Send an RPC from inside the EmulationLoop. This is the primary method by which tasks running inside the EmulationLoop dispatch RPCs. The RPC is added to the queue of waiting RPCs to be drained by the RPC dispatch task and this coroutine will block until it finishes. **This method must only be called from inside the EmulationLoop** Args: address (int): The address of the tile that has the RPC. rpc_id (int): The 16-bit id of the rpc we want to call *args: Any required arguments for the RPC as python objects. **kwargs: Only two keyword arguments are supported: - arg_format: A format specifier for the argument list - result_format: A format specifier for the result Returns: list: A list of the decoded response members from the RPC. """ self.verify_calling_thread(True, "await_rpc must be called from **inside** the event loop") if isinstance(rpc_id, RPCDeclaration): arg_format = rpc_id.arg_format resp_format = rpc_id.resp_format rpc_id = rpc_id.rpc_id else: arg_format = kwargs.get('arg_format', None) resp_format = kwargs.get('resp_format', None) arg_payload = b'' if arg_format is not None: arg_payload = pack_rpc_payload(arg_format, args) self._logger.debug("Sending rpc to %d:%04X, payload=%s", address, rpc_id, args) response = AwaitableResponse() self._rpc_queue.put_rpc(address, rpc_id, arg_payload, response) try: resp_payload = await response.wait(1.0) except RPCRuntimeError as err: resp_payload = err.binary_error if resp_format is None: return [] resp = unpack_rpc_payload(resp_format, resp_payload) return resp
python
async def await_rpc(self, address, rpc_id, *args, **kwargs): """Send an RPC from inside the EmulationLoop. This is the primary method by which tasks running inside the EmulationLoop dispatch RPCs. The RPC is added to the queue of waiting RPCs to be drained by the RPC dispatch task and this coroutine will block until it finishes. **This method must only be called from inside the EmulationLoop** Args: address (int): The address of the tile that has the RPC. rpc_id (int): The 16-bit id of the rpc we want to call *args: Any required arguments for the RPC as python objects. **kwargs: Only two keyword arguments are supported: - arg_format: A format specifier for the argument list - result_format: A format specifier for the result Returns: list: A list of the decoded response members from the RPC. """ self.verify_calling_thread(True, "await_rpc must be called from **inside** the event loop") if isinstance(rpc_id, RPCDeclaration): arg_format = rpc_id.arg_format resp_format = rpc_id.resp_format rpc_id = rpc_id.rpc_id else: arg_format = kwargs.get('arg_format', None) resp_format = kwargs.get('resp_format', None) arg_payload = b'' if arg_format is not None: arg_payload = pack_rpc_payload(arg_format, args) self._logger.debug("Sending rpc to %d:%04X, payload=%s", address, rpc_id, args) response = AwaitableResponse() self._rpc_queue.put_rpc(address, rpc_id, arg_payload, response) try: resp_payload = await response.wait(1.0) except RPCRuntimeError as err: resp_payload = err.binary_error if resp_format is None: return [] resp = unpack_rpc_payload(resp_format, resp_payload) return resp
[ "async", "def", "await_rpc", "(", "self", ",", "address", ",", "rpc_id", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "self", ".", "verify_calling_thread", "(", "True", ",", "\"await_rpc must be called from **inside** the event loop\"", ")", "if", "isins...
Send an RPC from inside the EmulationLoop. This is the primary method by which tasks running inside the EmulationLoop dispatch RPCs. The RPC is added to the queue of waiting RPCs to be drained by the RPC dispatch task and this coroutine will block until it finishes. **This method must only be called from inside the EmulationLoop** Args: address (int): The address of the tile that has the RPC. rpc_id (int): The 16-bit id of the rpc we want to call *args: Any required arguments for the RPC as python objects. **kwargs: Only two keyword arguments are supported: - arg_format: A format specifier for the argument list - result_format: A format specifier for the result Returns: list: A list of the decoded response members from the RPC.
[ "Send", "an", "RPC", "from", "inside", "the", "EmulationLoop", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotileemulate/iotile/emulate/internal/emulation_loop.py#L292-L343
train
21,739
iotile/coretools
iotileemulate/iotile/emulate/internal/emulation_loop.py
EmulationLoop.verify_calling_thread
def verify_calling_thread(self, should_be_emulation, message=None): """Verify if the calling thread is or is not the emulation thread. This method can be called to make sure that an action is being taken in the appropriate context such as not blocking the event loop thread or modifying an emulate state outside of the event loop thread. If the verification fails an InternalError exception is raised, allowing this method to be used to protect other methods from being called in a context that could deadlock or cause race conditions. Args: should_be_emulation (bool): True if this call should be taking place on the emulation, thread, False if it must not take place on the emulation thread. message (str): Optional message to include when raising the exception. Otherwise a generic message is used. Raises: InternalError: When called from the wrong thread. """ if should_be_emulation == self._on_emulation_thread(): return if message is None: message = "Operation performed on invalid thread" raise InternalError(message)
python
def verify_calling_thread(self, should_be_emulation, message=None): """Verify if the calling thread is or is not the emulation thread. This method can be called to make sure that an action is being taken in the appropriate context such as not blocking the event loop thread or modifying an emulate state outside of the event loop thread. If the verification fails an InternalError exception is raised, allowing this method to be used to protect other methods from being called in a context that could deadlock or cause race conditions. Args: should_be_emulation (bool): True if this call should be taking place on the emulation, thread, False if it must not take place on the emulation thread. message (str): Optional message to include when raising the exception. Otherwise a generic message is used. Raises: InternalError: When called from the wrong thread. """ if should_be_emulation == self._on_emulation_thread(): return if message is None: message = "Operation performed on invalid thread" raise InternalError(message)
[ "def", "verify_calling_thread", "(", "self", ",", "should_be_emulation", ",", "message", "=", "None", ")", ":", "if", "should_be_emulation", "==", "self", ".", "_on_emulation_thread", "(", ")", ":", "return", "if", "message", "is", "None", ":", "message", "=",...
Verify if the calling thread is or is not the emulation thread. This method can be called to make sure that an action is being taken in the appropriate context such as not blocking the event loop thread or modifying an emulate state outside of the event loop thread. If the verification fails an InternalError exception is raised, allowing this method to be used to protect other methods from being called in a context that could deadlock or cause race conditions. Args: should_be_emulation (bool): True if this call should be taking place on the emulation, thread, False if it must not take place on the emulation thread. message (str): Optional message to include when raising the exception. Otherwise a generic message is used. Raises: InternalError: When called from the wrong thread.
[ "Verify", "if", "the", "calling", "thread", "is", "or", "is", "not", "the", "emulation", "thread", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotileemulate/iotile/emulate/internal/emulation_loop.py#L345-L373
train
21,740
iotile/coretools
iotileemulate/iotile/emulate/internal/emulation_loop.py
EmulationLoop.add_task
def add_task(self, tile_address, coroutine): """Add a task into the event loop. This is the main entry point for registering background tasks that are associated with a tile. The tasks are added to the EmulationLoop and the tile they are a part of is recorded. When the tile is reset, all of its background tasks are canceled as part of the reset process. If you have a task that should not be associated with any tile, you may pass `None` for tile_address and the task will not be cancelled when any tile is reset. Args: tile_address (int): The address of the tile running the task. coroutine (coroutine): A coroutine that will be added to the event loop. """ self._loop.call_soon_threadsafe(self._add_task, tile_address, coroutine)
python
def add_task(self, tile_address, coroutine): """Add a task into the event loop. This is the main entry point for registering background tasks that are associated with a tile. The tasks are added to the EmulationLoop and the tile they are a part of is recorded. When the tile is reset, all of its background tasks are canceled as part of the reset process. If you have a task that should not be associated with any tile, you may pass `None` for tile_address and the task will not be cancelled when any tile is reset. Args: tile_address (int): The address of the tile running the task. coroutine (coroutine): A coroutine that will be added to the event loop. """ self._loop.call_soon_threadsafe(self._add_task, tile_address, coroutine)
[ "def", "add_task", "(", "self", ",", "tile_address", ",", "coroutine", ")", ":", "self", ".", "_loop", ".", "call_soon_threadsafe", "(", "self", ".", "_add_task", ",", "tile_address", ",", "coroutine", ")" ]
Add a task into the event loop. This is the main entry point for registering background tasks that are associated with a tile. The tasks are added to the EmulationLoop and the tile they are a part of is recorded. When the tile is reset, all of its background tasks are canceled as part of the reset process. If you have a task that should not be associated with any tile, you may pass `None` for tile_address and the task will not be cancelled when any tile is reset. Args: tile_address (int): The address of the tile running the task. coroutine (coroutine): A coroutine that will be added to the event loop.
[ "Add", "a", "task", "into", "the", "event", "loop", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotileemulate/iotile/emulate/internal/emulation_loop.py#L375-L394
train
21,741
iotile/coretools
iotileemulate/iotile/emulate/internal/emulation_loop.py
EmulationLoop.stop_tasks
async def stop_tasks(self, address): """Clear all tasks pertaining to a tile. This coroutine will synchronously cancel all running tasks that were attached to the given tile and wait for them to stop before returning. Args: address (int): The address of the tile we should stop. """ tasks = self._tasks.get(address, []) for task in tasks: task.cancel() asyncio.gather(*tasks, return_exceptions=True) self._tasks[address] = []
python
async def stop_tasks(self, address): """Clear all tasks pertaining to a tile. This coroutine will synchronously cancel all running tasks that were attached to the given tile and wait for them to stop before returning. Args: address (int): The address of the tile we should stop. """ tasks = self._tasks.get(address, []) for task in tasks: task.cancel() asyncio.gather(*tasks, return_exceptions=True) self._tasks[address] = []
[ "async", "def", "stop_tasks", "(", "self", ",", "address", ")", ":", "tasks", "=", "self", ".", "_tasks", ".", "get", "(", "address", ",", "[", "]", ")", "for", "task", "in", "tasks", ":", "task", ".", "cancel", "(", ")", "asyncio", ".", "gather", ...
Clear all tasks pertaining to a tile. This coroutine will synchronously cancel all running tasks that were attached to the given tile and wait for them to stop before returning. Args: address (int): The address of the tile we should stop.
[ "Clear", "all", "tasks", "pertaining", "to", "a", "tile", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotileemulate/iotile/emulate/internal/emulation_loop.py#L434-L449
train
21,742
iotile/coretools
iotileemulate/iotile/emulate/internal/emulation_loop.py
EmulationLoop._clean_shutdown
async def _clean_shutdown(self): """Cleanly shutdown the emulation loop.""" # Cleanly stop any other outstanding tasks not associated with tiles remaining_tasks = [] for task in self._tasks.get(None, []): self._logger.debug("Cancelling task at shutdown %s", task) task.cancel() remaining_tasks.append(task) asyncio.gather(*remaining_tasks, return_exceptions=True) if len(remaining_tasks) > 0: del self._tasks[None] # Shutdown tasks associated with each tile remaining_tasks = [] for address in sorted(self._tasks, reverse=True): if address is None: continue self._logger.debug("Shutting down tasks for tile at %d", address) for task in self._tasks.get(address, []): task.cancel() remaining_tasks.append(task) asyncio.gather(*remaining_tasks, return_exceptions=True) await self._rpc_queue.stop() self._loop.stop()
python
async def _clean_shutdown(self): """Cleanly shutdown the emulation loop.""" # Cleanly stop any other outstanding tasks not associated with tiles remaining_tasks = [] for task in self._tasks.get(None, []): self._logger.debug("Cancelling task at shutdown %s", task) task.cancel() remaining_tasks.append(task) asyncio.gather(*remaining_tasks, return_exceptions=True) if len(remaining_tasks) > 0: del self._tasks[None] # Shutdown tasks associated with each tile remaining_tasks = [] for address in sorted(self._tasks, reverse=True): if address is None: continue self._logger.debug("Shutting down tasks for tile at %d", address) for task in self._tasks.get(address, []): task.cancel() remaining_tasks.append(task) asyncio.gather(*remaining_tasks, return_exceptions=True) await self._rpc_queue.stop() self._loop.stop()
[ "async", "def", "_clean_shutdown", "(", "self", ")", ":", "# Cleanly stop any other outstanding tasks not associated with tiles", "remaining_tasks", "=", "[", "]", "for", "task", "in", "self", ".", "_tasks", ".", "get", "(", "None", ",", "[", "]", ")", ":", "sel...
Cleanly shutdown the emulation loop.
[ "Cleanly", "shutdown", "the", "emulation", "loop", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotileemulate/iotile/emulate/internal/emulation_loop.py#L451-L483
train
21,743
iotile/coretools
iotileemulate/iotile/emulate/internal/emulation_loop.py
EmulationLoop._add_task
def _add_task(self, tile_address, coroutine): """Add a task from within the event loop. All tasks are associated with a tile so that they can be cleanly stopped when that tile is reset. """ self.verify_calling_thread(True, "_add_task is not thread safe") if tile_address not in self._tasks: self._tasks[tile_address] = [] task = self._loop.create_task(coroutine) self._tasks[tile_address].append(task)
python
def _add_task(self, tile_address, coroutine): """Add a task from within the event loop. All tasks are associated with a tile so that they can be cleanly stopped when that tile is reset. """ self.verify_calling_thread(True, "_add_task is not thread safe") if tile_address not in self._tasks: self._tasks[tile_address] = [] task = self._loop.create_task(coroutine) self._tasks[tile_address].append(task)
[ "def", "_add_task", "(", "self", ",", "tile_address", ",", "coroutine", ")", ":", "self", ".", "verify_calling_thread", "(", "True", ",", "\"_add_task is not thread safe\"", ")", "if", "tile_address", "not", "in", "self", ".", "_tasks", ":", "self", ".", "_tas...
Add a task from within the event loop. All tasks are associated with a tile so that they can be cleanly stopped when that tile is reset.
[ "Add", "a", "task", "from", "within", "the", "event", "loop", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotileemulate/iotile/emulate/internal/emulation_loop.py#L485-L498
train
21,744
iotile/coretools
iotilecore/iotile/core/utilities/schema_verify/dict_verify.py
DictionaryVerifier.key_rule
def key_rule(self, regex, verifier): """Add a rule with a pattern that should apply to all keys. Any key not explicitly listed in an add_required or add_optional rule must match ONE OF the rules given in a call to key_rule(). So these rules are all OR'ed together. In this case you should pass a raw string specifying a regex that is used to determine if the rule is used to check a given key. Args: regex (str): The regular expression used to match the rule or None if this should apply to all verifier (Verifier): The verification rule """ if regex is not None: regex = re.compile(regex) self._additional_key_rules.append((regex, verifier))
python
def key_rule(self, regex, verifier): """Add a rule with a pattern that should apply to all keys. Any key not explicitly listed in an add_required or add_optional rule must match ONE OF the rules given in a call to key_rule(). So these rules are all OR'ed together. In this case you should pass a raw string specifying a regex that is used to determine if the rule is used to check a given key. Args: regex (str): The regular expression used to match the rule or None if this should apply to all verifier (Verifier): The verification rule """ if regex is not None: regex = re.compile(regex) self._additional_key_rules.append((regex, verifier))
[ "def", "key_rule", "(", "self", ",", "regex", ",", "verifier", ")", ":", "if", "regex", "is", "not", "None", ":", "regex", "=", "re", ".", "compile", "(", "regex", ")", "self", ".", "_additional_key_rules", ".", "append", "(", "(", "regex", ",", "ver...
Add a rule with a pattern that should apply to all keys. Any key not explicitly listed in an add_required or add_optional rule must match ONE OF the rules given in a call to key_rule(). So these rules are all OR'ed together. In this case you should pass a raw string specifying a regex that is used to determine if the rule is used to check a given key. Args: regex (str): The regular expression used to match the rule or None if this should apply to all verifier (Verifier): The verification rule
[ "Add", "a", "rule", "with", "a", "pattern", "that", "should", "apply", "to", "all", "keys", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilecore/iotile/core/utilities/schema_verify/dict_verify.py#L43-L63
train
21,745
iotile/coretools
iotilecore/iotile/core/hw/transport/virtualadapter.py
VirtualAdapterAsyncChannel.stream
def stream(self, report, callback=None): """Queue data for streaming Args: report (IOTileReport): A report object to stream to a client callback (callable): An optional callback that will be called with a bool value of True when this report actually gets streamed. If the client disconnects and the report is dropped instead, callback will be called with False """ conn_id = self._find_connection(self.conn_string) if isinstance(report, BroadcastReport): self.adapter.notify_event_nowait(self.conn_string, 'broadcast', report) elif conn_id is not None: self.adapter.notify_event_nowait(self.conn_string, 'report', report) if callback is not None: callback(isinstance(report, BroadcastReport) or (conn_id is not None))
python
def stream(self, report, callback=None): """Queue data for streaming Args: report (IOTileReport): A report object to stream to a client callback (callable): An optional callback that will be called with a bool value of True when this report actually gets streamed. If the client disconnects and the report is dropped instead, callback will be called with False """ conn_id = self._find_connection(self.conn_string) if isinstance(report, BroadcastReport): self.adapter.notify_event_nowait(self.conn_string, 'broadcast', report) elif conn_id is not None: self.adapter.notify_event_nowait(self.conn_string, 'report', report) if callback is not None: callback(isinstance(report, BroadcastReport) or (conn_id is not None))
[ "def", "stream", "(", "self", ",", "report", ",", "callback", "=", "None", ")", ":", "conn_id", "=", "self", ".", "_find_connection", "(", "self", ".", "conn_string", ")", "if", "isinstance", "(", "report", ",", "BroadcastReport", ")", ":", "self", ".", ...
Queue data for streaming Args: report (IOTileReport): A report object to stream to a client callback (callable): An optional callback that will be called with a bool value of True when this report actually gets streamed. If the client disconnects and the report is dropped instead, callback will be called with False
[ "Queue", "data", "for", "streaming" ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilecore/iotile/core/hw/transport/virtualadapter.py#L23-L42
train
21,746
iotile/coretools
iotilecore/iotile/core/hw/transport/virtualadapter.py
VirtualAdapterAsyncChannel.trace
def trace(self, data, callback=None): """Queue data for tracing Args: data (bytearray, string): Unstructured data to trace to any connected client. callback (callable): An optional callback that will be called with a bool value of True when this data actually gets traced. If the client disconnects and the data is dropped instead, callback will be called with False. """ conn_id = self._find_connection(self.conn_string) if conn_id is not None: self.adapter.notify_event_nowait(self.conn_string, 'trace', data) if callback is not None: callback(conn_id is not None)
python
def trace(self, data, callback=None): """Queue data for tracing Args: data (bytearray, string): Unstructured data to trace to any connected client. callback (callable): An optional callback that will be called with a bool value of True when this data actually gets traced. If the client disconnects and the data is dropped instead, callback will be called with False. """ conn_id = self._find_connection(self.conn_string) if conn_id is not None: self.adapter.notify_event_nowait(self.conn_string, 'trace', data) if callback is not None: callback(conn_id is not None)
[ "def", "trace", "(", "self", ",", "data", ",", "callback", "=", "None", ")", ":", "conn_id", "=", "self", ".", "_find_connection", "(", "self", ".", "conn_string", ")", "if", "conn_id", "is", "not", "None", ":", "self", ".", "adapter", ".", "notify_eve...
Queue data for tracing Args: data (bytearray, string): Unstructured data to trace to any connected client. callback (callable): An optional callback that will be called with a bool value of True when this data actually gets traced. If the client disconnects and the data is dropped instead, callback will be called with False.
[ "Queue", "data", "for", "tracing" ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilecore/iotile/core/hw/transport/virtualadapter.py#L44-L62
train
21,747
iotile/coretools
iotilecore/iotile/core/hw/transport/virtualadapter.py
VirtualDeviceAdapter._load_device
def _load_device(self, name, config): """Load a device either from a script or from an installed module""" if config is None: config_dict = {} elif isinstance(config, dict): config_dict = config elif config[0] == '#': # Allow passing base64 encoded json directly in the port string to ease testing. import base64 config_str = str(base64.b64decode(config[1:]), 'utf-8') config_dict = json.loads(config_str) else: try: with open(config, "r") as conf: data = json.load(conf) except IOError as exc: raise ArgumentError("Could not open config file", error=str(exc), path=config) if 'device' not in data: raise ArgumentError("Invalid configuration file passed to VirtualDeviceAdapter", device_name=name, config_path=config, missing_key='device') config_dict = data['device'] reg = ComponentRegistry() if name.endswith('.py'): _name, device_factory = reg.load_extension(name, class_filter=VirtualIOTileDevice, unique=True) return device_factory(config_dict) seen_names = [] for device_name, device_factory in reg.load_extensions('iotile.virtual_device', class_filter=VirtualIOTileDevice, product_name="virtual_device"): if device_name == name: return device_factory(config_dict) seen_names.append(device_name) raise ArgumentError("Could not find virtual_device by name", name=name, known_names=seen_names)
python
def _load_device(self, name, config): """Load a device either from a script or from an installed module""" if config is None: config_dict = {} elif isinstance(config, dict): config_dict = config elif config[0] == '#': # Allow passing base64 encoded json directly in the port string to ease testing. import base64 config_str = str(base64.b64decode(config[1:]), 'utf-8') config_dict = json.loads(config_str) else: try: with open(config, "r") as conf: data = json.load(conf) except IOError as exc: raise ArgumentError("Could not open config file", error=str(exc), path=config) if 'device' not in data: raise ArgumentError("Invalid configuration file passed to VirtualDeviceAdapter", device_name=name, config_path=config, missing_key='device') config_dict = data['device'] reg = ComponentRegistry() if name.endswith('.py'): _name, device_factory = reg.load_extension(name, class_filter=VirtualIOTileDevice, unique=True) return device_factory(config_dict) seen_names = [] for device_name, device_factory in reg.load_extensions('iotile.virtual_device', class_filter=VirtualIOTileDevice, product_name="virtual_device"): if device_name == name: return device_factory(config_dict) seen_names.append(device_name) raise ArgumentError("Could not find virtual_device by name", name=name, known_names=seen_names)
[ "def", "_load_device", "(", "self", ",", "name", ",", "config", ")", ":", "if", "config", "is", "None", ":", "config_dict", "=", "{", "}", "elif", "isinstance", "(", "config", ",", "dict", ")", ":", "config_dict", "=", "config", "elif", "config", "[", ...
Load a device either from a script or from an installed module
[ "Load", "a", "device", "either", "from", "a", "script", "or", "from", "an", "installed", "module" ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilecore/iotile/core/hw/transport/virtualadapter.py#L172-L212
train
21,748
iotile/coretools
iotilecore/iotile/core/hw/transport/virtualadapter.py
VirtualDeviceAdapter.disconnect
async def disconnect(self, conn_id): """Asynchronously disconnect from a connected device Args: conn_id (int): A unique identifier that will refer to this connection callback (callback): A callback that will be called as callback(conn_id, adapter_id, success, failure_reason) """ self._ensure_connection(conn_id, True) dev = self._get_property(conn_id, 'device') dev.connected = False self._teardown_connection(conn_id)
python
async def disconnect(self, conn_id): """Asynchronously disconnect from a connected device Args: conn_id (int): A unique identifier that will refer to this connection callback (callback): A callback that will be called as callback(conn_id, adapter_id, success, failure_reason) """ self._ensure_connection(conn_id, True) dev = self._get_property(conn_id, 'device') dev.connected = False self._teardown_connection(conn_id)
[ "async", "def", "disconnect", "(", "self", ",", "conn_id", ")", ":", "self", ".", "_ensure_connection", "(", "conn_id", ",", "True", ")", "dev", "=", "self", ".", "_get_property", "(", "conn_id", ",", "'device'", ")", "dev", ".", "connected", "=", "False...
Asynchronously disconnect from a connected device Args: conn_id (int): A unique identifier that will refer to this connection callback (callback): A callback that will be called as callback(conn_id, adapter_id, success, failure_reason)
[ "Asynchronously", "disconnect", "from", "a", "connected", "device" ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilecore/iotile/core/hw/transport/virtualadapter.py#L247-L261
train
21,749
iotile/coretools
iotilecore/iotile/core/hw/transport/virtualadapter.py
VirtualDeviceAdapter._send_scan_event
async def _send_scan_event(self, device): """Send a scan event from a device.""" conn_string = str(device.iotile_id) info = { 'connection_string': conn_string, 'uuid': device.iotile_id, 'signal_strength': 100, 'validity_period': self.ExpirationTime } await self.notify_event(conn_string, 'device_seen', info)
python
async def _send_scan_event(self, device): """Send a scan event from a device.""" conn_string = str(device.iotile_id) info = { 'connection_string': conn_string, 'uuid': device.iotile_id, 'signal_strength': 100, 'validity_period': self.ExpirationTime } await self.notify_event(conn_string, 'device_seen', info)
[ "async", "def", "_send_scan_event", "(", "self", ",", "device", ")", ":", "conn_string", "=", "str", "(", "device", ".", "iotile_id", ")", "info", "=", "{", "'connection_string'", ":", "conn_string", ",", "'uuid'", ":", "device", ".", "iotile_id", ",", "'s...
Send a scan event from a device.
[ "Send", "a", "scan", "event", "from", "a", "device", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilecore/iotile/core/hw/transport/virtualadapter.py#L369-L380
train
21,750
iotile/coretools
iotileemulate/iotile/emulate/constants/__init__.py
rpc_name
def rpc_name(rpc_id): """Map an RPC id to a string name. This function looks the RPC up in a map of all globally declared RPCs, and returns a nice name string. if the RPC is not found in the global name map, returns a generic name string such as 'rpc 0x%04X'. Args: rpc_id (int): The id of the RPC that we wish to look up. Returns: str: The nice name of the RPC. """ name = _RPC_NAME_MAP.get(rpc_id) if name is None: name = 'RPC 0x%04X' % rpc_id return name
python
def rpc_name(rpc_id): """Map an RPC id to a string name. This function looks the RPC up in a map of all globally declared RPCs, and returns a nice name string. if the RPC is not found in the global name map, returns a generic name string such as 'rpc 0x%04X'. Args: rpc_id (int): The id of the RPC that we wish to look up. Returns: str: The nice name of the RPC. """ name = _RPC_NAME_MAP.get(rpc_id) if name is None: name = 'RPC 0x%04X' % rpc_id return name
[ "def", "rpc_name", "(", "rpc_id", ")", ":", "name", "=", "_RPC_NAME_MAP", ".", "get", "(", "rpc_id", ")", "if", "name", "is", "None", ":", "name", "=", "'RPC 0x%04X'", "%", "rpc_id", "return", "name" ]
Map an RPC id to a string name. This function looks the RPC up in a map of all globally declared RPCs, and returns a nice name string. if the RPC is not found in the global name map, returns a generic name string such as 'rpc 0x%04X'. Args: rpc_id (int): The id of the RPC that we wish to look up. Returns: str: The nice name of the RPC.
[ "Map", "an", "RPC", "id", "to", "a", "string", "name", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotileemulate/iotile/emulate/constants/__init__.py#L18-L36
train
21,751
iotile/coretools
iotileemulate/iotile/emulate/constants/__init__.py
stream_name
def stream_name(stream_id): """Map a stream id to a human readable name. The mapping process is as follows: If the stream id is globally known, its global name is used as <name> otherwise a string representation of the stream is used as <name>. In both cases the hex representation of the stream id is appended as a number: <name> (0x<stream id in hex>) Args: stream_id (int): An integer stream id. Returns: str: The nice name of the stream. """ name = _STREAM_NAME_MAP.get(stream_id) if name is None: name = str(DataStream.FromEncoded(stream_id)) return "{} (0x{:04X})".format(name, stream_id)
python
def stream_name(stream_id): """Map a stream id to a human readable name. The mapping process is as follows: If the stream id is globally known, its global name is used as <name> otherwise a string representation of the stream is used as <name>. In both cases the hex representation of the stream id is appended as a number: <name> (0x<stream id in hex>) Args: stream_id (int): An integer stream id. Returns: str: The nice name of the stream. """ name = _STREAM_NAME_MAP.get(stream_id) if name is None: name = str(DataStream.FromEncoded(stream_id)) return "{} (0x{:04X})".format(name, stream_id)
[ "def", "stream_name", "(", "stream_id", ")", ":", "name", "=", "_STREAM_NAME_MAP", ".", "get", "(", "stream_id", ")", "if", "name", "is", "None", ":", "name", "=", "str", "(", "DataStream", ".", "FromEncoded", "(", "stream_id", ")", ")", "return", "\"{} ...
Map a stream id to a human readable name. The mapping process is as follows: If the stream id is globally known, its global name is used as <name> otherwise a string representation of the stream is used as <name>. In both cases the hex representation of the stream id is appended as a number: <name> (0x<stream id in hex>) Args: stream_id (int): An integer stream id. Returns: str: The nice name of the stream.
[ "Map", "a", "stream", "id", "to", "a", "human", "readable", "name", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotileemulate/iotile/emulate/constants/__init__.py#L39-L63
train
21,752
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Script/SConsOptions.py
SConsValues.set_option
def set_option(self, name, value): """ Sets an option from an SConscript file. """ if not name in self.settable: raise SCons.Errors.UserError("This option is not settable from a SConscript file: %s"%name) if name == 'num_jobs': try: value = int(value) if value < 1: raise ValueError except ValueError: raise SCons.Errors.UserError("A positive integer is required: %s"%repr(value)) elif name == 'max_drift': try: value = int(value) except ValueError: raise SCons.Errors.UserError("An integer is required: %s"%repr(value)) elif name == 'duplicate': try: value = str(value) except ValueError: raise SCons.Errors.UserError("A string is required: %s"%repr(value)) if not value in SCons.Node.FS.Valid_Duplicates: raise SCons.Errors.UserError("Not a valid duplication style: %s" % value) # Set the duplicate style right away so it can affect linking # of SConscript files. SCons.Node.FS.set_duplicate(value) elif name == 'diskcheck': try: value = diskcheck_convert(value) except ValueError as v: raise SCons.Errors.UserError("Not a valid diskcheck value: %s"%v) if 'diskcheck' not in self.__dict__: # No --diskcheck= option was specified on the command line. # Set this right away so it can affect the rest of the # file/Node lookups while processing the SConscript files. SCons.Node.FS.set_diskcheck(value) elif name == 'stack_size': try: value = int(value) except ValueError: raise SCons.Errors.UserError("An integer is required: %s"%repr(value)) elif name == 'md5_chunksize': try: value = int(value) except ValueError: raise SCons.Errors.UserError("An integer is required: %s"%repr(value)) elif name == 'warn': if SCons.Util.is_String(value): value = [value] value = self.__SConscript_settings__.get(name, []) + value SCons.Warnings.process_warn_strings(value) self.__SConscript_settings__[name] = value
python
def set_option(self, name, value): """ Sets an option from an SConscript file. """ if not name in self.settable: raise SCons.Errors.UserError("This option is not settable from a SConscript file: %s"%name) if name == 'num_jobs': try: value = int(value) if value < 1: raise ValueError except ValueError: raise SCons.Errors.UserError("A positive integer is required: %s"%repr(value)) elif name == 'max_drift': try: value = int(value) except ValueError: raise SCons.Errors.UserError("An integer is required: %s"%repr(value)) elif name == 'duplicate': try: value = str(value) except ValueError: raise SCons.Errors.UserError("A string is required: %s"%repr(value)) if not value in SCons.Node.FS.Valid_Duplicates: raise SCons.Errors.UserError("Not a valid duplication style: %s" % value) # Set the duplicate style right away so it can affect linking # of SConscript files. SCons.Node.FS.set_duplicate(value) elif name == 'diskcheck': try: value = diskcheck_convert(value) except ValueError as v: raise SCons.Errors.UserError("Not a valid diskcheck value: %s"%v) if 'diskcheck' not in self.__dict__: # No --diskcheck= option was specified on the command line. # Set this right away so it can affect the rest of the # file/Node lookups while processing the SConscript files. SCons.Node.FS.set_diskcheck(value) elif name == 'stack_size': try: value = int(value) except ValueError: raise SCons.Errors.UserError("An integer is required: %s"%repr(value)) elif name == 'md5_chunksize': try: value = int(value) except ValueError: raise SCons.Errors.UserError("An integer is required: %s"%repr(value)) elif name == 'warn': if SCons.Util.is_String(value): value = [value] value = self.__SConscript_settings__.get(name, []) + value SCons.Warnings.process_warn_strings(value) self.__SConscript_settings__[name] = value
[ "def", "set_option", "(", "self", ",", "name", ",", "value", ")", ":", "if", "not", "name", "in", "self", ".", "settable", ":", "raise", "SCons", ".", "Errors", ".", "UserError", "(", "\"This option is not settable from a SConscript file: %s\"", "%", "name", "...
Sets an option from an SConscript file.
[ "Sets", "an", "option", "from", "an", "SConscript", "file", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Script/SConsOptions.py#L145-L200
train
21,753
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Script/SConsOptions.py
SConsOptionGroup.format_help
def format_help(self, formatter): """ Format an option group's help text, outdenting the title so it's flush with the "SCons Options" title we print at the top. """ formatter.dedent() result = formatter.format_heading(self.title) formatter.indent() result = result + optparse.OptionContainer.format_help(self, formatter) return result
python
def format_help(self, formatter): """ Format an option group's help text, outdenting the title so it's flush with the "SCons Options" title we print at the top. """ formatter.dedent() result = formatter.format_heading(self.title) formatter.indent() result = result + optparse.OptionContainer.format_help(self, formatter) return result
[ "def", "format_help", "(", "self", ",", "formatter", ")", ":", "formatter", ".", "dedent", "(", ")", "result", "=", "formatter", ".", "format_heading", "(", "self", ".", "title", ")", "formatter", ".", "indent", "(", ")", "result", "=", "result", "+", ...
Format an option group's help text, outdenting the title so it's flush with the "SCons Options" title we print at the top.
[ "Format", "an", "option", "group", "s", "help", "text", "outdenting", "the", "title", "so", "it", "s", "flush", "with", "the", "SCons", "Options", "title", "we", "print", "at", "the", "top", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Script/SConsOptions.py#L270-L279
train
21,754
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Script/SConsOptions.py
SConsOptionParser._process_long_opt
def _process_long_opt(self, rargs, values): """ SCons-specific processing of long options. This is copied directly from the normal optparse._process_long_opt() method, except that, if configured to do so, we catch the exception thrown when an unknown option is encountered and just stick it back on the "leftover" arguments for later (re-)processing. """ arg = rargs.pop(0) # Value explicitly attached to arg? Pretend it's the next # argument. if "=" in arg: (opt, next_arg) = arg.split("=", 1) rargs.insert(0, next_arg) had_explicit_value = True else: opt = arg had_explicit_value = False try: opt = self._match_long_opt(opt) except optparse.BadOptionError: if self.preserve_unknown_options: # SCons-specific: if requested, add unknown options to # the "leftover arguments" list for later processing. self.largs.append(arg) if had_explicit_value: # The unknown option will be re-processed later, # so undo the insertion of the explicit value. rargs.pop(0) return raise option = self._long_opt[opt] if option.takes_value(): nargs = option.nargs if nargs == '?': if had_explicit_value: value = rargs.pop(0) else: value = option.const elif len(rargs) < nargs: if nargs == 1: if not option.choices: self.error(_("%s option requires an argument") % opt) else: msg = _("%s option requires an argument " % opt) msg += _("(choose from %s)" % ', '.join(option.choices)) self.error(msg) else: self.error(_("%s option requires %d arguments") % (opt, nargs)) elif nargs == 1: value = rargs.pop(0) else: value = tuple(rargs[0:nargs]) del rargs[0:nargs] elif had_explicit_value: self.error(_("%s option does not take a value") % opt) else: value = None option.process(opt, value, values, self)
python
def _process_long_opt(self, rargs, values): """ SCons-specific processing of long options. This is copied directly from the normal optparse._process_long_opt() method, except that, if configured to do so, we catch the exception thrown when an unknown option is encountered and just stick it back on the "leftover" arguments for later (re-)processing. """ arg = rargs.pop(0) # Value explicitly attached to arg? Pretend it's the next # argument. if "=" in arg: (opt, next_arg) = arg.split("=", 1) rargs.insert(0, next_arg) had_explicit_value = True else: opt = arg had_explicit_value = False try: opt = self._match_long_opt(opt) except optparse.BadOptionError: if self.preserve_unknown_options: # SCons-specific: if requested, add unknown options to # the "leftover arguments" list for later processing. self.largs.append(arg) if had_explicit_value: # The unknown option will be re-processed later, # so undo the insertion of the explicit value. rargs.pop(0) return raise option = self._long_opt[opt] if option.takes_value(): nargs = option.nargs if nargs == '?': if had_explicit_value: value = rargs.pop(0) else: value = option.const elif len(rargs) < nargs: if nargs == 1: if not option.choices: self.error(_("%s option requires an argument") % opt) else: msg = _("%s option requires an argument " % opt) msg += _("(choose from %s)" % ', '.join(option.choices)) self.error(msg) else: self.error(_("%s option requires %d arguments") % (opt, nargs)) elif nargs == 1: value = rargs.pop(0) else: value = tuple(rargs[0:nargs]) del rargs[0:nargs] elif had_explicit_value: self.error(_("%s option does not take a value") % opt) else: value = None option.process(opt, value, values, self)
[ "def", "_process_long_opt", "(", "self", ",", "rargs", ",", "values", ")", ":", "arg", "=", "rargs", ".", "pop", "(", "0", ")", "# Value explicitly attached to arg? Pretend it's the next", "# argument.", "if", "\"=\"", "in", "arg", ":", "(", "opt", ",", "next...
SCons-specific processing of long options. This is copied directly from the normal optparse._process_long_opt() method, except that, if configured to do so, we catch the exception thrown when an unknown option is encountered and just stick it back on the "leftover" arguments for later (re-)processing.
[ "SCons", "-", "specific", "processing", "of", "long", "options", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Script/SConsOptions.py#L290-L358
train
21,755
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Script/SConsOptions.py
SConsOptionParser.add_local_option
def add_local_option(self, *args, **kw): """ Adds a local option to the parser. This is initiated by a SetOption() call to add a user-defined command-line option. We add the option to a separate option group for the local options, creating the group if necessary. """ try: group = self.local_option_group except AttributeError: group = SConsOptionGroup(self, 'Local Options') group = self.add_option_group(group) self.local_option_group = group result = group.add_option(*args, **kw) if result: # The option was added successfully. We now have to add the # default value to our object that holds the default values # (so that an attempt to fetch the option's attribute will # yield the default value when not overridden) and then # we re-parse the leftover command-line options, so that # any value overridden on the command line is immediately # available if the user turns around and does a GetOption() # right away. setattr(self.values.__defaults__, result.dest, result.default) self.reparse_local_options() return result
python
def add_local_option(self, *args, **kw): """ Adds a local option to the parser. This is initiated by a SetOption() call to add a user-defined command-line option. We add the option to a separate option group for the local options, creating the group if necessary. """ try: group = self.local_option_group except AttributeError: group = SConsOptionGroup(self, 'Local Options') group = self.add_option_group(group) self.local_option_group = group result = group.add_option(*args, **kw) if result: # The option was added successfully. We now have to add the # default value to our object that holds the default values # (so that an attempt to fetch the option's attribute will # yield the default value when not overridden) and then # we re-parse the leftover command-line options, so that # any value overridden on the command line is immediately # available if the user turns around and does a GetOption() # right away. setattr(self.values.__defaults__, result.dest, result.default) self.reparse_local_options() return result
[ "def", "add_local_option", "(", "self", ",", "*", "args", ",", "*", "*", "kw", ")", ":", "try", ":", "group", "=", "self", ".", "local_option_group", "except", "AttributeError", ":", "group", "=", "SConsOptionGroup", "(", "self", ",", "'Local Options'", ")...
Adds a local option to the parser. This is initiated by a SetOption() call to add a user-defined command-line option. We add the option to a separate option group for the local options, creating the group if necessary.
[ "Adds", "a", "local", "option", "to", "the", "parser", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Script/SConsOptions.py#L425-L454
train
21,756
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Script/SConsOptions.py
SConsIndentedHelpFormatter.format_heading
def format_heading(self, heading): """ This translates any heading of "options" or "Options" into "SCons Options." Unfortunately, we have to do this here, because those titles are hard-coded in the optparse calls. """ if heading == 'Options': heading = "SCons Options" return optparse.IndentedHelpFormatter.format_heading(self, heading)
python
def format_heading(self, heading): """ This translates any heading of "options" or "Options" into "SCons Options." Unfortunately, we have to do this here, because those titles are hard-coded in the optparse calls. """ if heading == 'Options': heading = "SCons Options" return optparse.IndentedHelpFormatter.format_heading(self, heading)
[ "def", "format_heading", "(", "self", ",", "heading", ")", ":", "if", "heading", "==", "'Options'", ":", "heading", "=", "\"SCons Options\"", "return", "optparse", ".", "IndentedHelpFormatter", ".", "format_heading", "(", "self", ",", "heading", ")" ]
This translates any heading of "options" or "Options" into "SCons Options." Unfortunately, we have to do this here, because those titles are hard-coded in the optparse calls.
[ "This", "translates", "any", "heading", "of", "options", "or", "Options", "into", "SCons", "Options", ".", "Unfortunately", "we", "have", "to", "do", "this", "here", "because", "those", "titles", "are", "hard", "-", "coded", "in", "the", "optparse", "calls",...
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Script/SConsOptions.py#L460-L468
train
21,757
iotile/coretools
iotilebuild/iotile/build/tilebus/block.py
TBBlock.to_dict
def to_dict(self): """Convert this object into a dictionary. Returns: dict: A dict with the same information as this object. """ out_dict = {} out_dict['commands'] = self.commands out_dict['configs'] = self.configs out_dict['short_name'] = self.name out_dict['versions'] = { 'module': self.module_version, 'api': self.api_version } return out_dict
python
def to_dict(self): """Convert this object into a dictionary. Returns: dict: A dict with the same information as this object. """ out_dict = {} out_dict['commands'] = self.commands out_dict['configs'] = self.configs out_dict['short_name'] = self.name out_dict['versions'] = { 'module': self.module_version, 'api': self.api_version } return out_dict
[ "def", "to_dict", "(", "self", ")", ":", "out_dict", "=", "{", "}", "out_dict", "[", "'commands'", "]", "=", "self", ".", "commands", "out_dict", "[", "'configs'", "]", "=", "self", ".", "configs", "out_dict", "[", "'short_name'", "]", "=", "self", "."...
Convert this object into a dictionary. Returns: dict: A dict with the same information as this object.
[ "Convert", "this", "object", "into", "a", "dictionary", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/tilebus/block.py#L46-L63
train
21,758
iotile/coretools
iotilebuild/iotile/build/tilebus/block.py
TBBlock.set_api_version
def set_api_version(self, major, minor): """Set the API version this module was designed for. Each module must declare the mib12 API version it was compiled with as a 2 byte major.minor number. This information is used by the pic12_executive to decide whether the application is compatible. """ if not self._is_byte(major) or not self._is_byte(minor): raise ArgumentError("Invalid API version number with component that does not fit in 1 byte", major=major, minor=minor) self.api_version = (major, minor)
python
def set_api_version(self, major, minor): """Set the API version this module was designed for. Each module must declare the mib12 API version it was compiled with as a 2 byte major.minor number. This information is used by the pic12_executive to decide whether the application is compatible. """ if not self._is_byte(major) or not self._is_byte(minor): raise ArgumentError("Invalid API version number with component that does not fit in 1 byte", major=major, minor=minor) self.api_version = (major, minor)
[ "def", "set_api_version", "(", "self", ",", "major", ",", "minor", ")", ":", "if", "not", "self", ".", "_is_byte", "(", "major", ")", "or", "not", "self", ".", "_is_byte", "(", "minor", ")", ":", "raise", "ArgumentError", "(", "\"Invalid API version number...
Set the API version this module was designed for. Each module must declare the mib12 API version it was compiled with as a 2 byte major.minor number. This information is used by the pic12_executive to decide whether the application is compatible.
[ "Set", "the", "API", "version", "this", "module", "was", "designed", "for", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/tilebus/block.py#L69-L81
train
21,759
iotile/coretools
iotilebuild/iotile/build/tilebus/block.py
TBBlock.set_module_version
def set_module_version(self, major, minor, patch): """Set the module version for this module. Each module must declare a semantic version number in the form: major.minor.patch where each component is a 1 byte number between 0 and 255. """ if not (self._is_byte(major) and self._is_byte(minor) and self._is_byte(patch)): raise ArgumentError("Invalid module version number with component that does not fit in 1 byte", major=major, minor=minor, patch=patch) self.module_version = (major, minor, patch)
python
def set_module_version(self, major, minor, patch): """Set the module version for this module. Each module must declare a semantic version number in the form: major.minor.patch where each component is a 1 byte number between 0 and 255. """ if not (self._is_byte(major) and self._is_byte(minor) and self._is_byte(patch)): raise ArgumentError("Invalid module version number with component that does not fit in 1 byte", major=major, minor=minor, patch=patch) self.module_version = (major, minor, patch)
[ "def", "set_module_version", "(", "self", ",", "major", ",", "minor", ",", "patch", ")", ":", "if", "not", "(", "self", ".", "_is_byte", "(", "major", ")", "and", "self", ".", "_is_byte", "(", "minor", ")", "and", "self", ".", "_is_byte", "(", "patch...
Set the module version for this module. Each module must declare a semantic version number in the form: major.minor.patch where each component is a 1 byte number between 0 and 255.
[ "Set", "the", "module", "version", "for", "this", "module", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/tilebus/block.py#L83-L96
train
21,760
iotile/coretools
iotilebuild/iotile/build/tilebus/block.py
TBBlock.set_name
def set_name(self, name): """Set the module name to a 6 byte string If the string is too short it is appended with space characters. """ if len(name) > 6: raise ArgumentError("Name must be at most 6 characters long", name=name) if len(name) < 6: name += ' '*(6 - len(name)) self.name = name
python
def set_name(self, name): """Set the module name to a 6 byte string If the string is too short it is appended with space characters. """ if len(name) > 6: raise ArgumentError("Name must be at most 6 characters long", name=name) if len(name) < 6: name += ' '*(6 - len(name)) self.name = name
[ "def", "set_name", "(", "self", ",", "name", ")", ":", "if", "len", "(", "name", ")", ">", "6", ":", "raise", "ArgumentError", "(", "\"Name must be at most 6 characters long\"", ",", "name", "=", "name", ")", "if", "len", "(", "name", ")", "<", "6", ":...
Set the module name to a 6 byte string If the string is too short it is appended with space characters.
[ "Set", "the", "module", "name", "to", "a", "6", "byte", "string" ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/tilebus/block.py#L98-L110
train
21,761
iotile/coretools
iotilebuild/iotile/build/tilebus/block.py
TBBlock.add_command
def add_command(self, cmd_id, handler): """Add a command to the TBBlock. The cmd_id must be a non-negative 2 byte number. handler should be the command handler """ if cmd_id < 0 or cmd_id >= 2**16: raise ArgumentError("Command ID in mib block is not a non-negative 2-byte number", cmd_id=cmd_id, handler=handler) if cmd_id in self.commands: raise ArgumentError("Attempted to add the same command ID twice.", cmd_id=cmd_id, existing_handler=self.commands[cmd_id], new_handler=handler) self.commands[cmd_id] = handler
python
def add_command(self, cmd_id, handler): """Add a command to the TBBlock. The cmd_id must be a non-negative 2 byte number. handler should be the command handler """ if cmd_id < 0 or cmd_id >= 2**16: raise ArgumentError("Command ID in mib block is not a non-negative 2-byte number", cmd_id=cmd_id, handler=handler) if cmd_id in self.commands: raise ArgumentError("Attempted to add the same command ID twice.", cmd_id=cmd_id, existing_handler=self.commands[cmd_id], new_handler=handler) self.commands[cmd_id] = handler
[ "def", "add_command", "(", "self", ",", "cmd_id", ",", "handler", ")", ":", "if", "cmd_id", "<", "0", "or", "cmd_id", ">=", "2", "**", "16", ":", "raise", "ArgumentError", "(", "\"Command ID in mib block is not a non-negative 2-byte number\"", ",", "cmd_id", "="...
Add a command to the TBBlock. The cmd_id must be a non-negative 2 byte number. handler should be the command handler
[ "Add", "a", "command", "to", "the", "TBBlock", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/tilebus/block.py#L112-L128
train
21,762
iotile/coretools
iotilebuild/iotile/build/tilebus/block.py
TBBlock.add_config
def add_config(self, config_id, config_data): """Add a configuration variable to the MIB block""" if config_id < 0 or config_id >= 2**16: raise ArgumentError("Config ID in mib block is not a non-negative 2-byte number", config_data=config_id, data=config_data) if config_id in self.configs: raise ArgumentError("Attempted to add the same command ID twice.", config_data=config_id, old_data=self.configs[config_id], new_data=config_data) self.configs[config_id] = config_data
python
def add_config(self, config_id, config_data): """Add a configuration variable to the MIB block""" if config_id < 0 or config_id >= 2**16: raise ArgumentError("Config ID in mib block is not a non-negative 2-byte number", config_data=config_id, data=config_data) if config_id in self.configs: raise ArgumentError("Attempted to add the same command ID twice.", config_data=config_id, old_data=self.configs[config_id], new_data=config_data) self.configs[config_id] = config_data
[ "def", "add_config", "(", "self", ",", "config_id", ",", "config_data", ")", ":", "if", "config_id", "<", "0", "or", "config_id", ">=", "2", "**", "16", ":", "raise", "ArgumentError", "(", "\"Config ID in mib block is not a non-negative 2-byte number\"", ",", "con...
Add a configuration variable to the MIB block
[ "Add", "a", "configuration", "variable", "to", "the", "MIB", "block" ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/tilebus/block.py#L130-L141
train
21,763
iotile/coretools
iotilebuild/iotile/build/tilebus/block.py
TBBlock._parse_hwtype
def _parse_hwtype(self): """Convert the numerical hardware id to a chip name.""" self.chip_name = KNOWN_HARDWARE_TYPES.get(self.hw_type, "Unknown Chip (type=%d)" % self.hw_type)
python
def _parse_hwtype(self): """Convert the numerical hardware id to a chip name.""" self.chip_name = KNOWN_HARDWARE_TYPES.get(self.hw_type, "Unknown Chip (type=%d)" % self.hw_type)
[ "def", "_parse_hwtype", "(", "self", ")", ":", "self", ".", "chip_name", "=", "KNOWN_HARDWARE_TYPES", ".", "get", "(", "self", ".", "hw_type", ",", "\"Unknown Chip (type=%d)\"", "%", "self", ".", "hw_type", ")" ]
Convert the numerical hardware id to a chip name.
[ "Convert", "the", "numerical", "hardware", "id", "to", "a", "chip", "name", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/tilebus/block.py#L143-L146
train
21,764
iotile/coretools
iotilebuild/iotile/build/tilebus/block.py
TBBlock.render_template
def render_template(self, template_name, out_path=None): """Render a template based on this TileBus Block. The template has access to all of the attributes of this block as a dictionary (the result of calling self.to_dict()). You can optionally render to a file by passing out_path. Args: template_name (str): The name of the template to load. This must be a file in config/templates inside this package out_path (str): An optional path of where to save the output file, otherwise it is just returned as a string. Returns: string: The rendered template data. """ return render_template(template_name, self.to_dict(), out_path=out_path)
python
def render_template(self, template_name, out_path=None): """Render a template based on this TileBus Block. The template has access to all of the attributes of this block as a dictionary (the result of calling self.to_dict()). You can optionally render to a file by passing out_path. Args: template_name (str): The name of the template to load. This must be a file in config/templates inside this package out_path (str): An optional path of where to save the output file, otherwise it is just returned as a string. Returns: string: The rendered template data. """ return render_template(template_name, self.to_dict(), out_path=out_path)
[ "def", "render_template", "(", "self", ",", "template_name", ",", "out_path", "=", "None", ")", ":", "return", "render_template", "(", "template_name", ",", "self", ".", "to_dict", "(", ")", ",", "out_path", "=", "out_path", ")" ]
Render a template based on this TileBus Block. The template has access to all of the attributes of this block as a dictionary (the result of calling self.to_dict()). You can optionally render to a file by passing out_path. Args: template_name (str): The name of the template to load. This must be a file in config/templates inside this package out_path (str): An optional path of where to save the output file, otherwise it is just returned as a string. Returns: string: The rendered template data.
[ "Render", "a", "template", "based", "on", "this", "TileBus", "Block", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/tilebus/block.py#L148-L166
train
21,765
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/packaging/__init__.py
Tag
def Tag(env, target, source, *more_tags, **kw_tags): """ Tag a file with the given arguments, just sets the accordingly named attribute on the file object. TODO: FIXME """ if not target: target=source first_tag=None else: first_tag=source if first_tag: kw_tags[first_tag[0]] = '' if len(kw_tags) == 0 and len(more_tags) == 0: raise UserError("No tags given.") # XXX: sanity checks for x in more_tags: kw_tags[x] = '' if not SCons.Util.is_List(target): target=[target] else: # hmm, sometimes the target list, is a list of a list # make sure it is flattened prior to processing. # TODO: perhaps some bug ?!? target=env.Flatten(target) for t in target: for (k,v) in kw_tags.items(): # all file tags have to start with PACKAGING_, so we can later # differentiate between "normal" object attributes and the # packaging attributes. As the user should not be bothered with # that, the prefix will be added here if missing. if k[:10] != 'PACKAGING_': k='PACKAGING_'+k t.Tag(k, v)
python
def Tag(env, target, source, *more_tags, **kw_tags): """ Tag a file with the given arguments, just sets the accordingly named attribute on the file object. TODO: FIXME """ if not target: target=source first_tag=None else: first_tag=source if first_tag: kw_tags[first_tag[0]] = '' if len(kw_tags) == 0 and len(more_tags) == 0: raise UserError("No tags given.") # XXX: sanity checks for x in more_tags: kw_tags[x] = '' if not SCons.Util.is_List(target): target=[target] else: # hmm, sometimes the target list, is a list of a list # make sure it is flattened prior to processing. # TODO: perhaps some bug ?!? target=env.Flatten(target) for t in target: for (k,v) in kw_tags.items(): # all file tags have to start with PACKAGING_, so we can later # differentiate between "normal" object attributes and the # packaging attributes. As the user should not be bothered with # that, the prefix will be added here if missing. if k[:10] != 'PACKAGING_': k='PACKAGING_'+k t.Tag(k, v)
[ "def", "Tag", "(", "env", ",", "target", ",", "source", ",", "*", "more_tags", ",", "*", "*", "kw_tags", ")", ":", "if", "not", "target", ":", "target", "=", "source", "first_tag", "=", "None", "else", ":", "first_tag", "=", "source", "if", "first_ta...
Tag a file with the given arguments, just sets the accordingly named attribute on the file object. TODO: FIXME
[ "Tag", "a", "file", "with", "the", "given", "arguments", "just", "sets", "the", "accordingly", "named", "attribute", "on", "the", "file", "object", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/packaging/__init__.py#L44-L82
train
21,766
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/packaging/__init__.py
copy_attr
def copy_attr(f1, f2): """ copies the special packaging file attributes from f1 to f2. """ copyit = lambda x: not hasattr(f2, x) and x[:10] == 'PACKAGING_' if f1._tags: pattrs = [tag for tag in f1._tags if copyit(tag)] for attr in pattrs: f2.Tag(attr, f1.GetTag(attr))
python
def copy_attr(f1, f2): """ copies the special packaging file attributes from f1 to f2. """ copyit = lambda x: not hasattr(f2, x) and x[:10] == 'PACKAGING_' if f1._tags: pattrs = [tag for tag in f1._tags if copyit(tag)] for attr in pattrs: f2.Tag(attr, f1.GetTag(attr))
[ "def", "copy_attr", "(", "f1", ",", "f2", ")", ":", "copyit", "=", "lambda", "x", ":", "not", "hasattr", "(", "f2", ",", "x", ")", "and", "x", "[", ":", "10", "]", "==", "'PACKAGING_'", "if", "f1", ".", "_tags", ":", "pattrs", "=", "[", "tag", ...
copies the special packaging file attributes from f1 to f2.
[ "copies", "the", "special", "packaging", "file", "attributes", "from", "f1", "to", "f2", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/packaging/__init__.py#L231-L238
train
21,767
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/packaging/__init__.py
putintopackageroot
def putintopackageroot(target, source, env, pkgroot, honor_install_location=1): """ Uses the CopyAs builder to copy all source files to the directory given in pkgroot. If honor_install_location is set and the copied source file has an PACKAGING_INSTALL_LOCATION attribute, the PACKAGING_INSTALL_LOCATION is used as the new name of the source file under pkgroot. The source file will not be copied if it is already under the the pkgroot directory. All attributes of the source file will be copied to the new file. """ # make sure the packageroot is a Dir object. if SCons.Util.is_String(pkgroot): pkgroot=env.Dir(pkgroot) if not SCons.Util.is_List(source): source=[source] new_source = [] for file in source: if SCons.Util.is_String(file): file = env.File(file) if file.is_under(pkgroot): new_source.append(file) else: if file.GetTag('PACKAGING_INSTALL_LOCATION') and\ honor_install_location: new_name=make_path_relative(file.GetTag('PACKAGING_INSTALL_LOCATION')) else: new_name=make_path_relative(file.get_path()) new_file=pkgroot.File(new_name) new_file=env.CopyAs(new_file, file)[0] copy_attr(file, new_file) new_source.append(new_file) return (target, new_source)
python
def putintopackageroot(target, source, env, pkgroot, honor_install_location=1): """ Uses the CopyAs builder to copy all source files to the directory given in pkgroot. If honor_install_location is set and the copied source file has an PACKAGING_INSTALL_LOCATION attribute, the PACKAGING_INSTALL_LOCATION is used as the new name of the source file under pkgroot. The source file will not be copied if it is already under the the pkgroot directory. All attributes of the source file will be copied to the new file. """ # make sure the packageroot is a Dir object. if SCons.Util.is_String(pkgroot): pkgroot=env.Dir(pkgroot) if not SCons.Util.is_List(source): source=[source] new_source = [] for file in source: if SCons.Util.is_String(file): file = env.File(file) if file.is_under(pkgroot): new_source.append(file) else: if file.GetTag('PACKAGING_INSTALL_LOCATION') and\ honor_install_location: new_name=make_path_relative(file.GetTag('PACKAGING_INSTALL_LOCATION')) else: new_name=make_path_relative(file.get_path()) new_file=pkgroot.File(new_name) new_file=env.CopyAs(new_file, file)[0] copy_attr(file, new_file) new_source.append(new_file) return (target, new_source)
[ "def", "putintopackageroot", "(", "target", ",", "source", ",", "env", ",", "pkgroot", ",", "honor_install_location", "=", "1", ")", ":", "# make sure the packageroot is a Dir object.", "if", "SCons", ".", "Util", ".", "is_String", "(", "pkgroot", ")", ":", "pkg...
Uses the CopyAs builder to copy all source files to the directory given in pkgroot. If honor_install_location is set and the copied source file has an PACKAGING_INSTALL_LOCATION attribute, the PACKAGING_INSTALL_LOCATION is used as the new name of the source file under pkgroot. The source file will not be copied if it is already under the the pkgroot directory. All attributes of the source file will be copied to the new file.
[ "Uses", "the", "CopyAs", "builder", "to", "copy", "all", "source", "files", "to", "the", "directory", "given", "in", "pkgroot", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/packaging/__init__.py#L240-L275
train
21,768
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/packaging/__init__.py
stripinstallbuilder
def stripinstallbuilder(target, source, env): """ Strips the install builder action from the source list and stores the final installation location as the "PACKAGING_INSTALL_LOCATION" of the source of the source file. This effectively removes the final installed files from the source list while remembering the installation location. It also warns about files which have no install builder attached. """ def has_no_install_location(file): return not (file.has_builder() and\ hasattr(file.builder, 'name') and\ (file.builder.name=="InstallBuilder" or\ file.builder.name=="InstallAsBuilder")) if len([src for src in source if has_no_install_location(src)]): warn(Warning, "there are files to package which have no\ InstallBuilder attached, this might lead to irreproducible packages") n_source=[] for s in source: if has_no_install_location(s): n_source.append(s) else: for ss in s.sources: n_source.append(ss) copy_attr(s, ss) ss.Tag('PACKAGING_INSTALL_LOCATION', s.get_path()) return (target, n_source)
python
def stripinstallbuilder(target, source, env): """ Strips the install builder action from the source list and stores the final installation location as the "PACKAGING_INSTALL_LOCATION" of the source of the source file. This effectively removes the final installed files from the source list while remembering the installation location. It also warns about files which have no install builder attached. """ def has_no_install_location(file): return not (file.has_builder() and\ hasattr(file.builder, 'name') and\ (file.builder.name=="InstallBuilder" or\ file.builder.name=="InstallAsBuilder")) if len([src for src in source if has_no_install_location(src)]): warn(Warning, "there are files to package which have no\ InstallBuilder attached, this might lead to irreproducible packages") n_source=[] for s in source: if has_no_install_location(s): n_source.append(s) else: for ss in s.sources: n_source.append(ss) copy_attr(s, ss) ss.Tag('PACKAGING_INSTALL_LOCATION', s.get_path()) return (target, n_source)
[ "def", "stripinstallbuilder", "(", "target", ",", "source", ",", "env", ")", ":", "def", "has_no_install_location", "(", "file", ")", ":", "return", "not", "(", "file", ".", "has_builder", "(", ")", "and", "hasattr", "(", "file", ".", "builder", ",", "'n...
Strips the install builder action from the source list and stores the final installation location as the "PACKAGING_INSTALL_LOCATION" of the source of the source file. This effectively removes the final installed files from the source list while remembering the installation location. It also warns about files which have no install builder attached.
[ "Strips", "the", "install", "builder", "action", "from", "the", "source", "list", "and", "stores", "the", "final", "installation", "location", "as", "the", "PACKAGING_INSTALL_LOCATION", "of", "the", "source", "of", "the", "source", "file", ".", "This", "effectiv...
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/packaging/__init__.py#L277-L305
train
21,769
iotile/coretools
iotilesensorgraph/iotile/sg/walker.py
BufferedStreamWalker.restore
def restore(self, state): """Restore a previous state of this stream walker. Raises: ArgumentError: If the state refers to a different selector or the offset is invalid. """ selector = DataStreamSelector.FromString(state.get(u'selector')) if selector != self.selector: raise ArgumentError("Attempted to restore a BufferedStreamWalker with a different selector", selector=self.selector, serialized_data=state) self.seek(state.get(u'offset'), target="offset")
python
def restore(self, state): """Restore a previous state of this stream walker. Raises: ArgumentError: If the state refers to a different selector or the offset is invalid. """ selector = DataStreamSelector.FromString(state.get(u'selector')) if selector != self.selector: raise ArgumentError("Attempted to restore a BufferedStreamWalker with a different selector", selector=self.selector, serialized_data=state) self.seek(state.get(u'offset'), target="offset")
[ "def", "restore", "(", "self", ",", "state", ")", ":", "selector", "=", "DataStreamSelector", ".", "FromString", "(", "state", ".", "get", "(", "u'selector'", ")", ")", "if", "selector", "!=", "self", ".", "selector", ":", "raise", "ArgumentError", "(", ...
Restore a previous state of this stream walker. Raises: ArgumentError: If the state refers to a different selector or the offset is invalid.
[ "Restore", "a", "previous", "state", "of", "this", "stream", "walker", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilesensorgraph/iotile/sg/walker.py#L85-L98
train
21,770
iotile/coretools
iotilesensorgraph/iotile/sg/walker.py
BufferedStreamWalker.pop
def pop(self): """Pop a reading off of this stream and return it.""" if self._count == 0: raise StreamEmptyError("Pop called on buffered stream walker without any data", selector=self.selector) while True: curr = self.engine.get(self.storage_type, self.offset) self.offset += 1 stream = DataStream.FromEncoded(curr.stream) if self.matches(stream): self._count -= 1 return curr
python
def pop(self): """Pop a reading off of this stream and return it.""" if self._count == 0: raise StreamEmptyError("Pop called on buffered stream walker without any data", selector=self.selector) while True: curr = self.engine.get(self.storage_type, self.offset) self.offset += 1 stream = DataStream.FromEncoded(curr.stream) if self.matches(stream): self._count -= 1 return curr
[ "def", "pop", "(", "self", ")", ":", "if", "self", ".", "_count", "==", "0", ":", "raise", "StreamEmptyError", "(", "\"Pop called on buffered stream walker without any data\"", ",", "selector", "=", "self", ".", "selector", ")", "while", "True", ":", "curr", "...
Pop a reading off of this stream and return it.
[ "Pop", "a", "reading", "off", "of", "this", "stream", "and", "return", "it", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilesensorgraph/iotile/sg/walker.py#L105-L118
train
21,771
iotile/coretools
iotilesensorgraph/iotile/sg/walker.py
BufferedStreamWalker.seek
def seek(self, value, target="offset"): """Seek this stream to a specific offset or reading id. There are two modes of use. You can seek to a specific reading id, which means the walker will be positioned exactly at the reading pointed to by the reading ID. If the reading id cannot be found an exception will be raised. The reading id can be found but corresponds to a reading that is not selected by this walker, the walker will be moved to point at the first reading after that reading and False will be returned. If target=="offset", the walker will be positioned at the specified offset in the sensor log. It will also update the count of available readings based on that new location so that the count remains correct. The offset does not need to correspond to a reading selected by this walker. If offset does not point to a selected reading, the effective behavior will be as if the walker pointed to the next selected reading after `offset`. Args: value (int): The identifier to seek, either an offset or a reading id. target (str): The type of thing to seek. Can be offset or id. If id is given, then a reading with the given ID will be searched for. If offset is given then the walker will be positioned at the given offset. Returns: bool: True if an exact match was found, False otherwise. An exact match means that the offset or reading ID existed and corresponded to a reading selected by this walker. An inexact match means that the offset or reading ID existed but corresponded to reading that was not selected by this walker. If the offset or reading ID could not be found an Exception is thrown instead. Raises: ArgumentError: target is an invalid string, must be offset or id. UnresolvedIdentifierError: the desired offset or reading id could not be found. """ if target not in (u'offset', u'id'): raise ArgumentError("You must specify target as either offset or id", target=target) if target == u'offset': self._verify_offset(value) self.offset = value else: self.offset = self._find_id(value) self._count = self.engine.count_matching(self.selector, offset=self.offset) curr = self.engine.get(self.storage_type, self.offset) return self.matches(DataStream.FromEncoded(curr.stream))
python
def seek(self, value, target="offset"): """Seek this stream to a specific offset or reading id. There are two modes of use. You can seek to a specific reading id, which means the walker will be positioned exactly at the reading pointed to by the reading ID. If the reading id cannot be found an exception will be raised. The reading id can be found but corresponds to a reading that is not selected by this walker, the walker will be moved to point at the first reading after that reading and False will be returned. If target=="offset", the walker will be positioned at the specified offset in the sensor log. It will also update the count of available readings based on that new location so that the count remains correct. The offset does not need to correspond to a reading selected by this walker. If offset does not point to a selected reading, the effective behavior will be as if the walker pointed to the next selected reading after `offset`. Args: value (int): The identifier to seek, either an offset or a reading id. target (str): The type of thing to seek. Can be offset or id. If id is given, then a reading with the given ID will be searched for. If offset is given then the walker will be positioned at the given offset. Returns: bool: True if an exact match was found, False otherwise. An exact match means that the offset or reading ID existed and corresponded to a reading selected by this walker. An inexact match means that the offset or reading ID existed but corresponded to reading that was not selected by this walker. If the offset or reading ID could not be found an Exception is thrown instead. Raises: ArgumentError: target is an invalid string, must be offset or id. UnresolvedIdentifierError: the desired offset or reading id could not be found. """ if target not in (u'offset', u'id'): raise ArgumentError("You must specify target as either offset or id", target=target) if target == u'offset': self._verify_offset(value) self.offset = value else: self.offset = self._find_id(value) self._count = self.engine.count_matching(self.selector, offset=self.offset) curr = self.engine.get(self.storage_type, self.offset) return self.matches(DataStream.FromEncoded(curr.stream))
[ "def", "seek", "(", "self", ",", "value", ",", "target", "=", "\"offset\"", ")", ":", "if", "target", "not", "in", "(", "u'offset'", ",", "u'id'", ")", ":", "raise", "ArgumentError", "(", "\"You must specify target as either offset or id\"", ",", "target", "="...
Seek this stream to a specific offset or reading id. There are two modes of use. You can seek to a specific reading id, which means the walker will be positioned exactly at the reading pointed to by the reading ID. If the reading id cannot be found an exception will be raised. The reading id can be found but corresponds to a reading that is not selected by this walker, the walker will be moved to point at the first reading after that reading and False will be returned. If target=="offset", the walker will be positioned at the specified offset in the sensor log. It will also update the count of available readings based on that new location so that the count remains correct. The offset does not need to correspond to a reading selected by this walker. If offset does not point to a selected reading, the effective behavior will be as if the walker pointed to the next selected reading after `offset`. Args: value (int): The identifier to seek, either an offset or a reading id. target (str): The type of thing to seek. Can be offset or id. If id is given, then a reading with the given ID will be searched for. If offset is given then the walker will be positioned at the given offset. Returns: bool: True if an exact match was found, False otherwise. An exact match means that the offset or reading ID existed and corresponded to a reading selected by this walker. An inexact match means that the offset or reading ID existed but corresponded to reading that was not selected by this walker. If the offset or reading ID could not be found an Exception is thrown instead. Raises: ArgumentError: target is an invalid string, must be offset or id. UnresolvedIdentifierError: the desired offset or reading id could not be found.
[ "Seek", "this", "stream", "to", "a", "specific", "offset", "or", "reading", "id", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilesensorgraph/iotile/sg/walker.py#L120-L179
train
21,772
iotile/coretools
iotilesensorgraph/iotile/sg/walker.py
BufferedStreamWalker.skip_all
def skip_all(self): """Skip all readings in this walker.""" storage, streaming = self.engine.count() if self.selector.output: self.offset = streaming else: self.offset = storage self._count = 0
python
def skip_all(self): """Skip all readings in this walker.""" storage, streaming = self.engine.count() if self.selector.output: self.offset = streaming else: self.offset = storage self._count = 0
[ "def", "skip_all", "(", "self", ")", ":", "storage", ",", "streaming", "=", "self", ".", "engine", ".", "count", "(", ")", "if", "self", ".", "selector", ".", "output", ":", "self", ".", "offset", "=", "streaming", "else", ":", "self", ".", "offset",...
Skip all readings in this walker.
[ "Skip", "all", "readings", "in", "this", "walker", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilesensorgraph/iotile/sg/walker.py#L228-L238
train
21,773
iotile/coretools
iotilesensorgraph/iotile/sg/walker.py
BufferedStreamWalker.notify_rollover
def notify_rollover(self, stream): """Notify that a reading in the given stream was overwritten. Args: stream (DataStream): The stream that had overwritten data. """ self.offset -= 1 if not self.matches(stream): return if self._count == 0: raise InternalError("BufferedStreamWalker out of sync with storage engine, count was wrong.") self._count -= 1
python
def notify_rollover(self, stream): """Notify that a reading in the given stream was overwritten. Args: stream (DataStream): The stream that had overwritten data. """ self.offset -= 1 if not self.matches(stream): return if self._count == 0: raise InternalError("BufferedStreamWalker out of sync with storage engine, count was wrong.") self._count -= 1
[ "def", "notify_rollover", "(", "self", ",", "stream", ")", ":", "self", ".", "offset", "-=", "1", "if", "not", "self", ".", "matches", "(", "stream", ")", ":", "return", "if", "self", ".", "_count", "==", "0", ":", "raise", "InternalError", "(", "\"B...
Notify that a reading in the given stream was overwritten. Args: stream (DataStream): The stream that had overwritten data.
[ "Notify", "that", "a", "reading", "in", "the", "given", "stream", "was", "overwritten", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilesensorgraph/iotile/sg/walker.py#L252-L267
train
21,774
iotile/coretools
iotilesensorgraph/iotile/sg/walker.py
VirtualStreamWalker.dump
def dump(self): """Serialize the state of this stream walker. Returns: dict: The serialized state. """ reading = self.reading if reading is not None: reading = reading.asdict() return { u'selector': str(self.selector), u'reading': reading }
python
def dump(self): """Serialize the state of this stream walker. Returns: dict: The serialized state. """ reading = self.reading if reading is not None: reading = reading.asdict() return { u'selector': str(self.selector), u'reading': reading }
[ "def", "dump", "(", "self", ")", ":", "reading", "=", "self", ".", "reading", "if", "reading", "is", "not", "None", ":", "reading", "=", "reading", ".", "asdict", "(", ")", "return", "{", "u'selector'", ":", "str", "(", "self", ".", "selector", ")", ...
Serialize the state of this stream walker. Returns: dict: The serialized state.
[ "Serialize", "the", "state", "of", "this", "stream", "walker", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilesensorgraph/iotile/sg/walker.py#L286-L300
train
21,775
iotile/coretools
iotilesensorgraph/iotile/sg/walker.py
CounterStreamWalker.peek
def peek(self): """Peek at the oldest reading in this virtual stream.""" if self.reading is None: raise StreamEmptyError("peek called on virtual stream walker without any data", selector=self.selector) return self.reading
python
def peek(self): """Peek at the oldest reading in this virtual stream.""" if self.reading is None: raise StreamEmptyError("peek called on virtual stream walker without any data", selector=self.selector) return self.reading
[ "def", "peek", "(", "self", ")", ":", "if", "self", ".", "reading", "is", "None", ":", "raise", "StreamEmptyError", "(", "\"peek called on virtual stream walker without any data\"", ",", "selector", "=", "self", ".", "selector", ")", "return", "self", ".", "read...
Peek at the oldest reading in this virtual stream.
[ "Peek", "at", "the", "oldest", "reading", "in", "this", "virtual", "stream", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilesensorgraph/iotile/sg/walker.py#L481-L487
train
21,776
iotile/coretools
iotilecore/iotile/core/utilities/linebuffer_ui.py
LinebufferUI.run
def run(self, refresh_interval=0.05): """Set up the loop, check that the tool is installed""" try: from asciimatics.screen import Screen except ImportError: raise ExternalError("You must have asciimatics installed to use LinebufferUI", suggestion="pip install iotilecore[ui]") Screen.wrapper(self._run_loop, arguments=[refresh_interval])
python
def run(self, refresh_interval=0.05): """Set up the loop, check that the tool is installed""" try: from asciimatics.screen import Screen except ImportError: raise ExternalError("You must have asciimatics installed to use LinebufferUI", suggestion="pip install iotilecore[ui]") Screen.wrapper(self._run_loop, arguments=[refresh_interval])
[ "def", "run", "(", "self", ",", "refresh_interval", "=", "0.05", ")", ":", "try", ":", "from", "asciimatics", ".", "screen", "import", "Screen", "except", "ImportError", ":", "raise", "ExternalError", "(", "\"You must have asciimatics installed to use LinebufferUI\"",...
Set up the loop, check that the tool is installed
[ "Set", "up", "the", "loop", "check", "that", "the", "tool", "is", "installed" ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilecore/iotile/core/utilities/linebuffer_ui.py#L62-L70
train
21,777
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/MSCommon/vc.py
find_vc_pdir
def find_vc_pdir(msvc_version): """Try to find the product directory for the given version. Note ---- If for some reason the requested version could not be found, an exception which inherits from VisualCException will be raised.""" root = 'Software\\' try: hkeys = _VCVER_TO_PRODUCT_DIR[msvc_version] except KeyError: debug("Unknown version of MSVC: %s" % msvc_version) raise UnsupportedVersion("Unknown version %s" % msvc_version) for hkroot, key in hkeys: try: comps = None if not key: comps = find_vc_pdir_vswhere(msvc_version) if not comps: debug('find_vc_dir(): no VC found via vswhere for version {}'.format(repr(key))) raise SCons.Util.WinError else: if common.is_win64(): try: # ordinally at win64, try Wow6432Node first. comps = common.read_reg(root + 'Wow6432Node\\' + key, hkroot) except SCons.Util.WinError as e: # at Microsoft Visual Studio for Python 2.7, value is not in Wow6432Node pass if not comps: # not Win64, or Microsoft Visual Studio for Python 2.7 comps = common.read_reg(root + key, hkroot) except SCons.Util.WinError as e: debug('find_vc_dir(): no VC registry key {}'.format(repr(key))) else: debug('find_vc_dir(): found VC in registry: {}'.format(comps)) if os.path.exists(comps): return comps else: debug('find_vc_dir(): reg says dir is {}, but it does not exist. (ignoring)'.format(comps)) raise MissingConfiguration("registry dir {} not found on the filesystem".format(comps)) return None
python
def find_vc_pdir(msvc_version): """Try to find the product directory for the given version. Note ---- If for some reason the requested version could not be found, an exception which inherits from VisualCException will be raised.""" root = 'Software\\' try: hkeys = _VCVER_TO_PRODUCT_DIR[msvc_version] except KeyError: debug("Unknown version of MSVC: %s" % msvc_version) raise UnsupportedVersion("Unknown version %s" % msvc_version) for hkroot, key in hkeys: try: comps = None if not key: comps = find_vc_pdir_vswhere(msvc_version) if not comps: debug('find_vc_dir(): no VC found via vswhere for version {}'.format(repr(key))) raise SCons.Util.WinError else: if common.is_win64(): try: # ordinally at win64, try Wow6432Node first. comps = common.read_reg(root + 'Wow6432Node\\' + key, hkroot) except SCons.Util.WinError as e: # at Microsoft Visual Studio for Python 2.7, value is not in Wow6432Node pass if not comps: # not Win64, or Microsoft Visual Studio for Python 2.7 comps = common.read_reg(root + key, hkroot) except SCons.Util.WinError as e: debug('find_vc_dir(): no VC registry key {}'.format(repr(key))) else: debug('find_vc_dir(): found VC in registry: {}'.format(comps)) if os.path.exists(comps): return comps else: debug('find_vc_dir(): reg says dir is {}, but it does not exist. (ignoring)'.format(comps)) raise MissingConfiguration("registry dir {} not found on the filesystem".format(comps)) return None
[ "def", "find_vc_pdir", "(", "msvc_version", ")", ":", "root", "=", "'Software\\\\'", "try", ":", "hkeys", "=", "_VCVER_TO_PRODUCT_DIR", "[", "msvc_version", "]", "except", "KeyError", ":", "debug", "(", "\"Unknown version of MSVC: %s\"", "%", "msvc_version", ")", ...
Try to find the product directory for the given version. Note ---- If for some reason the requested version could not be found, an exception which inherits from VisualCException will be raised.
[ "Try", "to", "find", "the", "product", "directory", "for", "the", "given", "version", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/MSCommon/vc.py#L257-L300
train
21,778
iotile/coretools
iotilesensorgraph/iotile/sg/compiler.py
compile_sgf
def compile_sgf(in_path, optimize=True, model=None): """Compile and optionally optimize an SGF file. Args: in_path (str): The input path to the sgf file to compile. optimize (bool): Whether to optimize the compiled result, defaults to True if not passed. model (DeviceModel): Optional device model if we are compiling for a nonstandard device. Normally you should leave this blank. Returns: SensorGraph: The compiled sensorgraph object """ if model is None: model = DeviceModel() parser = SensorGraphFileParser() parser.parse_file(in_path) parser.compile(model) if optimize: opt = SensorGraphOptimizer() opt.optimize(parser.sensor_graph, model=model) return parser.sensor_graph
python
def compile_sgf(in_path, optimize=True, model=None): """Compile and optionally optimize an SGF file. Args: in_path (str): The input path to the sgf file to compile. optimize (bool): Whether to optimize the compiled result, defaults to True if not passed. model (DeviceModel): Optional device model if we are compiling for a nonstandard device. Normally you should leave this blank. Returns: SensorGraph: The compiled sensorgraph object """ if model is None: model = DeviceModel() parser = SensorGraphFileParser() parser.parse_file(in_path) parser.compile(model) if optimize: opt = SensorGraphOptimizer() opt.optimize(parser.sensor_graph, model=model) return parser.sensor_graph
[ "def", "compile_sgf", "(", "in_path", ",", "optimize", "=", "True", ",", "model", "=", "None", ")", ":", "if", "model", "is", "None", ":", "model", "=", "DeviceModel", "(", ")", "parser", "=", "SensorGraphFileParser", "(", ")", "parser", ".", "parse_file...
Compile and optionally optimize an SGF file. Args: in_path (str): The input path to the sgf file to compile. optimize (bool): Whether to optimize the compiled result, defaults to True if not passed. model (DeviceModel): Optional device model if we are compiling for a nonstandard device. Normally you should leave this blank. Returns: SensorGraph: The compiled sensorgraph object
[ "Compile", "and", "optionally", "optimize", "an", "SGF", "file", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilesensorgraph/iotile/sg/compiler.py#L8-L34
train
21,779
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/g77.py
generate
def generate(env): """Add Builders and construction variables for g77 to an Environment.""" add_all_to_env(env) add_f77_to_env(env) fcomp = env.Detect(compilers) or 'g77' if env['PLATFORM'] in ['cygwin', 'win32']: env['SHFORTRANFLAGS'] = SCons.Util.CLVar('$FORTRANFLAGS') env['SHF77FLAGS'] = SCons.Util.CLVar('$F77FLAGS') else: env['SHFORTRANFLAGS'] = SCons.Util.CLVar('$FORTRANFLAGS -fPIC') env['SHF77FLAGS'] = SCons.Util.CLVar('$F77FLAGS -fPIC') env['FORTRAN'] = fcomp env['SHFORTRAN'] = '$FORTRAN' env['F77'] = fcomp env['SHF77'] = '$F77' env['INCFORTRANPREFIX'] = "-I" env['INCFORTRANSUFFIX'] = "" env['INCF77PREFIX'] = "-I" env['INCF77SUFFIX'] = ""
python
def generate(env): """Add Builders and construction variables for g77 to an Environment.""" add_all_to_env(env) add_f77_to_env(env) fcomp = env.Detect(compilers) or 'g77' if env['PLATFORM'] in ['cygwin', 'win32']: env['SHFORTRANFLAGS'] = SCons.Util.CLVar('$FORTRANFLAGS') env['SHF77FLAGS'] = SCons.Util.CLVar('$F77FLAGS') else: env['SHFORTRANFLAGS'] = SCons.Util.CLVar('$FORTRANFLAGS -fPIC') env['SHF77FLAGS'] = SCons.Util.CLVar('$F77FLAGS -fPIC') env['FORTRAN'] = fcomp env['SHFORTRAN'] = '$FORTRAN' env['F77'] = fcomp env['SHF77'] = '$F77' env['INCFORTRANPREFIX'] = "-I" env['INCFORTRANSUFFIX'] = "" env['INCF77PREFIX'] = "-I" env['INCF77SUFFIX'] = ""
[ "def", "generate", "(", "env", ")", ":", "add_all_to_env", "(", "env", ")", "add_f77_to_env", "(", "env", ")", "fcomp", "=", "env", ".", "Detect", "(", "compilers", ")", "or", "'g77'", "if", "env", "[", "'PLATFORM'", "]", "in", "[", "'cygwin'", ",", ...
Add Builders and construction variables for g77 to an Environment.
[ "Add", "Builders", "and", "construction", "variables", "for", "g77", "to", "an", "Environment", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/g77.py#L41-L64
train
21,780
iotile/coretools
iotilesensorgraph/iotile/sg/parser/language.py
get_language
def get_language(): """Create or retrieve the parse tree for defining a sensor graph.""" global sensor_graph, statement if sensor_graph is not None: return sensor_graph _create_primitives() _create_simple_statements() _create_block_bnf() sensor_graph = ZeroOrMore(statement) + StringEnd() sensor_graph.ignore(comment) return sensor_graph
python
def get_language(): """Create or retrieve the parse tree for defining a sensor graph.""" global sensor_graph, statement if sensor_graph is not None: return sensor_graph _create_primitives() _create_simple_statements() _create_block_bnf() sensor_graph = ZeroOrMore(statement) + StringEnd() sensor_graph.ignore(comment) return sensor_graph
[ "def", "get_language", "(", ")", ":", "global", "sensor_graph", ",", "statement", "if", "sensor_graph", "is", "not", "None", ":", "return", "sensor_graph", "_create_primitives", "(", ")", "_create_simple_statements", "(", ")", "_create_block_bnf", "(", ")", "senso...
Create or retrieve the parse tree for defining a sensor graph.
[ "Create", "or", "retrieve", "the", "parse", "tree", "for", "defining", "a", "sensor", "graph", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilesensorgraph/iotile/sg/parser/language.py#L142-L157
train
21,781
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/msgfmt.py
_create_mo_file_builder
def _create_mo_file_builder(env, **kw): """ Create builder object for `MOFiles` builder """ import SCons.Action # FIXME: What factory use for source? Ours or their? kw['action'] = SCons.Action.Action('$MSGFMTCOM','$MSGFMTCOMSTR') kw['suffix'] = '$MOSUFFIX' kw['src_suffix'] = '$POSUFFIX' kw['src_builder'] = '_POUpdateBuilder' kw['single_source'] = True return _MOFileBuilder(**kw)
python
def _create_mo_file_builder(env, **kw): """ Create builder object for `MOFiles` builder """ import SCons.Action # FIXME: What factory use for source? Ours or their? kw['action'] = SCons.Action.Action('$MSGFMTCOM','$MSGFMTCOMSTR') kw['suffix'] = '$MOSUFFIX' kw['src_suffix'] = '$POSUFFIX' kw['src_builder'] = '_POUpdateBuilder' kw['single_source'] = True return _MOFileBuilder(**kw)
[ "def", "_create_mo_file_builder", "(", "env", ",", "*", "*", "kw", ")", ":", "import", "SCons", ".", "Action", "# FIXME: What factory use for source? Ours or their?", "kw", "[", "'action'", "]", "=", "SCons", ".", "Action", ".", "Action", "(", "'$MSGFMTCOM'", ",...
Create builder object for `MOFiles` builder
[ "Create", "builder", "object", "for", "MOFiles", "builder" ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/msgfmt.py#L63-L72
train
21,782
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/msgfmt.py
generate
def generate(env,**kw): """ Generate `msgfmt` tool """ import SCons.Util from SCons.Tool.GettextCommon import _detect_msgfmt try: env['MSGFMT'] = _detect_msgfmt(env) except: env['MSGFMT'] = 'msgfmt' env.SetDefault( MSGFMTFLAGS = [ SCons.Util.CLVar('-c') ], MSGFMTCOM = '$MSGFMT $MSGFMTFLAGS -o $TARGET $SOURCE', MSGFMTCOMSTR = '', MOSUFFIX = ['.mo'], POSUFFIX = ['.po'] ) env.Append( BUILDERS = { 'MOFiles' : _create_mo_file_builder(env) } )
python
def generate(env,**kw): """ Generate `msgfmt` tool """ import SCons.Util from SCons.Tool.GettextCommon import _detect_msgfmt try: env['MSGFMT'] = _detect_msgfmt(env) except: env['MSGFMT'] = 'msgfmt' env.SetDefault( MSGFMTFLAGS = [ SCons.Util.CLVar('-c') ], MSGFMTCOM = '$MSGFMT $MSGFMTFLAGS -o $TARGET $SOURCE', MSGFMTCOMSTR = '', MOSUFFIX = ['.mo'], POSUFFIX = ['.po'] ) env.Append( BUILDERS = { 'MOFiles' : _create_mo_file_builder(env) } )
[ "def", "generate", "(", "env", ",", "*", "*", "kw", ")", ":", "import", "SCons", ".", "Util", "from", "SCons", ".", "Tool", ".", "GettextCommon", "import", "_detect_msgfmt", "try", ":", "env", "[", "'MSGFMT'", "]", "=", "_detect_msgfmt", "(", "env", ")...
Generate `msgfmt` tool
[ "Generate", "msgfmt", "tool" ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/msgfmt.py#L76-L91
train
21,783
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Scanner/RC.py
RCScan
def RCScan(): """Return a prototype Scanner instance for scanning RC source files""" res_re= r'^(?:\s*#\s*(?:include)|' \ '.*?\s+(?:ICON|BITMAP|CURSOR|HTML|FONT|MESSAGETABLE|TYPELIB|REGISTRY|D3DFX)' \ '\s*.*?)' \ '\s*(<|"| )([^>"\s]+)(?:[>"\s])*$' resScanner = SCons.Scanner.ClassicCPP("ResourceScanner", "$RCSUFFIXES", "CPPPATH", res_re, recursive=no_tlb) return resScanner
python
def RCScan(): """Return a prototype Scanner instance for scanning RC source files""" res_re= r'^(?:\s*#\s*(?:include)|' \ '.*?\s+(?:ICON|BITMAP|CURSOR|HTML|FONT|MESSAGETABLE|TYPELIB|REGISTRY|D3DFX)' \ '\s*.*?)' \ '\s*(<|"| )([^>"\s]+)(?:[>"\s])*$' resScanner = SCons.Scanner.ClassicCPP("ResourceScanner", "$RCSUFFIXES", "CPPPATH", res_re, recursive=no_tlb) return resScanner
[ "def", "RCScan", "(", ")", ":", "res_re", "=", "r'^(?:\\s*#\\s*(?:include)|'", "'.*?\\s+(?:ICON|BITMAP|CURSOR|HTML|FONT|MESSAGETABLE|TYPELIB|REGISTRY|D3DFX)'", "'\\s*.*?)'", "'\\s*(<|\"| )([^>\"\\s]+)(?:[>\"\\s])*$'", "resScanner", "=", "SCons", ".", "Scanner", ".", "ClassicCPP", ...
Return a prototype Scanner instance for scanning RC source files
[ "Return", "a", "prototype", "Scanner", "instance", "for", "scanning", "RC", "source", "files" ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Scanner/RC.py#L47-L60
train
21,784
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/GettextCommon.py
_read_linguas_from_files
def _read_linguas_from_files(env, linguas_files=None): """ Parse `LINGUAS` file and return list of extracted languages """ import SCons.Util import SCons.Environment global _re_comment global _re_lang if not SCons.Util.is_List(linguas_files) \ and not SCons.Util.is_String(linguas_files) \ and not isinstance(linguas_files, SCons.Node.FS.Base) \ and linguas_files: # If, linguas_files==True or such, then read 'LINGUAS' file. linguas_files = ['LINGUAS'] if linguas_files is None: return [] fnodes = env.arg2nodes(linguas_files) linguas = [] for fnode in fnodes: contents = _re_comment.sub("", fnode.get_text_contents()) ls = [l for l in _re_lang.findall(contents) if l] linguas.extend(ls) return linguas
python
def _read_linguas_from_files(env, linguas_files=None): """ Parse `LINGUAS` file and return list of extracted languages """ import SCons.Util import SCons.Environment global _re_comment global _re_lang if not SCons.Util.is_List(linguas_files) \ and not SCons.Util.is_String(linguas_files) \ and not isinstance(linguas_files, SCons.Node.FS.Base) \ and linguas_files: # If, linguas_files==True or such, then read 'LINGUAS' file. linguas_files = ['LINGUAS'] if linguas_files is None: return [] fnodes = env.arg2nodes(linguas_files) linguas = [] for fnode in fnodes: contents = _re_comment.sub("", fnode.get_text_contents()) ls = [l for l in _re_lang.findall(contents) if l] linguas.extend(ls) return linguas
[ "def", "_read_linguas_from_files", "(", "env", ",", "linguas_files", "=", "None", ")", ":", "import", "SCons", ".", "Util", "import", "SCons", ".", "Environment", "global", "_re_comment", "global", "_re_lang", "if", "not", "SCons", ".", "Util", ".", "is_List",...
Parse `LINGUAS` file and return list of extracted languages
[ "Parse", "LINGUAS", "file", "and", "return", "list", "of", "extracted", "languages" ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/GettextCommon.py#L131-L151
train
21,785
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/GettextCommon.py
_init_po_files
def _init_po_files(target, source, env): """ Action function for `POInit` builder. """ nop = lambda target, source, env: 0 if 'POAUTOINIT' in env: autoinit = env['POAUTOINIT'] else: autoinit = False # Well, if everything outside works well, this loop should do single # iteration. Otherwise we are rebuilding all the targets even, if just # one has changed (but is this our fault?). for tgt in target: if not tgt.exists(): if autoinit: action = SCons.Action.Action('$MSGINITCOM', '$MSGINITCOMSTR') else: msg = 'File ' + repr(str(tgt)) + ' does not exist. ' \ + 'If you are a translator, you can create it through: \n' \ + '$MSGINITCOM' action = SCons.Action.Action(nop, msg) status = action([tgt], source, env) if status: return status return 0
python
def _init_po_files(target, source, env): """ Action function for `POInit` builder. """ nop = lambda target, source, env: 0 if 'POAUTOINIT' in env: autoinit = env['POAUTOINIT'] else: autoinit = False # Well, if everything outside works well, this loop should do single # iteration. Otherwise we are rebuilding all the targets even, if just # one has changed (but is this our fault?). for tgt in target: if not tgt.exists(): if autoinit: action = SCons.Action.Action('$MSGINITCOM', '$MSGINITCOMSTR') else: msg = 'File ' + repr(str(tgt)) + ' does not exist. ' \ + 'If you are a translator, you can create it through: \n' \ + '$MSGINITCOM' action = SCons.Action.Action(nop, msg) status = action([tgt], source, env) if status: return status return 0
[ "def", "_init_po_files", "(", "target", ",", "source", ",", "env", ")", ":", "nop", "=", "lambda", "target", ",", "source", ",", "env", ":", "0", "if", "'POAUTOINIT'", "in", "env", ":", "autoinit", "=", "env", "[", "'POAUTOINIT'", "]", "else", ":", "...
Action function for `POInit` builder.
[ "Action", "function", "for", "POInit", "builder", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/GettextCommon.py#L362-L383
train
21,786
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/GettextCommon.py
_POTargetFactory._create_node
def _create_node(self, name, factory, directory=None, create=1): """ Create node, and set it up to factory settings. """ import SCons.Util node = factory(name, directory, create) node.set_noclean(self.noclean) node.set_precious(self.precious) if self.nodefault: self.env.Ignore('.', node) if self.alias: self.env.AlwaysBuild(self.env.Alias(self.alias, node)) return node
python
def _create_node(self, name, factory, directory=None, create=1): """ Create node, and set it up to factory settings. """ import SCons.Util node = factory(name, directory, create) node.set_noclean(self.noclean) node.set_precious(self.precious) if self.nodefault: self.env.Ignore('.', node) if self.alias: self.env.AlwaysBuild(self.env.Alias(self.alias, node)) return node
[ "def", "_create_node", "(", "self", ",", "name", ",", "factory", ",", "directory", "=", "None", ",", "create", "=", "1", ")", ":", "import", "SCons", ".", "Util", "node", "=", "factory", "(", "name", ",", "directory", ",", "create", ")", "node", ".",...
Create node, and set it up to factory settings.
[ "Create", "node", "and", "set", "it", "up", "to", "factory", "settings", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/GettextCommon.py#L102-L112
train
21,787
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/GettextCommon.py
_POTargetFactory.Entry
def Entry(self, name, directory=None, create=1): """ Create `SCons.Node.FS.Entry` """ return self._create_node(name, self.env.fs.Entry, directory, create)
python
def Entry(self, name, directory=None, create=1): """ Create `SCons.Node.FS.Entry` """ return self._create_node(name, self.env.fs.Entry, directory, create)
[ "def", "Entry", "(", "self", ",", "name", ",", "directory", "=", "None", ",", "create", "=", "1", ")", ":", "return", "self", ".", "_create_node", "(", "name", ",", "self", ".", "env", ".", "fs", ".", "Entry", ",", "directory", ",", "create", ")" ]
Create `SCons.Node.FS.Entry`
[ "Create", "SCons", ".", "Node", ".", "FS", ".", "Entry" ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/GettextCommon.py#L114-L116
train
21,788
iotile/coretools
iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/GettextCommon.py
_POTargetFactory.File
def File(self, name, directory=None, create=1): """ Create `SCons.Node.FS.File` """ return self._create_node(name, self.env.fs.File, directory, create)
python
def File(self, name, directory=None, create=1): """ Create `SCons.Node.FS.File` """ return self._create_node(name, self.env.fs.File, directory, create)
[ "def", "File", "(", "self", ",", "name", ",", "directory", "=", "None", ",", "create", "=", "1", ")", ":", "return", "self", ".", "_create_node", "(", "name", ",", "self", ".", "env", ".", "fs", ".", "File", ",", "directory", ",", "create", ")" ]
Create `SCons.Node.FS.File`
[ "Create", "SCons", ".", "Node", ".", "FS", ".", "File" ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Tool/GettextCommon.py#L118-L120
train
21,789
iotile/coretools
iotilesensorgraph/iotile/sg/parser/stream_allocator.py
StreamAllocator.allocate_stream
def allocate_stream(self, stream_type, stream_id=None, previous=None, attach=False): """Allocate a new stream of the given type. The stream is allocated with an incremental ID starting at StreamAllocator.StartingID. The returned data stream can always be used to to attach a NodeInput to this stream, however the attach_stream() function should always be called first since this stream's output may need to be split and a logically equivalent stream used instead to satisfy a device specific constraint on the maximum number of outputs attached to a given stream. You can call allocate_stream on the same stream multiple times without issue. Subsequent calls to allocate_stream are noops. Args: stream_type (int): A stream type specified in the DataStream class like DataStream.ConstantType stream_id (int): The ID we would like to use for this stream, if this is not specified, an ID is automatically allocated. previous (DataStream): If this stream was automatically derived from another stream, this parameter should be a link to the old stream. attach (bool): Call attach_stream immediately before returning. Convenience routine for streams that should immediately be attached to something. Returns: DataStream: The allocated data stream. """ if stream_type not in DataStream.TypeToString: raise ArgumentError("Unknown stream type in allocate_stream", stream_type=stream_type) if stream_id is not None and stream_id >= StreamAllocator.StartingID: raise ArgumentError("Attempted to explicitly allocate a stream id in the internally managed id range", stream_id=stream_id, started_id=StreamAllocator.StartingID) # If the stream id is not explicitly given, we need to manage and track it # from our autoallocate range if stream_id is None: if stream_type not in self._next_id: self._next_id[stream_type] = StreamAllocator.StartingID stream_id = self._next_id[stream_type] self._next_id[stream_type] += 1 # Keep track of how many downstream nodes are attached to this stream so # that we know when we need to split it into two. stream = DataStream(stream_type, stream_id) if stream not in self._allocated_streams: self._allocated_streams[stream] = (stream, 0, previous) if attach: stream = self.attach_stream(stream) return stream
python
def allocate_stream(self, stream_type, stream_id=None, previous=None, attach=False): """Allocate a new stream of the given type. The stream is allocated with an incremental ID starting at StreamAllocator.StartingID. The returned data stream can always be used to to attach a NodeInput to this stream, however the attach_stream() function should always be called first since this stream's output may need to be split and a logically equivalent stream used instead to satisfy a device specific constraint on the maximum number of outputs attached to a given stream. You can call allocate_stream on the same stream multiple times without issue. Subsequent calls to allocate_stream are noops. Args: stream_type (int): A stream type specified in the DataStream class like DataStream.ConstantType stream_id (int): The ID we would like to use for this stream, if this is not specified, an ID is automatically allocated. previous (DataStream): If this stream was automatically derived from another stream, this parameter should be a link to the old stream. attach (bool): Call attach_stream immediately before returning. Convenience routine for streams that should immediately be attached to something. Returns: DataStream: The allocated data stream. """ if stream_type not in DataStream.TypeToString: raise ArgumentError("Unknown stream type in allocate_stream", stream_type=stream_type) if stream_id is not None and stream_id >= StreamAllocator.StartingID: raise ArgumentError("Attempted to explicitly allocate a stream id in the internally managed id range", stream_id=stream_id, started_id=StreamAllocator.StartingID) # If the stream id is not explicitly given, we need to manage and track it # from our autoallocate range if stream_id is None: if stream_type not in self._next_id: self._next_id[stream_type] = StreamAllocator.StartingID stream_id = self._next_id[stream_type] self._next_id[stream_type] += 1 # Keep track of how many downstream nodes are attached to this stream so # that we know when we need to split it into two. stream = DataStream(stream_type, stream_id) if stream not in self._allocated_streams: self._allocated_streams[stream] = (stream, 0, previous) if attach: stream = self.attach_stream(stream) return stream
[ "def", "allocate_stream", "(", "self", ",", "stream_type", ",", "stream_id", "=", "None", ",", "previous", "=", "None", ",", "attach", "=", "False", ")", ":", "if", "stream_type", "not", "in", "DataStream", ".", "TypeToString", ":", "raise", "ArgumentError",...
Allocate a new stream of the given type. The stream is allocated with an incremental ID starting at StreamAllocator.StartingID. The returned data stream can always be used to to attach a NodeInput to this stream, however the attach_stream() function should always be called first since this stream's output may need to be split and a logically equivalent stream used instead to satisfy a device specific constraint on the maximum number of outputs attached to a given stream. You can call allocate_stream on the same stream multiple times without issue. Subsequent calls to allocate_stream are noops. Args: stream_type (int): A stream type specified in the DataStream class like DataStream.ConstantType stream_id (int): The ID we would like to use for this stream, if this is not specified, an ID is automatically allocated. previous (DataStream): If this stream was automatically derived from another stream, this parameter should be a link to the old stream. attach (bool): Call attach_stream immediately before returning. Convenience routine for streams that should immediately be attached to something. Returns: DataStream: The allocated data stream.
[ "Allocate", "a", "new", "stream", "of", "the", "given", "type", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilesensorgraph/iotile/sg/parser/stream_allocator.py#L30-L84
train
21,790
iotile/coretools
iotilesensorgraph/iotile/sg/parser/stream_allocator.py
StreamAllocator.attach_stream
def attach_stream(self, stream): """Notify that we would like to attach a node input to this stream. The return value from this function is the DataStream that should be attached to since this function may internally allocate a new SGNode that copies the stream if there is no space in the output list to hold another input. This function should be called once for every node input before allocated a new sensor graph node that attaches to a stream that is managed by the StreamAllocator. Args: stream (DataStream): The stream (originally returned from allocate_stream) that we want to attach to. Returns: Datastream: A data stream, possible the same as stream, that should be attached to a node input. """ curr_stream, count, prev = self._allocated_streams[stream] # Check if we need to split this stream and allocate a new one if count == (self.model.get(u'max_node_outputs') - 1): new_stream = self.allocate_stream(curr_stream.stream_type, previous=curr_stream) copy_desc = u"({} always) => {} using copy_all_a".format(curr_stream, new_stream) self.sensor_graph.add_node(copy_desc) self._allocated_streams[stream] = (new_stream, 1, curr_stream) # If we are splitting a constant stream, make sure we also duplicate the initialization value # FIXME: If there is no default value for the stream, that is probably a warning since all constant # streams should be initialized with a value. if curr_stream.stream_type == DataStream.ConstantType and curr_stream in self.sensor_graph.constant_database: self.sensor_graph.add_constant(new_stream, self.sensor_graph.constant_database[curr_stream]) return new_stream self._allocated_streams[stream] = (curr_stream, count + 1, prev) return curr_stream
python
def attach_stream(self, stream): """Notify that we would like to attach a node input to this stream. The return value from this function is the DataStream that should be attached to since this function may internally allocate a new SGNode that copies the stream if there is no space in the output list to hold another input. This function should be called once for every node input before allocated a new sensor graph node that attaches to a stream that is managed by the StreamAllocator. Args: stream (DataStream): The stream (originally returned from allocate_stream) that we want to attach to. Returns: Datastream: A data stream, possible the same as stream, that should be attached to a node input. """ curr_stream, count, prev = self._allocated_streams[stream] # Check if we need to split this stream and allocate a new one if count == (self.model.get(u'max_node_outputs') - 1): new_stream = self.allocate_stream(curr_stream.stream_type, previous=curr_stream) copy_desc = u"({} always) => {} using copy_all_a".format(curr_stream, new_stream) self.sensor_graph.add_node(copy_desc) self._allocated_streams[stream] = (new_stream, 1, curr_stream) # If we are splitting a constant stream, make sure we also duplicate the initialization value # FIXME: If there is no default value for the stream, that is probably a warning since all constant # streams should be initialized with a value. if curr_stream.stream_type == DataStream.ConstantType and curr_stream in self.sensor_graph.constant_database: self.sensor_graph.add_constant(new_stream, self.sensor_graph.constant_database[curr_stream]) return new_stream self._allocated_streams[stream] = (curr_stream, count + 1, prev) return curr_stream
[ "def", "attach_stream", "(", "self", ",", "stream", ")", ":", "curr_stream", ",", "count", ",", "prev", "=", "self", ".", "_allocated_streams", "[", "stream", "]", "# Check if we need to split this stream and allocate a new one", "if", "count", "==", "(", "self", ...
Notify that we would like to attach a node input to this stream. The return value from this function is the DataStream that should be attached to since this function may internally allocate a new SGNode that copies the stream if there is no space in the output list to hold another input. This function should be called once for every node input before allocated a new sensor graph node that attaches to a stream that is managed by the StreamAllocator. Args: stream (DataStream): The stream (originally returned from allocate_stream) that we want to attach to. Returns: Datastream: A data stream, possible the same as stream, that should be attached to a node input.
[ "Notify", "that", "we", "would", "like", "to", "attach", "a", "node", "input", "to", "this", "stream", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilesensorgraph/iotile/sg/parser/stream_allocator.py#L86-L124
train
21,791
iotile/coretools
iotilecore/iotile/core/dev/iotileobj.py
IOTile._find_v1_settings
def _find_v1_settings(self, settings): """Parse a v1 module_settings.json file. V1 is the older file format that requires a modules dictionary with a module_name and modules key that could in theory hold information on multiple modules in a single directory. """ if 'module_name' in settings: modname = settings['module_name'] if 'modules' not in settings or len(settings['modules']) == 0: raise DataError("No modules defined in module_settings.json file") elif len(settings['modules']) > 1: raise DataError("Multiple modules defined in module_settings.json file", modules=[x for x in settings['modules']]) else: modname = list(settings['modules'])[0] if modname not in settings['modules']: raise DataError("Module name does not correspond with an entry in the modules directory", name=modname, modules=[x for x in settings['modules']]) release_info = self._load_release_info(settings) modsettings = settings['modules'][modname] architectures = settings.get('architectures', {}) target_defs = settings.get('module_targets', {}) targets = target_defs.get(modname, []) return TileInfo(modname, modsettings, architectures, targets, release_info)
python
def _find_v1_settings(self, settings): """Parse a v1 module_settings.json file. V1 is the older file format that requires a modules dictionary with a module_name and modules key that could in theory hold information on multiple modules in a single directory. """ if 'module_name' in settings: modname = settings['module_name'] if 'modules' not in settings or len(settings['modules']) == 0: raise DataError("No modules defined in module_settings.json file") elif len(settings['modules']) > 1: raise DataError("Multiple modules defined in module_settings.json file", modules=[x for x in settings['modules']]) else: modname = list(settings['modules'])[0] if modname not in settings['modules']: raise DataError("Module name does not correspond with an entry in the modules directory", name=modname, modules=[x for x in settings['modules']]) release_info = self._load_release_info(settings) modsettings = settings['modules'][modname] architectures = settings.get('architectures', {}) target_defs = settings.get('module_targets', {}) targets = target_defs.get(modname, []) return TileInfo(modname, modsettings, architectures, targets, release_info)
[ "def", "_find_v1_settings", "(", "self", ",", "settings", ")", ":", "if", "'module_name'", "in", "settings", ":", "modname", "=", "settings", "[", "'module_name'", "]", "if", "'modules'", "not", "in", "settings", "or", "len", "(", "settings", "[", "'modules'...
Parse a v1 module_settings.json file. V1 is the older file format that requires a modules dictionary with a module_name and modules key that could in theory hold information on multiple modules in a single directory.
[ "Parse", "a", "v1", "module_settings", ".", "json", "file", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilecore/iotile/core/dev/iotileobj.py#L129-L158
train
21,792
iotile/coretools
iotilecore/iotile/core/dev/iotileobj.py
IOTile._ensure_product_string
def _ensure_product_string(cls, product): """Ensure that all product locations are strings. Older components specify paths as lists of path components. Join those paths into a normal path string. """ if isinstance(product, str): return product if isinstance(product, list): return os.path.join(*product) raise DataError("Unknown object (not str or list) specified as a component product", product=product)
python
def _ensure_product_string(cls, product): """Ensure that all product locations are strings. Older components specify paths as lists of path components. Join those paths into a normal path string. """ if isinstance(product, str): return product if isinstance(product, list): return os.path.join(*product) raise DataError("Unknown object (not str or list) specified as a component product", product=product)
[ "def", "_ensure_product_string", "(", "cls", ",", "product", ")", ":", "if", "isinstance", "(", "product", ",", "str", ")", ":", "return", "product", "if", "isinstance", "(", "product", ",", "list", ")", ":", "return", "os", ".", "path", ".", "join", "...
Ensure that all product locations are strings. Older components specify paths as lists of path components. Join those paths into a normal path string.
[ "Ensure", "that", "all", "product", "locations", "are", "strings", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilecore/iotile/core/dev/iotileobj.py#L345-L358
train
21,793
iotile/coretools
iotilecore/iotile/core/dev/iotileobj.py
IOTile.find_products
def find_products(self, product_type): """Search for products of a given type. Search through the products declared by this IOTile component and return only those matching the given type. If the product is described by the path to a file, a complete normalized path will be returned. The path could be different depending on whether this IOTile component is in development or release mode. The behavior of this function when filter_products has been called is slightly different based on whether product_type is in LIST_PRODUCTS or not. If product type is in LIST_PRODUCTS, then all matching products are returned if product_type itself was passed. So to get all tilebus_definitions you would call ``filter_products('tilebus_definitions')`` By contrast, other products are filtered product-by-product. So there is no way to filter and get **all libraries**. Instead you pass the specific product names of the libraries that you want to ``filter_products`` and those specific libraries are returned. Passing the literal string ``library`` to ``filter_products`` will not return only the libraries, it will return nothing since no library is named ``library``. Args: product_type (str): The type of product that we wish to return. Returns: list of str: The list of all products of the given type. If no such products are found, an empty list will be returned. If filter_products() has been called and the filter does not include this product type, an empty list will be returned. """ if self.filter_prods and product_type in self.LIST_PRODUCTS and product_type not in self.desired_prods: return [] if product_type in self.LIST_PRODUCTS: found_products = self.products.get(product_type, []) else: found_products = [x[0] for x in self.products.items() if x[1] == product_type and (not self.filter_prods or x[0] in self.desired_prods)] found_products = [self._ensure_product_string(x) for x in found_products] declaration = self.PATH_PRODUCTS.get(product_type) if declaration is not None: found_products = [self._process_product_path(x, declaration) for x in found_products] return found_products
python
def find_products(self, product_type): """Search for products of a given type. Search through the products declared by this IOTile component and return only those matching the given type. If the product is described by the path to a file, a complete normalized path will be returned. The path could be different depending on whether this IOTile component is in development or release mode. The behavior of this function when filter_products has been called is slightly different based on whether product_type is in LIST_PRODUCTS or not. If product type is in LIST_PRODUCTS, then all matching products are returned if product_type itself was passed. So to get all tilebus_definitions you would call ``filter_products('tilebus_definitions')`` By contrast, other products are filtered product-by-product. So there is no way to filter and get **all libraries**. Instead you pass the specific product names of the libraries that you want to ``filter_products`` and those specific libraries are returned. Passing the literal string ``library`` to ``filter_products`` will not return only the libraries, it will return nothing since no library is named ``library``. Args: product_type (str): The type of product that we wish to return. Returns: list of str: The list of all products of the given type. If no such products are found, an empty list will be returned. If filter_products() has been called and the filter does not include this product type, an empty list will be returned. """ if self.filter_prods and product_type in self.LIST_PRODUCTS and product_type not in self.desired_prods: return [] if product_type in self.LIST_PRODUCTS: found_products = self.products.get(product_type, []) else: found_products = [x[0] for x in self.products.items() if x[1] == product_type and (not self.filter_prods or x[0] in self.desired_prods)] found_products = [self._ensure_product_string(x) for x in found_products] declaration = self.PATH_PRODUCTS.get(product_type) if declaration is not None: found_products = [self._process_product_path(x, declaration) for x in found_products] return found_products
[ "def", "find_products", "(", "self", ",", "product_type", ")", ":", "if", "self", ".", "filter_prods", "and", "product_type", "in", "self", ".", "LIST_PRODUCTS", "and", "product_type", "not", "in", "self", ".", "desired_prods", ":", "return", "[", "]", "if",...
Search for products of a given type. Search through the products declared by this IOTile component and return only those matching the given type. If the product is described by the path to a file, a complete normalized path will be returned. The path could be different depending on whether this IOTile component is in development or release mode. The behavior of this function when filter_products has been called is slightly different based on whether product_type is in LIST_PRODUCTS or not. If product type is in LIST_PRODUCTS, then all matching products are returned if product_type itself was passed. So to get all tilebus_definitions you would call ``filter_products('tilebus_definitions')`` By contrast, other products are filtered product-by-product. So there is no way to filter and get **all libraries**. Instead you pass the specific product names of the libraries that you want to ``filter_products`` and those specific libraries are returned. Passing the literal string ``library`` to ``filter_products`` will not return only the libraries, it will return nothing since no library is named ``library``. Args: product_type (str): The type of product that we wish to return. Returns: list of str: The list of all products of the given type. If no such products are found, an empty list will be returned. If filter_products() has been called and the filter does not include this product type, an empty list will be returned.
[ "Search", "for", "products", "of", "a", "given", "type", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilecore/iotile/core/dev/iotileobj.py#L374-L424
train
21,794
iotile/coretools
iotilecore/iotile/core/dev/iotileobj.py
IOTile.library_directories
def library_directories(self): """Return a list of directories containing any static libraries built by this IOTile.""" libs = self.find_products('library') if len(libs) > 0: return [os.path.join(self.output_folder)] return []
python
def library_directories(self): """Return a list of directories containing any static libraries built by this IOTile.""" libs = self.find_products('library') if len(libs) > 0: return [os.path.join(self.output_folder)] return []
[ "def", "library_directories", "(", "self", ")", ":", "libs", "=", "self", ".", "find_products", "(", "'library'", ")", "if", "len", "(", "libs", ")", ">", "0", ":", "return", "[", "os", ".", "path", ".", "join", "(", "self", ".", "output_folder", ")"...
Return a list of directories containing any static libraries built by this IOTile.
[ "Return", "a", "list", "of", "directories", "containing", "any", "static", "libraries", "built", "by", "this", "IOTile", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilecore/iotile/core/dev/iotileobj.py#L426-L434
train
21,795
iotile/coretools
iotilecore/iotile/core/dev/iotileobj.py
IOTile.filter_products
def filter_products(self, desired_prods): """When asked for a product, filter only those on this list.""" self.filter_prods = True self.desired_prods = set(desired_prods)
python
def filter_products(self, desired_prods): """When asked for a product, filter only those on this list.""" self.filter_prods = True self.desired_prods = set(desired_prods)
[ "def", "filter_products", "(", "self", ",", "desired_prods", ")", ":", "self", ".", "filter_prods", "=", "True", "self", ".", "desired_prods", "=", "set", "(", "desired_prods", ")" ]
When asked for a product, filter only those on this list.
[ "When", "asked", "for", "a", "product", "filter", "only", "those", "on", "this", "list", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilecore/iotile/core/dev/iotileobj.py#L436-L440
train
21,796
iotile/coretools
iotilesensorgraph/iotile/sg/output_formats/ascii.py
format_ascii
def format_ascii(sensor_graph): """Format this sensor graph as a loadable ascii file format. This includes commands to reset and clear previously stored sensor graphs. NB. This format does not include any required configuration variables that were specified in this sensor graph, so you should also output tha information separately in, e.g. the config format. Args: sensor_graph (SensorGraph): the sensor graph that we want to format Returns: str: The ascii output lines concatenated as a single string """ cmdfile = CommandFile("Sensor Graph", "1.0") # Clear any old sensor graph cmdfile.add("set_online", False) cmdfile.add("clear") cmdfile.add("reset") # Load in the nodes for node in sensor_graph.dump_nodes(): cmdfile.add('add_node', node) # Load in the streamers for streamer in sensor_graph.streamers: other = 0xFF if streamer.with_other is not None: other = streamer.with_other args = [streamer.selector, streamer.dest, streamer.automatic, streamer.format, streamer.report_type, other] cmdfile.add('add_streamer', *args) # Load all the constants for stream, value in sorted(sensor_graph.constant_database.items(), key=lambda x: x[0].encode()): cmdfile.add("push_reading", stream, value) # Persist the sensor graph cmdfile.add("persist") cmdfile.add("set_online", True) return cmdfile.dump()
python
def format_ascii(sensor_graph): """Format this sensor graph as a loadable ascii file format. This includes commands to reset and clear previously stored sensor graphs. NB. This format does not include any required configuration variables that were specified in this sensor graph, so you should also output tha information separately in, e.g. the config format. Args: sensor_graph (SensorGraph): the sensor graph that we want to format Returns: str: The ascii output lines concatenated as a single string """ cmdfile = CommandFile("Sensor Graph", "1.0") # Clear any old sensor graph cmdfile.add("set_online", False) cmdfile.add("clear") cmdfile.add("reset") # Load in the nodes for node in sensor_graph.dump_nodes(): cmdfile.add('add_node', node) # Load in the streamers for streamer in sensor_graph.streamers: other = 0xFF if streamer.with_other is not None: other = streamer.with_other args = [streamer.selector, streamer.dest, streamer.automatic, streamer.format, streamer.report_type, other] cmdfile.add('add_streamer', *args) # Load all the constants for stream, value in sorted(sensor_graph.constant_database.items(), key=lambda x: x[0].encode()): cmdfile.add("push_reading", stream, value) # Persist the sensor graph cmdfile.add("persist") cmdfile.add("set_online", True) return cmdfile.dump()
[ "def", "format_ascii", "(", "sensor_graph", ")", ":", "cmdfile", "=", "CommandFile", "(", "\"Sensor Graph\"", ",", "\"1.0\"", ")", "# Clear any old sensor graph", "cmdfile", ".", "add", "(", "\"set_online\"", ",", "False", ")", "cmdfile", ".", "add", "(", "\"cle...
Format this sensor graph as a loadable ascii file format. This includes commands to reset and clear previously stored sensor graphs. NB. This format does not include any required configuration variables that were specified in this sensor graph, so you should also output tha information separately in, e.g. the config format. Args: sensor_graph (SensorGraph): the sensor graph that we want to format Returns: str: The ascii output lines concatenated as a single string
[ "Format", "this", "sensor", "graph", "as", "a", "loadable", "ascii", "file", "format", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilesensorgraph/iotile/sg/output_formats/ascii.py#L11-L57
train
21,797
iotile/coretools
iotilesensorgraph/iotile/sg/graph.py
SensorGraph.clear
def clear(self): """Clear all nodes from this sensor_graph. This function is equivalent to just creating a new SensorGraph() object from scratch. It does not clear any data from the SensorLog, however. """ self.roots = [] self.nodes = [] self.streamers = [] self.constant_database = {} self.metadata_database = {} self.config_database = {}
python
def clear(self): """Clear all nodes from this sensor_graph. This function is equivalent to just creating a new SensorGraph() object from scratch. It does not clear any data from the SensorLog, however. """ self.roots = [] self.nodes = [] self.streamers = [] self.constant_database = {} self.metadata_database = {} self.config_database = {}
[ "def", "clear", "(", "self", ")", ":", "self", ".", "roots", "=", "[", "]", "self", ".", "nodes", "=", "[", "]", "self", ".", "streamers", "=", "[", "]", "self", ".", "constant_database", "=", "{", "}", "self", ".", "metadata_database", "=", "{", ...
Clear all nodes from this sensor_graph. This function is equivalent to just creating a new SensorGraph() object from scratch. It does not clear any data from the SensorLog, however.
[ "Clear", "all", "nodes", "from", "this", "sensor_graph", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilesensorgraph/iotile/sg/graph.py#L55-L68
train
21,798
iotile/coretools
iotilesensorgraph/iotile/sg/graph.py
SensorGraph.add_node
def add_node(self, node_descriptor): """Add a node to the sensor graph based on the description given. The node_descriptor must follow the sensor graph DSL and describe a node whose input nodes already exist. Args: node_descriptor (str): A description of the node to be added including its inputs, triggering conditions, processing function and output stream. """ if self._max_nodes is not None and len(self.nodes) >= self._max_nodes: raise ResourceUsageError("Maximum number of nodes exceeded", max_nodes=self._max_nodes) node, inputs, processor = parse_node_descriptor(node_descriptor, self.model) in_root = False for i, input_data in enumerate(inputs): selector, trigger = input_data walker = self.sensor_log.create_walker(selector) # Constant walkers begin life initialized to 0 so they always read correctly if walker.selector.inexhaustible: walker.reading = IOTileReading(0xFFFFFFFF, walker.selector.as_stream(), 0) node.connect_input(i, walker, trigger) if selector.input and not in_root: self.roots.append(node) in_root = True # Make sure we only add to root list once else: found = False for other in self.nodes: if selector.matches(other.stream): other.connect_output(node) found = True if not found and selector.buffered: raise NodeConnectionError("Node has input that refers to another node that has not been created yet", node_descriptor=node_descriptor, input_selector=str(selector), input_index=i) # Also make sure we add this node's output to any other existing node's inputs # this is important for constant nodes that may be written from multiple places # FIXME: Make sure when we emit nodes, they are topologically sorted for other_node in self.nodes: for selector, trigger in other_node.inputs: if selector.matches(node.stream): node.connect_output(other_node) # Find and load the processing function for this node func = self.find_processing_function(processor) if func is None: raise ProcessingFunctionError("Could not find processing function in installed packages", func_name=processor) node.set_func(processor, func) self.nodes.append(node)
python
def add_node(self, node_descriptor): """Add a node to the sensor graph based on the description given. The node_descriptor must follow the sensor graph DSL and describe a node whose input nodes already exist. Args: node_descriptor (str): A description of the node to be added including its inputs, triggering conditions, processing function and output stream. """ if self._max_nodes is not None and len(self.nodes) >= self._max_nodes: raise ResourceUsageError("Maximum number of nodes exceeded", max_nodes=self._max_nodes) node, inputs, processor = parse_node_descriptor(node_descriptor, self.model) in_root = False for i, input_data in enumerate(inputs): selector, trigger = input_data walker = self.sensor_log.create_walker(selector) # Constant walkers begin life initialized to 0 so they always read correctly if walker.selector.inexhaustible: walker.reading = IOTileReading(0xFFFFFFFF, walker.selector.as_stream(), 0) node.connect_input(i, walker, trigger) if selector.input and not in_root: self.roots.append(node) in_root = True # Make sure we only add to root list once else: found = False for other in self.nodes: if selector.matches(other.stream): other.connect_output(node) found = True if not found and selector.buffered: raise NodeConnectionError("Node has input that refers to another node that has not been created yet", node_descriptor=node_descriptor, input_selector=str(selector), input_index=i) # Also make sure we add this node's output to any other existing node's inputs # this is important for constant nodes that may be written from multiple places # FIXME: Make sure when we emit nodes, they are topologically sorted for other_node in self.nodes: for selector, trigger in other_node.inputs: if selector.matches(node.stream): node.connect_output(other_node) # Find and load the processing function for this node func = self.find_processing_function(processor) if func is None: raise ProcessingFunctionError("Could not find processing function in installed packages", func_name=processor) node.set_func(processor, func) self.nodes.append(node)
[ "def", "add_node", "(", "self", ",", "node_descriptor", ")", ":", "if", "self", ".", "_max_nodes", "is", "not", "None", "and", "len", "(", "self", ".", "nodes", ")", ">=", "self", ".", "_max_nodes", ":", "raise", "ResourceUsageError", "(", "\"Maximum numbe...
Add a node to the sensor graph based on the description given. The node_descriptor must follow the sensor graph DSL and describe a node whose input nodes already exist. Args: node_descriptor (str): A description of the node to be added including its inputs, triggering conditions, processing function and output stream.
[ "Add", "a", "node", "to", "the", "sensor", "graph", "based", "on", "the", "description", "given", "." ]
2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec
https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilesensorgraph/iotile/sg/graph.py#L70-L127
train
21,799